我想在 Google StackDriver Logging 过滤器中使用通配符。但是,根据官方网站,过滤器不能使用它。有什么方法可以使用吗?
答案1
如果你想搜索文本中包含的字符串,只需直接输入该字符串。
Unicorn (text:Unicorn)
Finds all log entries containing unicorn, in any field and in any letter case.
如果您想在高级过滤器中添加条件以在以“前缀”开头的所有 pod 中进行搜索,请尝试这样做(note ':' instead of '=')
:
resource.type="k8s_container"
resource.labels.cluster_name="cluster-1"
resource.labels.pod_name:"prefix"