diff --git a/daprdocs/content/en/docs/building-blocks/bindings/_index.md b/daprdocs/content/en/docs/building-blocks/bindings/_index.md index 105c17a28..adbd171a5 100644 --- a/daprdocs/content/en/docs/building-blocks/bindings/_index.md +++ b/daprdocs/content/en/docs/building-blocks/bindings/_index.md @@ -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 | | [Redis](../../reference/specs/bindings/redis.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 | | [InfluxDB](../../reference/specs/bindings/influxdb.md) | | ✅ | Experimental | diff --git a/daprdocs/content/en/docs/building-blocks/observability/metrics.md b/daprdocs/content/en/docs/building-blocks/observability/metrics.md index 50f42cdf5..71eef6dc0 100644 --- a/daprdocs/content/en/docs/building-blocks/observability/metrics.md +++ b/daprdocs/content/en/docs/building-blocks/observability/metrics.md @@ -10,9 +10,24 @@ Dapr exposes a [Prometheus](https://prometheus.io/) metrics endpoint that you ca ## 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 diff --git a/daprdocs/content/en/docs/reference/api/state_api.md b/daprdocs/content/en/docs/reference/api/state_api.md index 37d1ba194..d4818e221 100644 --- a/daprdocs/content/en/docs/reference/api/state_api.md +++ b/daprdocs/content/en/docs/reference/api/state_api.md @@ -194,7 +194,6 @@ Parameter | Description --------- | ----------- 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. -consistency | (optional) read consistency mode, see [state operation options](#optional-behaviors) metadata | (optional) metadata as query parameters to the state store ### HTTP Response