mirror of https://github.com/dapr/docs.git
fix docs
Signed-off-by: Hannah Hunter <hannahhunter@microsoft.com>
This commit is contained in:
parent
ad078b7185
commit
b953f5ec48
|
@ -111,6 +111,15 @@ metrics:
|
|||
latencyDistributionBuckets: []
|
||||
http:
|
||||
increasedCardinality: true
|
||||
pathMatching:
|
||||
- /items
|
||||
- /orders/{orderID}
|
||||
- /orders/{orderID}/items/{itemID}
|
||||
- /payments/{paymentID}
|
||||
- /payments/{paymentID}/status
|
||||
- /payments/{paymentID}/refund
|
||||
- /payments/{paymentID}/details
|
||||
excludeVerbs: false
|
||||
```
|
||||
|
||||
In the examples above this path filter `/orders/{orderID}/items/{itemID}` would return a single metric count matching all the orderIDs and all the itemIDs rather than multiple metrics for each itemID. For more information see [HTTP metrics path matching]({{< ref "metrics-overview.md#http-metrics-path-matching" >}})
|
||||
|
@ -126,7 +135,7 @@ The following table lists the properties for metrics:
|
|||
| `http.pathMatching` | array | Array of paths for path matching, allowing users to define matching paths to manage cardinality. |
|
||||
| `http.excludeVerbs` | boolean | When set to true (default is false), the Dapr HTTP server ignores each request HTTP verb when building the method metric label. |
|
||||
|
||||
To mitigate high memory usage and egress costs associated with [high cardinality metrics]({{< ref "metrics-overview.md#high-cardinality-metrics" >}}) with the HTTP server, you should set the `metrics.http.increasedCardinality` property to `false`.
|
||||
To further help managing cardinality, path matching allows specified paths matched according to defined patterns, reducing the number of unique metrics paths and thus controlling metric cardinality. This feature is particularly useful for applications with dynamic URLs, ensuring that metrics remain meaningful and manageable without excessive memory consumption.
|
||||
|
||||
Using rules, you can set regular expressions for every metric exposed by the Dapr sidecar. For example:
|
||||
|
||||
|
|
|
@ -70,11 +70,133 @@ spec:
|
|||
enabled: false
|
||||
```
|
||||
|
||||
## High cardinality metrics
|
||||
## Optimizing HTTP metrics reporting with path matching
|
||||
|
||||
When invoking Dapr using HTTP, the legacy behavior (and current default as of Dapr 1.13) is to create a separate "bucket" for each requested method. When working with RESTful APIs, this can cause very high cardinality, with potential negative impact on memory usage and CPU.
|
||||
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.
|
||||
|
||||
Dapr 1.13 introduces a new option for the Dapr Configuration resource `spec.metrics.http.increasedCardinality`: when set to `false`, it reports metrics for the HTTP server for each "abstract" method (for example, requesting from a state store) instead of creating a "bucket" for each concrete request path.
|
||||
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" >}})
|
||||
|
||||
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.
|
||||
|
||||
When `spec.metrics.http.pathMatching` is combined with the `increasedCardinality` flag set to `false`, non-matched paths are transformed into a catch-all bucket to control and limit cardinality, preventing unbounded path growth. Conversely, when `increasedCardinality` is `true` (the default), non-matched paths are passed through as they normally would be, allowing for potentially higher cardinality but preserving the original path data.
|
||||
|
||||
### Examples of Path Matching in HTTP Metrics
|
||||
|
||||
The following examples demonstrate how to use the Path Matching API in Dapr for managing HTTP metrics. On each example, the metrics are collected from 5 HTTP requests to the `/orders` endpoint with different order IDs. By adjusting cardinality and utilizing path matching, you can fine-tune metric granularity to balance detail and resource efficiency.
|
||||
|
||||
These examples illustrate the cardinality of the metrics, highlighting that high cardinality configurations result in many entries, which correspond to higher memory usage for handling metrics. For simplicity, the following example focuses on a single metric: `dapr_http_server_request_count`.
|
||||
|
||||
#### Low cardinality with path matching (Recommendation)
|
||||
|
||||
Configuration:
|
||||
```yaml
|
||||
http:
|
||||
increasedCardinality: false
|
||||
pathMatching:
|
||||
- /orders/{orderID}
|
||||
```
|
||||
|
||||
Metrics generated:
|
||||
```
|
||||
# matched paths
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="/orders/{orderID}",status="200"} 5
|
||||
# unmatched paths
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="",status="200"} 1
|
||||
```
|
||||
|
||||
With low cardinality and path matching configured, you get the best of both worlds by grouping the metrics for the important endpoints without compromising the cardinality. This approach helps avoid high memory usage and potential security issues.
|
||||
|
||||
#### Low cardinality without path matching
|
||||
|
||||
Configuration:
|
||||
|
||||
```yaml
|
||||
http:
|
||||
increasedCardinality: false
|
||||
```
|
||||
Metrics generated:
|
||||
```
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET", path="",status="200"} 5
|
||||
```
|
||||
|
||||
In low cardinality mode, the path, which is the main source of unbounded cardinality, is dropped. This results in metrics that primarily indicate the number of requests made to the service for a given HTTP method, but without any information about the paths invoked.
|
||||
|
||||
|
||||
#### High cardinality with path matching
|
||||
|
||||
Configuration:
|
||||
```yaml
|
||||
http:
|
||||
increasedCardinality: true
|
||||
pathMatching:
|
||||
- /orders/{orderID}
|
||||
```
|
||||
|
||||
Metrics generated:
|
||||
```
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="/orders/{orderID}",status="200"} 5
|
||||
```
|
||||
|
||||
This example results from the same HTTP requests as the example above, but with path matching configured for the path `/orders/{orderID}`. By using path matching, you achieve reduced cardinality by grouping the metrics based on the matched path.
|
||||
|
||||
#### High Cardinality without path matching
|
||||
|
||||
Configuration:
|
||||
```yaml
|
||||
http:
|
||||
increasedCardinality: true
|
||||
```
|
||||
|
||||
Metrics generated:
|
||||
```
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="/orders/1",status="200"} 1
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="/orders/2",status="200"} 1
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="/orders/3",status="200"} 1
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="/orders/4",status="200"} 1
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="/orders/5",status="200"} 1
|
||||
```
|
||||
|
||||
For each request, a new metric is created with the request path. This process continues for every request made to a new order ID, resulting in unbounded cardinality since the IDs are ever-growing.
|
||||
|
||||
|
||||
### HTTP metrics exclude verbs
|
||||
|
||||
The `excludeVerbs` option allows you to exclude specific HTTP verbs from being reported in the metrics. This can be useful in high-performance applications where memory savings are critical.
|
||||
|
||||
### Examples of excluding HTTP verbs in metrics
|
||||
|
||||
The following examples demonstrate how to exclude HTTP verbs in Dapr for managing HTTP metrics.
|
||||
|
||||
#### Default - Include HTTP verbs
|
||||
|
||||
Configuration:
|
||||
```yaml
|
||||
http:
|
||||
excludeVerbs: false
|
||||
```
|
||||
|
||||
Metrics generated:
|
||||
```
|
||||
dapr_http_server_request_count{app_id="order-service",method="GET",path="/orders",status="200"} 1
|
||||
dapr_http_server_request_count{app_id="order-service",method="POST",path="/orders",status="200"} 1
|
||||
```
|
||||
|
||||
In this example, the HTTP method is included in the metrics, resulting in a separate metric for each request to the `/orders` endpoint.
|
||||
|
||||
#### Exclude HTTP verbs
|
||||
|
||||
Configuration:
|
||||
```yaml
|
||||
http:
|
||||
excludeVerbs: true
|
||||
```
|
||||
|
||||
Metrics generated:
|
||||
```
|
||||
dapr_http_server_request_count{app_id="order-service",method="",path="/orders",status="200"} 2
|
||||
```
|
||||
|
||||
In this example, the HTTP method is excluded from the metrics, resulting in a single metric for all requests to the `/orders` endpoint.
|
||||
|
||||
## Configuring custom latency histogram buckets
|
||||
|
||||
|
@ -160,4 +282,4 @@ Using regular expressions to reduce metrics cardinality is considered legacy. We
|
|||
## References
|
||||
|
||||
* [Howto: Run Prometheus locally]({{< ref prometheus.md >}})
|
||||
* [Howto: Set up Prometheus and Grafana for metrics]({{< ref grafana.md >}})
|
||||
* [Howto: Set up Prometheus and Grafana for metrics]({{< ref grafana.md >}})
|
Loading…
Reference in New Issue