diff options
Diffstat (limited to 'spec/fixtures/lib')
7 files changed, 351 insertions, 0 deletions
diff --git a/spec/fixtures/lib/elasticsearch/logs_response.json b/spec/fixtures/lib/elasticsearch/logs_response.json new file mode 100644 index 00000000000..7a733882089 --- /dev/null +++ b/spec/fixtures/lib/elasticsearch/logs_response.json @@ -0,0 +1,73 @@ +{ + "took": 7087, + "timed_out": false, + "_shards": { + "total": 151, + "successful": 151, + "skipped": 0, + "failed": 0, + "failures": [] + }, + "hits": { + "total": 486924, + "max_score": null, + "hits": [ + { + "_index": "filebeat-6.7.0-2019.10.25", + "_type": "doc", + "_id": "SkbxAW4BWzhswgK-C5-R", + "_score": null, + "_source": { + "message": "10.8.2.1 - - [25/Oct/2019:08:03:22 UTC] \"GET / HTTP/1.1\" 200 13", + "@timestamp": "2019-12-13T14:35:34.034Z" + }, + "sort": [ + 9999998, + 1571990602947 + ] + }, + { + "_index": "filebeat-6.7.0-2019.10.27", + "_type": "doc", + "_id": "wEigD24BWzhswgK-WUU2", + "_score": null, + "_source": { + "message": "10.8.2.1 - - [27/Oct/2019:23:49:54 UTC] \"GET / HTTP/1.1\" 200 13", + "@timestamp": "2019-12-13T14:35:35.034Z" + }, + "sort": [ + 9999949, + 1572220194500 + ] + }, + { + "_index": "filebeat-6.7.0-2019.11.04", + "_type": "doc", + "_id": "gE6uOG4BWzhswgK-M0x2", + "_score": null, + "_source": { + "message": "10.8.2.1 - - [04/Nov/2019:23:09:24 UTC] \"GET / HTTP/1.1\" 200 13", + "@timestamp": "2019-12-13T14:35:36.034Z" + }, + "sort": [ + 9999944, + 1572908964497 + ] + }, + { + "_index": "filebeat-6.7.0-2019.10.30", + "_type": "doc", + "_id": "0klPHW4BWzhswgK-nfCF", + "_score": null, + "_source": { + "message": "- -\u003e /", + "@timestamp": "2019-12-13T14:35:37.034Z" + }, + "sort": [ + 9999934, + 1572449784442 + ] + } + ] + } +} diff --git a/spec/fixtures/lib/elasticsearch/query.json b/spec/fixtures/lib/elasticsearch/query.json new file mode 100644 index 00000000000..565c871b1c7 --- /dev/null +++ b/spec/fixtures/lib/elasticsearch/query.json @@ -0,0 +1,39 @@ +{ + "query": { + "bool": { + "must": [ + { + "match_phrase": { + "kubernetes.pod.name": { + "query": "production-6866bc8974-m4sk4" + } + } + }, + { + "match_phrase": { + "kubernetes.namespace": { + "query": "autodevops-deploy-9-production" + } + } + } + ] + } + }, + "sort": [ + { + "@timestamp": { + "order": "desc" + } + }, + { + "offset": { + "order": "desc" + } + } + ], + "_source": [ + "@timestamp", + "message" + ], + "size": 500 +} diff --git a/spec/fixtures/lib/elasticsearch/query_with_container.json b/spec/fixtures/lib/elasticsearch/query_with_container.json new file mode 100644 index 00000000000..21eac5d7dbe --- /dev/null +++ b/spec/fixtures/lib/elasticsearch/query_with_container.json @@ -0,0 +1,46 @@ +{ + "query": { + "bool": { + "must": [ + { + "match_phrase": { + "kubernetes.pod.name": { + "query": "production-6866bc8974-m4sk4" + } + } + }, + { + "match_phrase": { + "kubernetes.namespace": { + "query": "autodevops-deploy-9-production" + } + } + }, + { + "match_phrase": { + "kubernetes.container.name": { + "query": "auto-deploy-app" + } + } + } + ] + } + }, + "sort": [ + { + "@timestamp": { + "order": "desc" + } + }, + { + "offset": { + "order": "desc" + } + } + ], + "_source": [ + "@timestamp", + "message" + ], + "size": 500 +} diff --git a/spec/fixtures/lib/elasticsearch/query_with_end_time.json b/spec/fixtures/lib/elasticsearch/query_with_end_time.json new file mode 100644 index 00000000000..2859e6427d4 --- /dev/null +++ b/spec/fixtures/lib/elasticsearch/query_with_end_time.json @@ -0,0 +1,48 @@ +{ + "query": { + "bool": { + "must": [ + { + "match_phrase": { + "kubernetes.pod.name": { + "query": "production-6866bc8974-m4sk4" + } + } + }, + { + "match_phrase": { + "kubernetes.namespace": { + "query": "autodevops-deploy-9-production" + } + } + } + ], + "filter": [ + { + "range": { + "@timestamp": { + "lt": "2019-12-13T14:35:34.034Z" + } + } + } + ] + } + }, + "sort": [ + { + "@timestamp": { + "order": "desc" + } + }, + { + "offset": { + "order": "desc" + } + } + ], + "_source": [ + "@timestamp", + "message" + ], + "size": 500 +} diff --git a/spec/fixtures/lib/elasticsearch/query_with_search.json b/spec/fixtures/lib/elasticsearch/query_with_search.json new file mode 100644 index 00000000000..3c9bed047fa --- /dev/null +++ b/spec/fixtures/lib/elasticsearch/query_with_search.json @@ -0,0 +1,48 @@ +{ + "query": { + "bool": { + "must": [ + { + "match_phrase": { + "kubernetes.pod.name": { + "query": "production-6866bc8974-m4sk4" + } + } + }, + { + "match_phrase": { + "kubernetes.namespace": { + "query": "autodevops-deploy-9-production" + } + } + }, + { + "simple_query_string": { + "query": "foo +bar ", + "fields": [ + "message" + ], + "default_operator": "and" + } + } + ] + } + }, + "sort": [ + { + "@timestamp": { + "order": "desc" + } + }, + { + "offset": { + "order": "desc" + } + } + ], + "_source": [ + "@timestamp", + "message" + ], + "size": 500 +} diff --git a/spec/fixtures/lib/elasticsearch/query_with_start_time.json b/spec/fixtures/lib/elasticsearch/query_with_start_time.json new file mode 100644 index 00000000000..0c5cfca42f7 --- /dev/null +++ b/spec/fixtures/lib/elasticsearch/query_with_start_time.json @@ -0,0 +1,48 @@ +{ + "query": { + "bool": { + "must": [ + { + "match_phrase": { + "kubernetes.pod.name": { + "query": "production-6866bc8974-m4sk4" + } + } + }, + { + "match_phrase": { + "kubernetes.namespace": { + "query": "autodevops-deploy-9-production" + } + } + } + ], + "filter": [ + { + "range": { + "@timestamp": { + "gte": "2019-12-13T14:35:34.034Z" + } + } + } + ] + } + }, + "sort": [ + { + "@timestamp": { + "order": "desc" + } + }, + { + "offset": { + "order": "desc" + } + } + ], + "_source": [ + "@timestamp", + "message" + ], + "size": 500 +} diff --git a/spec/fixtures/lib/elasticsearch/query_with_times.json b/spec/fixtures/lib/elasticsearch/query_with_times.json new file mode 100644 index 00000000000..7108d42217e --- /dev/null +++ b/spec/fixtures/lib/elasticsearch/query_with_times.json @@ -0,0 +1,49 @@ +{ + "query": { + "bool": { + "must": [ + { + "match_phrase": { + "kubernetes.pod.name": { + "query": "production-6866bc8974-m4sk4" + } + } + }, + { + "match_phrase": { + "kubernetes.namespace": { + "query": "autodevops-deploy-9-production" + } + } + } + ], + "filter": [ + { + "range": { + "@timestamp": { + "gte": "2019-12-13T14:35:34.034Z", + "lt": "2019-12-13T14:35:34.034Z" + } + } + } + ] + } + }, + "sort": [ + { + "@timestamp": { + "order": "desc" + } + }, + { + "offset": { + "order": "desc" + } + } + ], + "_source": [ + "@timestamp", + "message" + ], + "size": 500 +} |