@@ -56,13 +56,14 @@ For more information on the following performance meters, see <xref:log-mon/metr
56
56
57
57
` Microsoft.AspNetCore.Components ` meter:
58
58
59
- * ` aspnetcore.components.navigation ` : Tracks the total number of route changes in the app.
60
- * ` aspnetcore.components.event_handler ` : Measures the duration of processing browser events, including business logic.
59
+ * ` aspnetcore.components.navigate ` : Tracks the total number of route changes in the app.
60
+ * ` aspnetcore.components.handle_event.duration ` : Measures the duration of processing browser events, including business logic.
61
61
62
62
` Microsoft.AspNetCore.Components.Lifecycle ` meter:
63
63
64
- * ` aspnetcore.components.update_parameters ` : Measures the duration of processing component parameters, including business logic.
65
- * ` aspnetcore.components.render_diff ` : Tracks the duration of rendering batches.
64
+ * ` aspnetcore.components.update_parameters.duration ` : Measures the duration of processing component parameters, including business logic.
65
+ * ` aspnetcore.components.render_diff.duration ` : Tracks the duration of rendering batches.
66
+ * ` aspnetcore.components.render_diff.size ` : Tracks the size of rendering batches.
66
67
67
68
` Microsoft.AspNetCore.Components.Server.Circuits ` meter:
68
69
@@ -80,7 +81,7 @@ The new activity tracing capabilities use the `Microsoft.AspNetCore.Components`
80
81
81
82
Circuit lifecycle tracing:
82
83
83
- ` Microsoft.AspNetCore.Components.CircuitStart ` : Traces circuit initialization with the format ` Circuit {circuitId} ` .
84
+ ` Microsoft.AspNetCore.Components.StartCircuit ` : Traces circuit initialization with the format ` Circuit {circuitId} ` .
84
85
85
86
Tags:
86
87
@@ -96,7 +97,7 @@ Usage: Links other Blazor traces of the same session/circuit to HTTP and SignalR
96
97
97
98
Navigation tracing:
98
99
99
- ` Microsoft.AspNetCore.Components.RouteChange ` : Tracks route changes with the format ` Route {route} -> {componentType} ` .
100
+ ` Microsoft.AspNetCore.Components.Navigate ` : Tracks route changes with the format ` Route {route} -> {componentType} ` .
100
101
101
102
Tags:
102
103
@@ -119,14 +120,12 @@ Event handling tracing:
119
120
Tags:
120
121
121
122
* ` aspnetcore.components.attribute.name ` : Name of the HTML attribute that triggers the event (example: ` onClick ` ).
122
- * ` aspnetcore.components.method ` : C# method name of the handler.
123
+ * ` code.function.name ` : C# method name of the handler.
123
124
* ` aspnetcore.components.type ` : Full name of target C# component that receives the event.
124
125
* ` error.type ` : Exception type full name (optional).
125
126
126
127
Links:
127
128
128
- * HTTP trace
129
- * SignalR trace
130
129
* Circuit trace
131
130
* Route trace
132
131
0 commit comments