Created
March 5, 2025 02:02
-
-
Save mahiya/d97556b2d6ab4d75a6c8314de1c4a127 to your computer and use it in GitHub Desktop.
Azure AI Agent の Run の実行ログを Application Insights で取得するための Kusto クエリ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies | |
| where type == "az.ai.agents" | |
| where isnotnull(customDimensions["gen_ai.usage.input_tokens"]) | |
| order by timestamp desc | |
| project | |
timestamp | |
,target | |
,duration | |
,agent_id = customDimensions["gen_ai.agent.id"] | |
,thread_id = customDimensions["gen_ai.thread.id"] | |
,model = customDimensions["gen_ai.response.model"] | |
,status = customDimensions["gen_ai.thread.run.status"] | |
,input_tokens = customDimensions["gen_ai.usage.input_tokens"] | |
,output_tokens = customDimensions["gen_ai.usage.output_tokens"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment