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/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,11 +74,11 @@ Take a look at the specific [instrumenation][ot_instrumentations] documentation
74
74
* resource - Specified the OpenTelemetry [resource][opentelemetry_spec_resource] associated with your application. See [this][ot_sdk_python_resource] for default behavior.
75
75
* logging_level - Specifies the [logging level][logging_level] of the logs you would like to collect for your logging pipeline. Defaults to logging.NOTSET.
76
76
* logger_name = Specifies the [logger name][logger_name_hierarchy_doc] under which logging will be instrumented. Defaults to "" which corresponds to the root logger.
77
-
*logging_export_interval_millis - Specifies the logging export interval in milliseconds. Defaults to 5000.
77
+
*logging_export_interval_ms - Specifies the logging export interval in milliseconds. Defaults to 5000.
78
78
* 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].
79
79
* 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.
80
80
* 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.
81
-
*tracing_export_interval_millis - Specifies the distributed tracing export interval in milliseconds. Defaults to 5000.
81
+
*tracing_export_interval_ms - Specifies the distributed tracing export interval in milliseconds. Defaults to 5000.
:keyword bool disable_tracing: If set to `True`, disables collection and export of distributed tracing telemetry. Defaults to `False`.
61
61
:keyword int logging_level: Specifies the logging of the logs you would like to collect for your logging pipeline.
62
62
:keyword str logger_name: Specifies the logger name under which logging will be instrumented. Defaults to "" which corresponds to the root logger.
63
-
:keyword int logging_export_interval_millis: Specifies the logging export interval in milliseconds. Defaults to 5000.
63
+
:keyword int logging_export_interval_ms: Specifies the logging export interval in milliseconds. Defaults to 5000.
64
64
:keyword Sequence[MetricReader] metric_readers: Specifies the metric readers that you would like to use for your metric pipeline.
65
65
:keyword Sequence[View] views: Specifies the list of views to configure for the metric pipeline.
66
66
:keyword float sampling_ratio: Specifies the ratio of distributed tracing telemetry to be sampled. Accepted values are in the range [0,1]. Defaults to 1.0, meaning no telemetry is sampled out.
67
-
:keyword int tracing_export_interval_millis: Specifies the distributed tracing export interval in milliseconds. Defaults to 5000.
67
+
:keyword int tracing_export_interval_ms: Specifies the distributed tracing export interval in milliseconds. Defaults to 5000.
68
68
:keyword InstrumentationConfig instrumentation_config: Specifies a dictionary of kwargs that will be applied to instrumentation configuration. You can specify which instrumentation you want to
69
69
configure by name in the key field and value as a dictionary representing `kwargs` for the corresponding instrumentation.
70
70
Refer to the `Supported Library` section of https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry#officially-supported-instrumentations for the list of suppoprted library names.
0 commit comments