Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding agents instrumentation to configure_azure_monitor #40043

Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

with tracer.start_as_current_span(scenario):
with project_client:
project_client.telemetry.enable()
#project_client.telemetry.enable()
# [END enable_tracing]
agent = project_client.agents.create_agent(
model=os.environ["MODEL_DEPLOYMENT_NAME"], name="my-assistant", instructions="You are helpful assistant"
Expand All @@ -62,7 +62,7 @@
print(f"Created thread, thread ID: {thread.id}")

message = project_client.agents.create_message(
thread_id=thread.id, role="user", content="Hello, tell me a joke"
thread_id=thread.id, role="user", content="Hello, tell me a hilarious joke"
)
print(f"Created message, message ID: {message.id}")

Expand Down
3 changes: 3 additions & 0 deletions sdk/monitor/azure-monitor-opentelemetry/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

### Features Added

- Enable Azure AI Agents instrumentation
([#40043](https://github.com/Azure/azure-sdk-for-python/pull/40043))

### Breaking Changes

### Bugs Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,20 +269,31 @@ def _setup_additional_azure_sdk_instrumentations(configurations: Dict[str, Confi
_logger.debug("Instrumentation skipped for library azure_sdk")
return

try:
from azure.ai.inference.tracing import AIInferenceInstrumentor # pylint: disable=import-error,no-name-in-module
except Exception as ex: # pylint: disable=broad-except
_logger.debug(
"Failed to import AIInferenceInstrumentor from azure-ai-inference",
exc_info=ex,
)
return
instrumentors = [
("azure.ai.inference.tracing", "AIInferenceInstrumentor"),
("azure.ai.projects.telemetry.agents", "AIAgentsInstrumentor")
]

try:
AIInferenceInstrumentor().instrument()
except Exception as ex: # pylint: disable=broad-except
_logger.warning(
"Exception occurred when instrumenting: %s.",
"azure-ai-inference",
exc_info=ex,
)
for module_path, class_name in instrumentors:
instrumentor_imported = False
try:
module = __import__(module_path, fromlist=[class_name])
instrumentor_imported = True
except Exception as ex: # pylint: disable=broad-except
_logger.debug(
"Failed to import %s from %s",
class_name,
module_path,
exc_info=ex,
)

if instrumentor_imported:
try:
instrumentor_class = getattr(module, class_name)
instrumentor_class().instrument()
except Exception as ex: # pylint: disable=broad-except
_logger.warning(
"Exception occurred when instrumenting using: %s.",
class_name,
exc_info=ex,
)
Loading