Elasticsearch - ELK Stack Integration
Identify the error in this pipeline configuration snippet:
{
"input": { "type": "file", "path": "/var/log/app.log" },
"filter": { "grok": { "match": { "message": "%{TIMESTAMP_ISO8601:timestamp} %{LOGLEVEL:level}" } } },
"output": { "elasticsearch": { "index": "app-logs" }
}