mirror of https://github.com/dapr/docs.git
Merge branch 'v1.14' into issue_4284
This commit is contained in:
commit
417ba49d86
|
@ -32,7 +32,7 @@ The jobs API is a job scheduler, not the executor which runs the job. The design
|
|||
All job details and user-associated data for scheduled jobs are stored in an embedded Etcd database in the Scheduler service.
|
||||
You can use jobs to:
|
||||
|
||||
- **Delay your [pub/sub messaging]({<< ref pubsub-overview.md >>}).** You can publish a message in a future specific time (for example: a week from today, or a specific UTC date/time).
|
||||
- **Delay your [pub/sub messaging]({{< ref pubsub-overview.md >}}).** You can publish a message in a future specific time (for example: a week from today, or a specific UTC date/time).
|
||||
- **Schedule [service invocation]({{< ref service-invocation-overview.md >}}) method calls between applications.**
|
||||
|
||||
## Scenarios
|
||||
|
|
|
@ -74,7 +74,7 @@ spec:
|
|||
|
||||
When invoking Dapr using HTTP, metrics are created for each requested method by default. This can result in a high number of metrics, known as high cardinality, which can impact memory usage and CPU.
|
||||
|
||||
Path matching allows you to manage and control the cardinality of HTTP metrics in Dapr. This is an aggregation of metrics, so rather than having a metric for each event, you can reduce the number of metrics events and report an overall number. For details on how to set the cardinality in configuration see ({{< ref "configuration-overview.md#metrics" >}})
|
||||
Path matching allows you to manage and control the cardinality of HTTP metrics in Dapr. This is an aggregation of metrics, so rather than having a metric for each event, you can reduce the number of metrics events and report an overall number. [Learn more about how to set the cardinality in configuration]({{< ref "configuration-overview.md#metrics" >}}).
|
||||
|
||||
This configuration is opt-in and is enabled via the Dapr configuration `spec.metrics.http.pathMatching`. When defined, it enables path matching, which standardizes specified paths for both metrics paths. This reduces the number of unique metrics paths, making metrics more manageable and reducing resource consumption in a controlled way.
|
||||
|
||||
|
|
Loading…
Reference in New Issue