You are on page 1of 1

GET /ediwinws-*/_search

{
"aggs": {
"resultados": {
"composite": {
"size": 200,
"sources": [
{
"server": {
"terms": {
"field": "server"
}
}
}
]
},
"aggs": {
"tiempo": {
"stats": {
"field": "tiempo_ejecucion"
}
}
}
}
},
"size": 0,
"query": {
"bool": {
"filter": [
{
"wildcard": {
"server": "web0*"
}
},
{
"term": {
"domain": "A26106013"
}
},
{
"term": {
"action": "LOG REQUEST TIME"
}
},
{
"range": {
"@timestamp": {
"gte": "now-120m",
"lte": "now-60m"
}
}
}
]
}
}
}

You might also like