Elasticsearch Filter Syntax

[event.id] is a field with a dot in its name.

{ "event.id": 1 }

[event][id] is an object called [event] that contains an [id] field

{ "event": { "id": 1 } }

logstash uses a different syntax to the rest of the Elastic stack.

1 Like