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
Copy file name to clipboardexpand all lines: docs/METRICS.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,9 @@ grabbit exposes and reports the following metrics to Prometheus
9
9
| grabbit | handlers | result | records and counts each run of a handler, having the handler's name, message type and the result as labels|
10
10
| grabbit | handlers | latency | records the execution time of each run of a handler, having the handler's name, message type as labels|
11
11
| grabbit | messages | rejected_messages | increments each time a message gets rejected |
12
-
| grabbit | saga | timedout_sagas | counting the number of timedout saga instances |
13
-
| grabbit | outbox | outbox_total_records | reports the total amount of records currently in the outbox |
14
-
| grabbit | outbox | outbox_pending_delivery | reports the total amount of records pending delivery currently in the outbox |
15
-
| grabbit | outbox | outbox_pending_removal | reports the total amount of records that were sent and pending removal currently in the outbox |
12
+
| grabbit | saga | timedout_sagas | counting the number of timedout saga instances |
13
+
| grabbit | saga | latency | records the execution time of the entire saga, from it's creation until deletion (in ms). having the "Service", "SagaType", "Initiator" as labels|
14
+
| grabbit | outbox | outbox_total_records | reports the total amount of records currently in the outbox |
15
+
| grabbit | outbox | outbox_pending_delivery | reports the total amount of records pending delivery currently in the outbox |
16
+
| grabbit | outbox | outbox_pending_removal | reports the total amount of records that were sent and pending removal currently in the outbox |
selectSQL:="SELECT saga_id, saga_type, saga_data, started_by_request_of_svc, started_by_msg_id, started_by_rpcid, started_by_request_of_saga, version FROM "+tblName+" WHERE saga_type="+store.ParamsMarkers[0]
94
+
selectSQL:="SELECT saga_id, saga_type, saga_data, started_by_request_of_svc, started_by_msg_id, started_by_rpcid, started_by_request_of_saga, version, created_at FROM "+tblName+" WHERE saga_type="+store.ParamsMarkers[0]
selectSQL:=`SELECT saga_id, saga_type, saga_data, started_by_request_of_svc, started_by_msg_id, started_by_rpcid, started_by_request_of_saga, version FROM `+tblName+` WHERE saga_id=`+store.ParamsMarkers[0] +``
164
+
selectSQL:=`SELECT saga_id, saga_type, saga_data, started_by_request_of_svc, started_by_msg_id, started_by_rpcid, started_by_request_of_saga, version, created_at FROM `+tblName+` WHERE saga_id=`+store.ParamsMarkers[0] +``
0 commit comments