aws CloudWatch度量过滤器是否可能不处理布尔值?示例JSON:
{
"data": {
"allMatch": true,
"level": "INFO",
"results": [
{
"expectedResult": 200,
"matchesExpected": true,
"result": 200,
"type": "http-status"
}
]
},
"stream": "stdout",
"time": "2022-09-29T14:09:00.959390386Z"
}
我尝试过几种度量过滤器:{ $.data.allMatch = true }
、{ $.data.allMatch = "true" }
、{ $.data.allMatch = 1 }
和none返回任何事件。
{ $.data.allMatch IS TRUE }
完成了任务。。。