Which section(s) is the issue in?
Viewing pipeline logs in Kibana
b.i Filter the containers related to pipelines
{
"query": {
"match": {
"kubernetes.flat_labels": {
"query": "app_kubernetes_io/managed-by=tekton-pipelines",
"type": "phrase"
}
}
}
}
What needs fixing?
In query
field value replace underscores with dots to make the filter working.
"query":"app.kubernetes.io/managed-by=tekton-pipelines"