compose.yml file docker compose up # to count request_function.keyword GET accounts_services_log-2021.11.02/_search?q=NOT(request_function.keyword:"validateOTP") { "aggs": { "distinct_colors": { "terms": { "field": "request_function_keyword", "size": 1000 } } } } ################################################################# # to count err count GET accounts_services_log-2021.11.02/_search { "aggs": { "distinct_colors": { "terms": { "field": "err", "size": 1000 } } } } ################################################################# GET accounts_services_log-2021.10.08/_search? { "aggs": { "distinct_colors": { "terms": { "field": "responce.state.keyword", "size": 1000 } } } } GET accounts_services_log-2021.10.26/_search?q=NOT(request_function.keyword:"validateOTP") { "aggs": { "distinct_colors": { "terms": { "field": "error_description.keyword", "size": 1000 } } } } GET accounts_services_log-2021.11.02/_search { "query": { "match": { "request_function.keyword":"validateOTP" } } } GET /index2/_search?q=* { "query": { "match": { "Username":"grey07" } } } GET /index2/_search? { "query": { "match": { "First name":"Rachel" } } }