Class: NewRelic::MetricSpec

Inherits:
Object
  • Object
show all
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 =

the maximum length of a metric name or metric scope

255
LENGTH_RANGE =
(0...MAX_LENGTH)

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



13
14
15
16
# File 'lib/new_relic/metric_spec.rb', line 13

def initialize(metric_name = '', metric_scope = '')
  self.name = (metric_name || '') && metric_name[LENGTH_RANGE]
  self.scope = metric_scope && metric_scope[LENGTH_RANGE]
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



4
5
6
# File 'lib/new_relic/metric_spec.rb', line 4

def name
  @name
end

#scopeObject

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



71
72
73
74
75
# File 'lib/new_relic/metric_spec.rb', line 71

def <=>(o)
  namecmp = self.name <=> o.name
  return namecmp if namecmp != 0
  return (self.scope || '') <=> (o.scope || '')
end

#==(o) ⇒ Object



24
25
26
# File 'lib/new_relic/metric_spec.rb', line 24

def ==(o)
  self.eql?(o)
end

#eql?(o) ⇒ Boolean

Returns:

  • (Boolean)


28
29
30
31
32
33
# File 'lib/new_relic/metric_spec.rb', line 28

def eql? o
  self.class == o.class &&
  name.eql?(o.name) &&
  # coerce scope to a string and compare
   scope.to_s == o.scope.to_s
end

#hashObject



35
36
37
38
39
# File 'lib/new_relic/metric_spec.rb', line 35

def hash
  h = name.hash
  h ^= scope.hash unless scope.nil?
  h
end

#inspectObject



62
63
64
# File 'lib/new_relic/metric_spec.rb', line 62

def inspect
  "#<NewRelic::MetricSpec '#{name}':'#{scope}'>"
end

#sub(pattern, replacement, apply_to_scope = true) ⇒ Object

return a new metric spec if the given regex matches the name or scope.



42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/new_relic/metric_spec.rb', line 42

def sub(pattern, replacement, apply_to_scope = true)
  NewRelic::Control.instance.log.warn("The sub method on metric specs is deprecated") rescue nil
  return nil if name !~ pattern &&
   (!apply_to_scope || scope.nil? || scope !~ pattern)
  new_name = name.sub(pattern, replacement)[LENGTH_RANGE]

  if apply_to_scope
    new_scope = (scope && scope.sub(pattern, replacement)[LENGTH_RANGE])
  else
    new_scope = scope
  end

  self.class.new new_name, new_scope
end

#to_json(*a) ⇒ Object



66
67
68
69
# File 'lib/new_relic/metric_spec.rb', line 66

def to_json(*a)
  {'name' => name,
  'scope' => scope}.to_json(*a)
end

#to_sObject



57
58
59
60
# File 'lib/new_relic/metric_spec.rb', line 57

def to_s
  return name if scope.empty?
  "#{name}:#{scope}"
end

#truncate!Object

truncates the name and scope to the MAX_LENGTH



19
20
21
22
# File 'lib/new_relic/metric_spec.rb', line 19

def truncate!
  self.name = name[LENGTH_RANGE] if name && name.size > MAX_LENGTH
  self.scope = scope[LENGTH_RANGE] if scope && scope.size > MAX_LENGTH
end