datadabllp

search and correlate logs

Jul 18th, 2024
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. GET /logs-*/_search
  2. {
  3.   "query": {
  4.     "bool": {
  5.       "must": [
  6.         { "match": { "service.name": "order-processing" } },
  7.         { "range": { "@timestamp": { "gte": "now-1h" } } },
  8.         { "match": { "log.level": "ERROR" } }
  9.       ]
  10.     }
  11.   }
  12. }
  13.  
Advertisement
Add Comment
Please, Sign In to add comment