Record records the int64 count value on the metrics recorder provided.
(recorder MetricsRecorder, incr int64, labels ...string)
| 92 | |
| 93 | // Record records the int64 count value on the metrics recorder provided. |
| 94 | func (h *Int64CountHandle) Record(recorder MetricsRecorder, incr int64, labels ...string) { |
| 95 | recorder.RecordInt64Count(h, incr, labels...) |
| 96 | } |
| 97 | |
| 98 | // Int64UpDownCountHandle is a typed handle for an int up-down counter metric. |
| 99 | // This handle is passed at the recording point in order to know which metric |