Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pods_query.json « elasticsearch « lib « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 90d162b871a058f666fee7381db00350d9e19cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  "aggs": {
    "pods": {
      "aggs": {
        "containers": {
          "terms": {
            "field": "kubernetes.container.name",
            "size": 500
          }
        }
      },
      "terms": {
        "field": "kubernetes.pod.name",
        "size": 500
      }
    }
  },
  "query": {
    "bool": {
      "must": {
        "match_phrase": {
          "kubernetes.namespace": "autodevops-deploy-9-production"
        }
      }
    }
  },
  "size": 0
}