Elasticsearch - ELK Stack Integration
What does the following Elasticsearch aggregation query return when run on APM transaction data?
GET /apm-*/_search
{
"size": 0,
"aggs": {
"max_duration": {
"max": { "field": "transaction.duration.us" }
}
}
}