Feature more otel customization (#31998)
This commit is contained in:
parent
ed90d9342e
commit
11eae691ba
1 changed files with 4 additions and 3 deletions
|
@ -56,12 +56,13 @@ if ENV.keys.any? { |name| name.match?(/OTEL_.*_ENDPOINT/) }
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
prefix = ENV.fetch('OTEL_SERVICE_NAME_PREFIX', 'mastodon')
|
prefix = ENV.fetch('OTEL_SERVICE_NAME_PREFIX', 'mastodon')
|
||||||
|
separator = ENV.fetch('OTEL_SERVICE_NAME_SEPARATOR', '/')
|
||||||
|
|
||||||
c.service_name = case $PROGRAM_NAME
|
c.service_name = case $PROGRAM_NAME
|
||||||
when /puma/ then "#{prefix}/web"
|
when /puma/ then "#{prefix}#{separator}web"
|
||||||
else
|
else
|
||||||
"#{prefix}/#{$PROGRAM_NAME.split('/').last}"
|
"#{prefix}#{separator}#{$PROGRAM_NAME.split('/').last}"
|
||||||
end
|
end
|
||||||
c.service_version = Mastodon::Version.to_s
|
c.service_version = Mastodon::Version.to_s
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue