top of page

ElasticSearch Queries

  • taolius
  • Feb 12, 2016
  • 1 min read

GET /event/event_data/_search

{

"query": {

"bool": {

"must": {

"match":{

"deviceId" : {

"query" : "dell",

"type" : "boolean"

}

}

}

}

},

"size" : 0,

"aggregations": {

"bySeverity": {

"terms": {

"field": "severity",

"order" : { "_term" : "desc" } #sorting on the aggregation term

}

}

}

}


Comments


© 2023 by BI World. Proudly created with Wix.com

  • Facebook Basic Black
  • Twitter Basic Black
  • YouTube Basic Black
bottom of page