Class: ScoutApm::SlowTransaction

Inherits:
Object
  • Object
show all
Includes:
BucketNameSplitter
Defined in:
lib/scout_apm/slow_transaction.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from BucketNameSplitter

#bucket, #key, #name

Constructor Details

#initialize(uri, metric_name, total_call_time, metrics, context, time, raw_stackprof) ⇒ SlowTransaction

Returns a new instance of SlowTransaction.



15
16
17
18
19
20
21
22
23
24
# File 'lib/scout_apm/slow_transaction.rb', line 15

def initialize(uri, metric_name, total_call_time, metrics, context, time, raw_stackprof)
  @uri = uri
  @metric_name = metric_name
  @total_call_time = total_call_time
  @metrics = metrics
  @context = context
  @time = time
  @prof = ScoutApm::StackprofTreeCollapser.new(raw_stackprof).call
  @raw_prof = raw_stackprof # Send whole data up to server
end

Instance Attribute Details

#contextObject (readonly)

Returns the value of attribute context.



10
11
12
# File 'lib/scout_apm/slow_transaction.rb', line 10

def context
  @context
end

#metaObject (readonly)

Returns the value of attribute meta.



8
9
10
# File 'lib/scout_apm/slow_transaction.rb', line 8

def meta
  @meta
end

#metric_nameObject (readonly)

Returns the value of attribute metric_name.



5
6
7
# File 'lib/scout_apm/slow_transaction.rb', line 5

def metric_name
  @metric_name
end

#metricsObject (readonly)

Returns the value of attribute metrics.



7
8
9
# File 'lib/scout_apm/slow_transaction.rb', line 7

def metrics
  @metrics
end

#profObject (readonly)

Returns the value of attribute prof.



12
13
14
# File 'lib/scout_apm/slow_transaction.rb', line 12

def prof
  @prof
end

#raw_profObject (readonly)

Returns the value of attribute raw_prof.



13
14
15
# File 'lib/scout_apm/slow_transaction.rb', line 13

def raw_prof
  @raw_prof
end

#timeObject (readonly)

Returns the value of attribute time.



11
12
13
# File 'lib/scout_apm/slow_transaction.rb', line 11

def time
  @time
end

#total_call_timeObject (readonly)

Returns the value of attribute total_call_time.



6
7
8
# File 'lib/scout_apm/slow_transaction.rb', line 6

def total_call_time
  @total_call_time
end

#uriObject (readonly)

Returns the value of attribute uri.



9
10
11
# File 'lib/scout_apm/slow_transaction.rb', line 9

def uri
  @uri
end

Instance Method Details

#as_jsonObject



36
37
38
39
# File 'lib/scout_apm/slow_transaction.rb', line 36

def as_json
  json_attributes = [:key, :time, :total_call_time, :uri, [:context, :context_hash], :prof]
  ScoutApm::AttributeArranger.call(self, json_attributes)
end

#clear_metrics!Object

Used to remove metrics when the payload will be too large.



27
28
29
30
# File 'lib/scout_apm/slow_transaction.rb', line 27

def clear_metrics!
  @metrics = nil
  self
end

#context_hashObject



41
42
43
# File 'lib/scout_apm/slow_transaction.rb', line 41

def context_hash
  context.to_hash
end

#has_metrics?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/scout_apm/slow_transaction.rb', line 32

def has_metrics?
  metrics and metrics.any?
end