File tree 2 files changed +7
-5
lines changed
sdk/core/azure-core-tracing-opentelemetry
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
# Release History
3
3
4
4
-------------------
5
- ## 1.0.0b5 (Unreleased )
5
+ ## 1.0.0b5 (2020-06-08 )
6
6
7
7
- Pinned opentelemetry-api to version 0.8b0
8
8
- Fixed a bug where ` DefaultSpan ` sometimes throws an AttributeError.
Original file line number Diff line number Diff line change @@ -40,11 +40,13 @@ from azure.core.tracing.ext.opentelemetry_span import OpenTelemetrySpan
40
40
41
41
settings.tracing_implementation = OpenTelemetrySpan
42
42
43
+ # In the below example, we use a simple console exporter, uncomment these lines to use
44
+ # the Azure Monitor Exporter.
43
45
# Example of Azure Monitor exporter, but you can use anything OpenTelemetry supports
44
- from azure_monitor import AzureMonitorSpanExporter
45
- exporter = AzureMonitorSpanExporter(
46
- instrumentation_key = " uuid of the instrumentation key (see your Azure Monitor account)"
47
- )
46
+ # from azure_monitor import AzureMonitorSpanExporter
47
+ # exporter = AzureMonitorSpanExporter(
48
+ # instrumentation_key="uuid of the instrumentation key (see your Azure Monitor account)"
49
+ # )
48
50
49
51
# Regular open telemetry usage from here, see https://github.com/open-telemetry/opentelemetry-python
50
52
# for details
You can’t perform that action at this time.
0 commit comments