mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-20 03:25:17 +01:00
Allow to customise the OTEL service name prefix (#30322)
This commit is contained in:
parent
65e82211cd
commit
283a891e92
@ -53,10 +53,12 @@ if ENV.keys.any? { |name| name.match?(/OTEL_.*_ENDPOINT/) }
|
||||
},
|
||||
})
|
||||
|
||||
prefix = ENV.fetch('OTEL_SERVICE_NAME_PREFIX', 'mastodon')
|
||||
|
||||
c.service_name = case $PROGRAM_NAME
|
||||
when /puma/ then 'mastodon/web'
|
||||
when /puma/ then "#{prefix}/web"
|
||||
else
|
||||
"mastodon/#{$PROGRAM_NAME.split('/').last}"
|
||||
"#{prefix}/#{$PROGRAM_NAME.split('/').last}"
|
||||
end
|
||||
c.service_version = Mastodon::Version.to_s
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user