Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde committed Nov 14, 2024
1 parent 054f398 commit c29c9f0
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions src/data/relay_metrics.json
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,18 @@
"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.",
"features": []
},
{
"type": "Counter",
"name": "runtime.task.spawn.created",
"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.",
"features": []
},
{
"type": "Counter",
"name": "runtime.task.spawn.terminated",
"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.",
"features": []
},
{
"type": "Timer",
"name": "scrubbing.attachments.duration",
Expand Down Expand Up @@ -835,12 +847,6 @@
"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.",
"features": []
},
{
"type": "Counter",
"name": "service.idle_time_nanos",
"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.",
"features": []
},
{
"type": "Timer",
"name": "store.message.duration",
Expand Down

0 comments on commit c29c9f0

Please sign in to comment.