Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions samples/python/otel/src/main.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

from telemetry import configure_otel_providers
from .telemetry import configure_otel_providers

configure_otel_providers(service_name="quickstart_agent")
configure_otel_providers(service_name="otel_quickstart_agent")

from agent import AGENT_APP, CONNECTION_MANAGER
from start_server import start_server
from .agent import AGENT_APP, CONNECTION_MANAGER
from .start_server import start_server

start_server(
agent_application=AGENT_APP,
Expand Down
Loading