mirror of https://github.com/dapr/docs.git
Merge branch 'v1.1' into feature/add_redis_config_doc
This commit is contained in:
commit
042a794810
|
@ -3,7 +3,7 @@ type: docs
|
||||||
title: "Metrics"
|
title: "Metrics"
|
||||||
linkTitle: "Metrics"
|
linkTitle: "Metrics"
|
||||||
weight: 4000
|
weight: 4000
|
||||||
description: "Observing Dapr metrics"
|
description: "Observing Dapr metrics in Kubernetes"
|
||||||
---
|
---
|
||||||
|
|
||||||
Dapr exposes a [Prometheus](https://prometheus.io/) metrics endpoint that you can scrape to gain a greater understanding of how Dapr is behaving and to setup alerts for specific conditions.
|
Dapr exposes a [Prometheus](https://prometheus.io/) metrics endpoint that you can scrape to gain a greater understanding of how Dapr is behaving and to setup alerts for specific conditions.
|
||||||
|
@ -12,9 +12,40 @@ Dapr exposes a [Prometheus](https://prometheus.io/) metrics endpoint that you ca
|
||||||
|
|
||||||
The metrics endpoint is enabled by default, you can disable it by passing the command line argument `--enable-metrics=false` to Dapr system processes.
|
The metrics endpoint is enabled by default, you can disable it by passing the command line argument `--enable-metrics=false` to Dapr system processes.
|
||||||
|
|
||||||
The default metrics port is `9090`. This can be overridden by passing the command line argument `--metrics-port` to Daprd.
|
The default metrics port is `9090`. This can be overridden by passing the command line argument `--metrics-port` to Daprd. Additionally, the metrics exporter can be disabled for a specific application by setting the `dapr.io/enable-metrics: "false"` annotation to your application deployment. With the metrics exporter disabled, `daprd` will not open the metrics listening port.
|
||||||
|
|
||||||
To disable the metrics in the Dapr side car, you can use the `metric` spec configuration and set `enabled: false` to disable the metrics in the Dapr runtime.
|
```yaml
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: nodeapp
|
||||||
|
labels:
|
||||||
|
app: node
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: node
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: node
|
||||||
|
annotations:
|
||||||
|
dapr.io/enabled: "true"
|
||||||
|
dapr.io/app-id: "nodeapp"
|
||||||
|
dapr.io/app-port: "3000"
|
||||||
|
dapr.io/enable-metrics: "true"
|
||||||
|
dapr.io/metrics-port: "9090"
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: node
|
||||||
|
image: dapriosamples/hello-k8s-node:latest
|
||||||
|
ports:
|
||||||
|
- containerPort: 3000
|
||||||
|
imagePullPolicy: Always
|
||||||
|
```
|
||||||
|
|
||||||
|
To disable the metrics collection in the Dapr side cars running in a specific namespace, you can use the `metric` spec configuration and set `enabled: false` to disable the metrics in the Dapr runtime.
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
apiVersion: dapr.io/v1alpha1
|
apiVersion: dapr.io/v1alpha1
|
||||||
|
@ -26,7 +57,7 @@ spec:
|
||||||
tracing:
|
tracing:
|
||||||
samplingRate: "1"
|
samplingRate: "1"
|
||||||
metric:
|
metric:
|
||||||
enabled: false
|
enabled: true
|
||||||
```
|
```
|
||||||
|
|
||||||
## Metrics
|
## Metrics
|
||||||
|
|
Loading…
Reference in New Issue