Application Insights日志:按信息内容搜索

时间:2019-11-08 10:11:49

标签: azure azure-application-insights

我想通过内部消息搜索Application Insights日志。例如,我有以下日志:

enter image description here

当包含以下消息时,我想搜索所有呼叫:“ FunctionCallEfsApi没有消息” ... 我该怎么办?

2 个答案:

答案 0 :(得分:1)

如果您正在Application Insights中查看 traces exceptions ,则可以在消息包含以下消息时使用以下查询来获取所有消息:'FunctionCallEfsApi no messages'

class Service { 
    extFunction(component, value) {
        component.setState({key: value});
    }
}

const service = new Service();
export default service;

答案 1 :(得分:1)

您可以导航到拥有的Application Insights资源上的Logs(Analytics)并编写查询以获取这些信息,

traces
| where message contains "FunctionCallEfsApi no messages" 

enter image description here