You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Regarding `DerivedMetricMode` see [Calculating derived metrics](#calculating-derived-metrics).
125
126
127
+
### Debug metrics
128
+
Debug metrics can be send by a similar method to above's `send`:
129
+
```cpp
130
+
debug(Metric&& metric)
131
+
```
132
+
133
+
The difference is that debug metrics are only passed to backends which verbosity level is set to `debug`.
134
+
135
+
Each backend has its default verbosity (see backend in [Monitoring instance](#monitoring-instance) section). This can be changed by defining path of a backend URL:
136
+
-`/prod` - only `send` metrics are passed to the backend
137
+
-`/debug` - all the metrics are passed to the backend
138
+
139
+
126
140
### Customized metrics
127
141
Two additional methods can be chained the to `send(Metric&& metric)` in order to __insert custom tags__ or __set custom timestamp__:
0 commit comments