Class: ElasticAPM::Metadata Private
- Inherits:
-
Object
- Object
- ElasticAPM::Metadata
- Defined in:
- lib/elastic_apm/metadata.rb,
lib/elastic_apm/metadata/cloud_info.rb,
lib/elastic_apm/metadata/system_info.rb,
lib/elastic_apm/metadata/process_info.rb,
lib/elastic_apm/metadata/service_info.rb,
lib/elastic_apm/metadata/system_info/container_info.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Defined Under Namespace
Classes: CloudInfo, ProcessInfo, ServiceInfo, SystemInfo
Instance Attribute Summary collapse
- #cloud ⇒ Object readonly private
- #labels ⇒ Object readonly private
- #process ⇒ Object readonly private
- #service ⇒ Object readonly private
- #system ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(config) ⇒ Metadata
constructor
private
A new instance of Metadata.
Constructor Details
#initialize(config) ⇒ Metadata
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Metadata.
23 24 25 26 27 28 29 |
# 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 |
Instance Attribute Details
#cloud ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
31 32 33 |
# File 'lib/elastic_apm/metadata.rb', line 31 def cloud @cloud end |
#labels ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
31 32 33 |
# File 'lib/elastic_apm/metadata.rb', line 31 def labels @labels end |
#process ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
31 32 33 |
# File 'lib/elastic_apm/metadata.rb', line 31 def process @process end |
#service ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
31 32 33 |
# File 'lib/elastic_apm/metadata.rb', line 31 def service @service end |
#system ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
31 32 33 |
# File 'lib/elastic_apm/metadata.rb', line 31 def system @system end |