Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ Workers execute business logic in workflow applications. Scaling and optimizing

Conductor servers publish metrics that help monitor worker health. Learn how to use these metrics with [PromQL](https://prometheus.io/docs/prometheus/latest/querying/basics/).

:::tip
Each of the following metrics includes `taskType` as a tag. Use this tag to monitor metrics for a specific task.
:::

**Tip**: Each of the following metrics includes `taskType` as a tag. Use this tag to monitor metrics for a specific task.

## Pending requests (Gauge)​

Expand Down Expand Up @@ -50,6 +49,4 @@ If the value is too high (more than a few seconds), check the following:
- The number of workers. If they are all busy, consider increasing the number of workers.
- The worker polling interval. Reduce it if necessary.

:::note
Reducing the polling interval may increase API requests to the server, which could trigger system limits.
:::
**Note**: Reducing the polling interval may increase API requests to the server, which could trigger system limits.
1 change: 1 addition & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ nav:
- devguide/how-tos/Tasks/updating-tasks.md
- devguide/how-tos/Tasks/extending-system-tasks.md
- Workers:
- devguide/how-tos/Workers/scaling-workers.md
- devguide/how-tos/Workers/build-a-golang-task-worker.md
- devguide/how-tos/Workers/build-a-java-task-worker.md
- devguide/how-tos/Workers/build-a-python-task-worker.md
Expand Down
Loading