class ElasticAPM::Metadata
@api private
Attributes
cloud[R]
labels[R]
process[R]
service[R]
system[R]
Public Class Methods
new(config)
click to toggle source
# File lib/elastic_apm/metadata.rb, line 23 def initialize(config) @service = ServiceInfo.new(config) @process = ProcessInfo.new(config) @system = SystemInfo.new(config) @labels = config.global_labels @cloud = CloudInfo.new(config).fetch! end