Application Insightsのログがうまく出ない

nmt 1 Reputation point
2022-08-15T08:35:17.467+00:00

初心者です。Azureでボットを構築し利用しています。
Application Insightsのログから「全質問と回答データ」クエリを実行し、質問(question)と答え(answer)を確認していたのですが、7/24~8/8の期間のみquestionとanswerの項目がブランクになっています。
ブランクの要因として、考えられる理由はなんでしょうか。
この期間の質問、回答を確認する方法はありますでしょうか。

Azure Monitor
Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
2,798 questions
Azure AI Bot Service
Azure AI Bot Service
An Azure service that provides an integrated environment for bot development.
746 questions
Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
2,368 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Ryan Hill 25,661 Reputation points Microsoft Employee
    2022-08-19T18:25:27.773+00:00

    I'm assuming you followed Add telemetry to your QnA Maker bot @nmt . If not, please have a look to ensure telemetry data is properly configured and view your property data through customEvents

       customEvents  
       | where name == 'QnaMessage'  
       | extend MyImportantProperty = tostring(customDimensions.MyImportantProperty)  
       | summarize count() by MyImportantProperty  
    
    0 comments No comments