Skip to content

Commit c29c9f0

Browse files
committed
1 parent 054f398 commit c29c9f0

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

src/data/relay_metrics.json

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -793,6 +793,18 @@
793793
"description": "Number of completed HTTP requests.\n\nThis metric is tagged with:\n\n- `status_code`: The HTTP status code number.\n- `method`: The HTTP method used in the request in uppercase.\n- `route`: Unique dashed identifier of the endpoint.",
794794
"features": []
795795
},
796+
{
797+
"type": "Counter",
798+
"name": "runtime.task.spawn.created",
799+
"description": "Number of runtime tasks created/spawned.\n\nEvery call to [`spawn`](`crate::spawn`) increases this counter by one.\n\nThis metric is tagged with:\n- `id`: A unique identifier for the task, derived from its location in code.\n- `file`: The source filename where the task is created.\n- `line`: The source line where the task is created within the file.",
800+
"features": []
801+
},
802+
{
803+
"type": "Counter",
804+
"name": "runtime.task.spawn.terminated",
805+
"description": "Number of runtime tasks terminated.\n\nThis metric is tagged with:\n- `id`: A unique identifier for the task, derived from its location in code.\n- `file`: The source filename where the task is created.\n- `line`: The source line where the task is created within the file.",
806+
"features": []
807+
},
796808
{
797809
"type": "Timer",
798810
"name": "scrubbing.attachments.duration",
@@ -835,12 +847,6 @@
835847
"description": "A number of messages queued in a services inbound message channel.\n\nThis metric is emitted once per second for every running service. Without backlogs, this\nnumber should be close to `0`. If this number is monotonically increasing, the service is\nnot able to process the inbound message volume.\n\nThis metric is tagged with:\n- `service`: The fully qualified type name of the service implementation.",
836848
"features": []
837849
},
838-
{
839-
"type": "Counter",
840-
"name": "service.idle_time_nanos",
841-
"description": "The amount of time a service spends waiting for new messages.\n\nThis is an indicator of how much more load a service can take on.\n\nCaveat: Some services circumvent the service framework by using custom incoming queues.\nFor these, we cannot fully rely on this metric.\n\nThis metric is tagged with:\n- `service`: The fully qualified type name of the service implementation.",
842-
"features": []
843-
},
844850
{
845851
"type": "Timer",
846852
"name": "store.message.duration",

0 commit comments

Comments
 (0)