2021-10-14 20:44:59 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::Metrics::Dimension::SoftwareVersionsDimension < Admin::Metrics::Dimension::BaseDimension
|
|
|
|
include Redisable
|
|
|
|
|
|
|
|
def key
|
|
|
|
'software_versions'
|
|
|
|
end
|
|
|
|
|
2022-02-22 15:27:08 +01:00
|
|
|
protected
|
|
|
|
|
|
|
|
def perform_query
|
2024-06-05 21:15:39 +02:00
|
|
|
[mastodon_version, ruby_version, postgresql_version, redis_version, elasticsearch_version, libvips_version].compact
|
2021-10-14 20:44:59 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def mastodon_version
|
|
|
|
value = Mastodon::Version.to_s
|
|
|
|
|
|
|
|
{
|
|
|
|
key: 'mastodon',
|
|
|
|
human_key: 'Mastodon',
|
|
|
|
value: value,
|
|
|
|
human_value: value,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def ruby_version
|
|
|
|
{
|
|
|
|
key: 'ruby',
|
|
|
|
human_key: 'Ruby',
|
2024-05-16 09:43:35 +02:00
|
|
|
value: "#{RUBY_VERSION}p#{RUBY_PATCHLEVEL}",
|
|
|
|
human_value: RUBY_DESCRIPTION,
|
2021-10-14 20:44:59 +02:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def postgresql_version
|
|
|
|
value = ActiveRecord::Base.connection.execute('SELECT VERSION()').first['version'].match(/\A(?:PostgreSQL |)([^\s]+).*\z/)[1]
|
|
|
|
|
|
|
|
{
|
|
|
|
key: 'postgresql',
|
|
|
|
human_key: 'PostgreSQL',
|
|
|
|
value: value,
|
|
|
|
human_value: value,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def redis_version
|
|
|
|
value = redis_info['redis_version']
|
|
|
|
|
|
|
|
{
|
|
|
|
key: 'redis',
|
|
|
|
human_key: 'Redis',
|
|
|
|
value: value,
|
|
|
|
human_value: value,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2023-08-25 12:02:09 +02:00
|
|
|
def elasticsearch_version
|
|
|
|
return unless Chewy.enabled?
|
|
|
|
|
|
|
|
client_info = Chewy.client.info
|
|
|
|
version = client_info.dig('version', 'number')
|
|
|
|
|
|
|
|
{
|
|
|
|
key: 'elasticsearch',
|
|
|
|
human_key: client_info.dig('version', 'distribution') == 'opensearch' ? 'OpenSearch' : 'Elasticsearch',
|
|
|
|
value: version,
|
|
|
|
human_value: version,
|
|
|
|
}
|
|
|
|
rescue Faraday::ConnectionFailed, Elasticsearch::Transport::Transport::Error
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2024-06-05 21:15:39 +02:00
|
|
|
def libvips_version
|
|
|
|
return unless Rails.configuration.x.use_vips
|
|
|
|
|
|
|
|
{
|
|
|
|
key: 'libvips',
|
|
|
|
human_key: 'libvips',
|
|
|
|
value: Vips.version_string,
|
|
|
|
human_value: Vips.version_string,
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2021-10-14 20:44:59 +02:00
|
|
|
def redis_info
|
2023-02-18 23:09:40 +01:00
|
|
|
@redis_info ||= if redis.is_a?(Redis::Namespace)
|
|
|
|
redis.redis.info
|
|
|
|
else
|
|
|
|
redis.info
|
|
|
|
end
|
2021-10-14 20:44:59 +02:00
|
|
|
end
|
|
|
|
end
|