Index Mapping (Avoid Explosion)
{
"index_patterns": ["task-svc-*"],
"template": {
"settings": {
"number_of_shards": 2,
"number_of_replicas": 1
},
"mappings": {
"dynamic": "strict",
"properties": {
"timestamp": { "type": "date" },
"level": { "type": "keyword" },
"message": { "type": "text" },
"trace_id": { "type": "keyword" },
"user_id": { "type": "keyword" },
"duration_ms": { "type": "float" },
"http_status": { "type": "integer" }
}
}
}
}
"dynamic": "strict" — unknown fields are rejected, not auto-indexed.