Service Performance Monitorings

In this scenario, infrastructure teams can monitor global service performance for:

  • Response time variations across regions

  • Service degradation patterns

  • Capacity planning

Sample input data. Here is example input data for this scenario:

{
  "@timestamp": "2025-09-23T10:15:22Z",
  "event_simpleName": "ServiceHealth",
  "service_name": "payment-api",
  "datacenter_latitude": 40.7128,
  "datacenter_longitude": -74.0060,
  "responseTime": 250,
  "status": "healthy"
}

Query. To create a worldmap, use the following query:

logscale
#event_simpleName=ServiceHealth 
| service_name=* 
| worldMap(
    lat=datacenter_latitude, 
    lon=datacenter_longitude, 
    magnitude=avg(responseTime)
)