Skip to content

Commit 74057ab

Browse files
committed
1 parent 9010c84 commit 74057ab

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

src/data/relay_metrics.json

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -906,14 +906,8 @@
906906
},
907907
{
908908
"type": "Counter",
909-
"name": "runtime.task.spawn.created",
910-
"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.",
911-
"features": []
912-
},
913-
{
914-
"type": "Counter",
915-
"name": "runtime.task.spawn.terminated",
916-
"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.",
909+
"name": "runtime.task.count",
910+
"description": "Number of active runtime tasks.\n\nEvery call to [`spawn`](`crate::spawn()`) increases this counter by one,\nand decrements the counter by one on termination.\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.",
917911
"features": []
918912
},
919913
{

0 commit comments

Comments
 (0)