File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Metrics
2
2
3
- grabbit exposes and reports operational the following metrics to Prometheus
3
+ grabbit exposes and reports the following metrics to Prometheus
4
4
5
5
| Namespace | Subsystem | Name | Description |
6
6
| ------------- | ------------- | ----------------------------------| --------------------------------------------------------------------------- |
7
7
| grabbit | handler | [ name of message handler] _ result | records and counts each succesfull or failed execution of a message handler |
8
8
| grabbit | handler | [ name of message handler] _ latency | records the execution time of each handler |
9
9
| grabbit | messages | rejected_messages | increments each time a message gets rejected |
10
+ | grabbit | saga | timedout_sagas | counting the number of timedout saga instances |
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ func newSagaTimeoutCounter() prometheus.Counter {
23
23
return promauto .NewCounter (prometheus.CounterOpts {
24
24
Namespace : grabbitPrefix ,
25
25
Subsystem : "saga" ,
26
- Name : "timeedout_sagas " ,
26
+ Name : "timedout_sagas " ,
27
27
Help : "counting the number of timedout saga instances" ,
28
28
})
29
29
}
You can’t perform that action at this time.
0 commit comments