Elasticsearch - ELK Stack Integration
Given this query:
What does this query return?
GET /metrics/_search
{
"query": {
"bool": {
"must": [
{ "match": { "host": "server1" } },
{ "range": { "@timestamp": { "gte": "now-1h" } } }
]
}
}
}What does this query return?
