@@ -20,14 +20,29 @@ class ActiveSupport
20
20
{
21
21
name : "instantiation.active_record" ,
22
22
display : [ "marker-chart" , "marker-table" ] ,
23
- tooltipLabel : "{marker.data.record_count} × {marker.data.name }" ,
24
- chartLabel : "{marker.data.record_count} × {marker.data.name }" ,
25
- tableLabel : "Instantiate {marker.data.record_count} × {marker.data.sql }" ,
23
+ tooltipLabel : "{marker.data.record_count} × {marker.data.class_name }" ,
24
+ chartLabel : "{marker.data.record_count} × {marker.data.class_name }" ,
25
+ tableLabel : "Instantiate {marker.data.record_count} × {marker.data.class_name }" ,
26
26
data : [
27
27
{ key : "record_count" , format : "integer" } ,
28
28
{ key : "class_name" , format : "string" }
29
29
]
30
30
} ,
31
+ {
32
+ name : "start_processing.action_controller" ,
33
+ display : [ "marker-chart" , "marker-table" ] ,
34
+ tooltipLabel : '{marker.data.method} {marker.data.controller}#{marker.data.action}' ,
35
+ chartLabel : '{marker.data.method} {marker.data.controller}#{marker.data.action}' ,
36
+ tableLabel : '{marker.data.method} {marker.data.controller}#{marker.data.action}' ,
37
+ data : [
38
+ { key : "controller" , format : "string" } ,
39
+ { key : "action" , format : "string" } ,
40
+ { key : "status" , format : "integer" } ,
41
+ { key : "path" , format : "string" } ,
42
+ { key : "method" , format : "string" }
43
+ { key : "format" , format : "string" }
44
+ ]
45
+ } ,
31
46
{
32
47
name : "process_action.action_controller" ,
33
48
display : [ "marker-chart" , "marker-table" ] ,
@@ -40,11 +55,15 @@ class ActiveSupport
40
55
{ key : "status" , format : "integer" } ,
41
56
{ key : "path" , format : "string" } ,
42
57
{ key : "method" , format : "string" }
58
+ { key : "format" , format : "string" }
43
59
]
44
60
} ,
45
61
{
46
62
name : "cache_read.active_support" ,
47
63
display : [ "marker-chart" , "marker-table" ] ,
64
+ tooltipLabel : '{marker.data.super_operation} {marker.data.key}' ,
65
+ chartLabel : '{marker.data.super_operation} {marker.data.key}' ,
66
+ tableLabel : '{marker.data.super_operation} {marker.data.key}' ,
48
67
data : [
49
68
{ key : "key" , format : "string" } ,
50
69
{ key : "store" , format : "string" } ,
@@ -64,6 +83,9 @@ class ActiveSupport
64
83
} ,
65
84
{
66
85
name : "cache_fetch_hit.active_support" ,
86
+ tooltipLabel : 'HIT {marker.data.key}' ,
87
+ chartLabel : 'HIT {marker.data.key}' ,
88
+ tableLabel : 'HIT {marker.data.key}' ,
67
89
display : [ "marker-chart" , "marker-table" ] ,
68
90
data : [
69
91
{ key : "key" , format : "string" } ,
0 commit comments