mirror of https://github.com/dapr/docs.git
Merge branch 'master' into hugo-docs
This commit is contained in:
commit
6227f0c929
|
|
@ -37,7 +37,7 @@ Every binding has its own unique set of properties. Click the name link to see t
|
||||||
| [RabbitMQ](../../reference/specs/bindings/rabbitmq.md) | ✅ | ✅ | Experimental |
|
| [RabbitMQ](../../reference/specs/bindings/rabbitmq.md) | ✅ | ✅ | Experimental |
|
||||||
| [Redis](../../reference/specs/bindings/redis.md) | | ✅ | Experimental |
|
| [Redis](../../reference/specs/bindings/redis.md) | | ✅ | Experimental |
|
||||||
| [Twilio](../../reference/specs/bindings/twilio.md) | | ✅ | Experimental |
|
| [Twilio](../../reference/specs/bindings/twilio.md) | | ✅ | Experimental |
|
||||||
| [Twitter](../../reference/specs/bindings/twitter.md) | ✅ | | Experimental |
|
| [Twitter](../../reference/specs/bindings/twitter.md) | ✅ | ✅ | Experimental |
|
||||||
| [SendGrid](../../reference/specs/bindings/sendgrid.md) | | ✅ | Experimental |
|
| [SendGrid](../../reference/specs/bindings/sendgrid.md) | | ✅ | Experimental |
|
||||||
| [InfluxDB](../../reference/specs/bindings/influxdb.md) | | ✅ | Experimental |
|
| [InfluxDB](../../reference/specs/bindings/influxdb.md) | | ✅ | Experimental |
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,9 +10,24 @@ Dapr exposes a [Prometheus](https://prometheus.io/) metrics endpoint that you ca
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
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 darpd.
|
The default metrics port is `9090`. This can be overridden by passing the command line argument `--metrics-port` to Daprd.
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
```
|
||||||
|
apiVersion: dapr.io/v1alpha1
|
||||||
|
kind: Configuration
|
||||||
|
metadata:
|
||||||
|
name: tracing
|
||||||
|
namespace: default
|
||||||
|
spec:
|
||||||
|
tracing:
|
||||||
|
samplingRate: "1"
|
||||||
|
metric:
|
||||||
|
enabled: false
|
||||||
|
```
|
||||||
|
|
||||||
## Metrics
|
## Metrics
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -194,7 +194,6 @@ Parameter | Description
|
||||||
--------- | -----------
|
--------- | -----------
|
||||||
daprPort | the Dapr port
|
daprPort | the Dapr port
|
||||||
storename | ```metadata.name``` field in the user configured state store component yaml. Please refer Dapr State Store configuration structure mentioned above.
|
storename | ```metadata.name``` field in the user configured state store component yaml. Please refer Dapr State Store configuration structure mentioned above.
|
||||||
consistency | (optional) read consistency mode, see [state operation options](#optional-behaviors)
|
|
||||||
metadata | (optional) metadata as query parameters to the state store
|
metadata | (optional) metadata as query parameters to the state store
|
||||||
|
|
||||||
### HTTP Response
|
### HTTP Response
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue