Class: Datadog::Core::Metrics::Logging::Adapter
- Inherits:
-
Object
- Object
- Datadog::Core::Metrics::Logging::Adapter
- Defined in:
- lib/datadog/core/metrics/logging.rb
Overview
Surrogate for Datadog::Statsd to log elsewhere
Instance Attribute Summary collapse
-
#logger ⇒ Object
Returns the value of attribute logger.
Instance Method Summary collapse
- #count(stat, value, options = nil) ⇒ Object
- #distribution(stat, value, options = nil) ⇒ Object
- #gauge(stat, value, options = nil) ⇒ Object
- #increment(stat, options = nil) ⇒ Object
-
#initialize(logger = nil) ⇒ Adapter
constructor
A new instance of Adapter.
Constructor Details
#initialize(logger = nil) ⇒ Adapter
Returns a new instance of Adapter.
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/datadog/core/metrics/logging.rb', line 12 def initialize(logger = nil) @logger = logger || Logger.new($stdout).tap do |l| l.level = ::Logger::INFO l.progname = nil l.formatter = proc do |_severity, datetime, _progname, msg| stat = JSON.parse(msg[3..-1]) # Trim off leading progname... "#{JSON.dump(timestamp: datetime.to_i, message: 'Metric sent.', metric: stat)}\n" end end end |
Instance Attribute Details
#logger ⇒ Object
Returns the value of attribute logger.
10 11 12 |
# File 'lib/datadog/core/metrics/logging.rb', line 10 def logger @logger end |
Instance Method Details
#count(stat, value, options = nil) ⇒ Object
23 24 25 |
# File 'lib/datadog/core/metrics/logging.rb', line 23 def count(stat, value, = nil) logger.info({ stat: stat, type: :count, value: value, options: }.to_json) end |
#distribution(stat, value, options = nil) ⇒ Object
27 28 29 |
# File 'lib/datadog/core/metrics/logging.rb', line 27 def distribution(stat, value, = nil) logger.info({ stat: stat, type: :distribution, value: value, options: }.to_json) end |
#gauge(stat, value, options = nil) ⇒ Object
35 36 37 |
# File 'lib/datadog/core/metrics/logging.rb', line 35 def gauge(stat, value, = nil) logger.info({ stat: stat, type: :gauge, value: value, options: }.to_json) end |
#increment(stat, options = nil) ⇒ Object
31 32 33 |
# File 'lib/datadog/core/metrics/logging.rb', line 31 def increment(stat, = nil) logger.info({ stat: stat, type: :increment, options: }.to_json) end |