You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure-monitor-opentelemetry-distro/README.md
+5-6Lines changed: 5 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,17 +43,15 @@ You can use `configure_azure_monitor` to set up instrumentation for your app to
43
43
44
44
* 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.
45
45
* instrumentations - Specifies the libraries with [instrumentations][ot_instrumentations] that you would like to use. Accepts a comma separated list. e.g. `["requests", "flask"]`
46
-
* service_name - Specifies the [service][service_semantic_convention_doc] name.
47
-
* service_namespace - Specifies the [service][service_semantic_convention_doc] namespace.
48
-
* service_instance_id - Specifies the [service][service_semantic_convention_doc] instance id.
49
46
* disable_logging - If set to `True`, disables collection and export of logging telemetry. Defaults to `False`.
50
47
* disable_metrics - If set to `True`, disables collection and export of metric telemetry. Defaults to `False`.
51
48
* disable_tracing - If set to `True`, disables collection and export of distributed tracing telemetry. Defaults to `False`.
49
+
* resource - Specified the OpenTelemetry [resource][opentelemetry_spec_resource] associated with your application. See [this][ot_sdk_python_resource] for default behavior.
52
50
* logging_level - Specifies the [logging level][logging_level] of the logs you would like to collect for your logging pipeline. Defaults to logging.NOTSET.
53
51
* logger_name = Specifies the [logger name][logger_name_hierarchy_doc] under which logging will be instrumented. Defaults to "" which corresponds to the root logger.
54
52
* logging_export_interval_millis - Specifies the logging export interval in milliseconds. Defaults to 5000.
55
53
* metric_readers - Specifies the [metric readers][ot_metric_reader] that you would like to use for your metric pipeline. Accepts a list of [metric readers][ot_sdk_python_metric_reader].
56
-
* views - Specifies the list of [views][opentelemetry_specification_view] to configure for the metric pipeline. See [here][ot_sdk_python_view_examples] for example usage.
54
+
* views - Specifies the list of [views][opentelemetry_spec_view] to configure for the metric pipeline. See [here][ot_sdk_python_view_examples] for example usage.
57
55
* sampling_ratio - Specifies the ratio of distributed tracing telemetry to be [sampled][application_insights_sampling]. Accepted values are in the range [0,1]. Defaults to 1.0, meaning no telemetry is sampled out.
58
56
* tracing_export_interval_millis - Specifies the distributed tracing export interval in milliseconds. Defaults to 5000.
59
57
@@ -111,13 +109,14 @@ Samples are available [here][samples] to demonstrate how to utilize the above co
0 commit comments