【发布时间】:2020-02-07 12:10:40
【问题描述】:
我已经开始使用 QnA Maker,并且希望能够在日志中查看问题的所有答案以及随请求发送的分数阈值 .目前,我只能通过此 Kusto 查询看到一个问题的答案。
requests
| where url endswith "generateAnswer"
| project timestamp, id, url, resultCode, duration, performanceBucket
| parse kind = regex url with *"(?i)knowledgebases/"KbId"/generateAnswer"
| join kind= inner (
traces | extend id = operation_ParentId
) on id
| extend question = tostring(customDimensions['Question'])
| extend answer = tostring(customDimensions['Answer'])
| extend score = tostring(customDimensions['Score'])
| project timestamp, resultCode, duration, id, question, answer, score, performanceBucket, KbId
有人知道是否可以查看所有答案吗?
【问题讨论】:
标签: azure qnamaker azure-data-explorer