@@ -7,9 +7,12 @@ class ActiveSupport
7
7
{
8
8
name : "sql.active_record" ,
9
9
display : [ "marker-chart" , "marker-table" ] ,
10
+ tooltipLabel : "{marker.data.name}" ,
11
+ chartLabel : "{marker.data.name}" ,
12
+ tableLabel : "{marker.data.sql}" ,
10
13
data : [
11
- { key : "sql" , format : "string" } ,
12
- { key : "name" , format : "string" } ,
14
+ { key : "sql" , format : "string" , searchable : true } ,
15
+ { key : "name" , format : "string" , searchable : true } ,
13
16
{ key : "type_casted_binds" , label : "binds" , format : "string"
14
17
}
15
18
]
@@ -25,6 +28,9 @@ class ActiveSupport
25
28
{
26
29
name : "process_action.action_controller" ,
27
30
display : [ "marker-chart" , "marker-table" ] ,
31
+ tooltipLabel : '{marker.data.method} {marker.data.controller}#{marker.data.action}' ,
32
+ chartLabel : '{marker.data.method} {marker.data.controller}#{marker.data.action}' ,
33
+ tableLabel : '{marker.data.method} {marker.data.controller}#{marker.data.action}' ,
28
34
data : [
29
35
{ key : "controller" , format : "string" } ,
30
36
{ key : "action" , format : "string" } ,
@@ -60,6 +66,17 @@ class ActiveSupport
60
66
{ key : "key" , format : "string" } ,
61
67
{ key : "store" , format : "string" }
62
68
]
69
+ } ,
70
+ {
71
+ name : "render_template.action_view" ,
72
+ display : [ "marker-chart" , "marker-table" ] ,
73
+ tooltipLabel : '{marker.data.identifier}' ,
74
+ chartLabel : '{marker.data.identifier}' ,
75
+ tableLabel : '{marker.data.identifier}' ,
76
+ data : [
77
+ { key : "key" , format : "string" } ,
78
+ { key : "identifier" , format : "string" }
79
+ ]
63
80
}
64
81
] )
65
82
0 commit comments