@@ -20,6 +20,9 @@ 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
26
data : [
24
27
{ key : "record_count" , format : "integer" } ,
25
28
{ key : "class_name" , format : "string" }
@@ -74,9 +77,49 @@ class ActiveSupport
74
77
chartLabel : '{marker.data.identifier}' ,
75
78
tableLabel : '{marker.data.identifier}' ,
76
79
data : [
77
- { key : "key" , format : "string" } ,
78
80
{ key : "identifier" , format : "string" }
79
81
]
82
+ } ,
83
+ {
84
+ name : "render_layout.action_view" ,
85
+ display : [ "marker-chart" , "marker-table" ] ,
86
+ tooltipLabel : '{marker.data.identifier}' ,
87
+ chartLabel : '{marker.data.identifier}' ,
88
+ tableLabel : '{marker.data.identifier}' ,
89
+ data : [
90
+ { key : "identifier" , format : "string" }
91
+ ]
92
+ } ,
93
+ {
94
+ name : "render_partial.action_view" ,
95
+ display : [ "marker-chart" , "marker-table" ] ,
96
+ tooltipLabel : '{marker.data.identifier}' ,
97
+ chartLabel : '{marker.data.identifier}' ,
98
+ tableLabel : '{marker.data.identifier}' ,
99
+ data : [
100
+ { key : "identifier" , format : "string" }
101
+ ]
102
+ } ,
103
+ {
104
+ name : "render_collection.action_view" ,
105
+ display : [ "marker-chart" , "marker-table" ] ,
106
+ tooltipLabel : '{marker.data.identifier}' ,
107
+ chartLabel : '{marker.data.identifier}' ,
108
+ tableLabel : '{marker.data.identifier}' ,
109
+ data : [
110
+ { key : "identifier" , format : "string" } ,
111
+ { key : "count" , format : "integer" }
112
+ ]
113
+ } ,
114
+ {
115
+ name : "load_config_initializer.railties" ,
116
+ display : [ "marker-chart" , "marker-table" ] ,
117
+ tooltipLabel : '{marker.data.initializer}' ,
118
+ chartLabel : '{marker.data.initializer}' ,
119
+ tableLabel : '{marker.data.initializer}' ,
120
+ data : [
121
+ { key : "initializer" , format : "string" }
122
+ ]
80
123
}
81
124
] )
82
125
0 commit comments