ES版本 ES 7.10 配置Kong日志写入ES [crayon-63e2ff4e825772 […]
创建Pipeline
1 2 3 4 5 6 7 8 9 10 11 12 |
PUT /_ingest/pipeline/x { "description": "Creates a timestamp when a document is initially indexed", "processors": [ { "set": { "field": "timestamp", "value": "{{_ingest.timestamp}}" } } ] } |
测试Pi […]