From 07fbc16d6bcc3b32ae1607d0dd343bfeb8bdcf37 Mon Sep 17 00:00:00 2001 From: Jeremy Voss Date: Thu, 30 Mar 2023 14:29:38 -0700 Subject: [PATCH] Update azure-monitor-opentelemetry/README.md Co-authored-by: Leighton Chen --- azure-monitor-opentelemetry/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-monitor-opentelemetry/README.md b/azure-monitor-opentelemetry/README.md index 25c7ee3..903e268 100644 --- a/azure-monitor-opentelemetry/README.md +++ b/azure-monitor-opentelemetry/README.md @@ -56,7 +56,7 @@ You can use `configure_azure_monitor` to set up instrumentation for your app to |-------------------|----------------------------------------------------|----------------------| | `connection_string` | The [connection string][connection_string_doc] for your Application Insights resource. The connection string will be automatically populated from the `APPLICATIONINSIGHTS_CONNECTION_STRING` environment variable if not explicitly passed in. | `APPLICATIONINSIGHTS_CONNECTION_STRING` | | `exclude_instrumentations` | By default, all supported [instrumentations](#officially-supported-instrumentations) are enabled to collect telemetry. Specify instrumentations you do not want to enable to collect telemetry by passing in a comma separated list of instrumented library names. e.g. `["requests", "flask"]` | | -| `resource` | Specified the OpenTelemetry [resource][opentelemetry_spec_resource] associated with your application. See [this][ot_sdk_python_resource] for default behavior. This include configuration via the `OTEL_RESOURCE_ATTRIBUTES` and `OTEL_SERVICE_NAME` environment variables. | `OTEL_RESOURCE_ATTRIBUTES` and `OTEL_SERVICE_NAME` | +| `resource` | Specifies the OpenTelemetry [resource][opentelemetry_spec_resource] associated with your application. See [this][ot_sdk_python_resource] for default behavior. | [OTEL_SERVICE_NAME][opentelemetry_spec_service_name], [OTEL_RESOURCE_ATTRIBUTES][opentelemetry_spec_resource_attributes] | | `disable_logging` | If set to `True`, disables collection and export of logging telemetry. Defaults to `False`. | | | `disable_metrics` | If set to `True`, disables collection and export of metric telemetry. Defaults to `False`. | | | `disable_tracing` | If set to `True`, disables collection and export of distributed tracing telemetry. Defaults to `False`. | |