jtuglu1 commented on code in PR #18735: URL: https://github.com/apache/druid/pull/18735#discussion_r2512944185
########## docs/operations/metrics.md: ########## @@ -302,7 +297,8 @@ If the JVM does not support CPU time measurement for the current thread, `ingest |Metric|Description|Dimensions|Normal value| |------|-----------|----------|------------| |`task/run/time`|Milliseconds taken to run a task.| `dataSource`, `taskId`, `taskType`, `groupId`, `taskStatus`, `description`, `tags`|Varies| -|`task/pending/time`|Milliseconds taken for a task to wait for running.| `dataSource`, `taskId`, `taskType`, `groupId`, `tags`|Varies| +|`task/pending/time`|Milliseconds taken for a task to be scheduled and start running.| `dataSource`, `taskId`, `taskType`, `groupId`, `tags`|Varies| +|`task/waiting/time`|Milliseconds taken for a task to wait (acquire locks, etc.) before being scheduled to run.| `dataSource`, `taskId`, `taskType`, `groupId`, `tags`|Varies| Review Comment: Changing to: ``` Milliseconds taken for a task to be queued on task runner after being submitted to the Overlord. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
