Class: NewRelic::MetricSpec
- Inherits:
-
Object
- Object
- NewRelic::MetricSpec
- Defined in:
- lib/new_relic/metric_spec.rb
Overview
this struct uniquely defines a metric, optionally inside the call scope of another metric
Constant Summary collapse
- MAX_LENGTH =
255
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#scope ⇒ Object
Returns the value of attribute scope.
Instance Method Summary collapse
- #<=>(o) ⇒ Object
- #==(o) ⇒ Object
- #eql?(o) ⇒ Boolean
- #hash ⇒ Object
-
#initialize(metric_name = '', metric_scope = '') ⇒ MetricSpec
constructor
Need a “zero-arg” constructor so it can be instantiated from java (using jruby) for sending responses to ruby agents from the java collector.
-
#sub(pattern, replacement, apply_to_scope = true) ⇒ Object
return a new metric spec if the given regex matches the name or scope.
- #to_json(*a) ⇒ Object
- #to_s ⇒ Object
- #truncate! ⇒ Object
Constructor Details
#initialize(metric_name = '', metric_scope = '') ⇒ MetricSpec
Need a “zero-arg” constructor so it can be instantiated from java (using jruby) for sending responses to ruby agents from the java collector.
11 12 13 14 |
# File 'lib/new_relic/metric_spec.rb', line 11 def initialize(metric_name = '', metric_scope = '') self.name = (metric_name || '') && metric_name[0...MAX_LENGTH] self.scope = metric_scope && metric_scope[0...MAX_LENGTH] end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
4 5 6 |
# File 'lib/new_relic/metric_spec.rb', line 4 def name @name end |
#scope ⇒ Object
Returns the value of attribute scope.
5 6 7 |
# File 'lib/new_relic/metric_spec.rb', line 5 def scope @scope end |
Instance Method Details
#<=>(o) ⇒ Object
62 63 64 65 66 |
# File 'lib/new_relic/metric_spec.rb', line 62 def <=>(o) namecmp = self.name <=> o.name return namecmp if namecmp != 0 return (self.scope || '') <=> (o.scope || '') end |
#==(o) ⇒ Object
21 22 23 |
# File 'lib/new_relic/metric_spec.rb', line 21 def ==(o) self.eql?(o) end |
#eql?(o) ⇒ Boolean
25 26 27 28 29 30 |
# File 'lib/new_relic/metric_spec.rb', line 25 def eql? o self.class == o.class && name.eql?(o.name) && # coerce scope to a string and compare (scope || '') == (o.scope || '') end |
#hash ⇒ Object
32 33 34 35 36 |
# File 'lib/new_relic/metric_spec.rb', line 32 def hash h = name.hash h ^= scope.hash unless scope.nil? h end |
#sub(pattern, replacement, apply_to_scope = true) ⇒ Object
return a new metric spec if the given regex matches the name or scope.
39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/new_relic/metric_spec.rb', line 39 def sub(pattern, replacement, apply_to_scope = true) return nil if name !~ pattern && (!apply_to_scope || scope.nil? || scope !~ pattern) new_name = name.sub(pattern, replacement)[0...MAX_LENGTH] if apply_to_scope new_scope = (scope && scope.sub(pattern, replacement)[0...MAX_LENGTH]) else new_scope = scope end self.class.new new_name, new_scope end |
#to_json(*a) ⇒ Object
57 58 59 60 |
# File 'lib/new_relic/metric_spec.rb', line 57 def to_json(*a) {'name' => name, 'scope' => scope}.to_json(*a) end |
#to_s ⇒ Object
53 54 55 |
# File 'lib/new_relic/metric_spec.rb', line 53 def to_s "#{name}:#{scope}" end |
#truncate! ⇒ Object
16 17 18 19 |
# File 'lib/new_relic/metric_spec.rb', line 16 def truncate! self.name = name[0...MAX_LENGTH] if name && name.size > MAX_LENGTH self.scope = scope[0...MAX_LENGTH] if scope && scope.size > MAX_LENGTH end |