logstash-converted-pipeline: source: http: max_connection_count: 500 request_timeout: 10000 port: 3000 thread_count: 10.0 ssl: true processor: - grok: break_on_match: false match: log: - "%{COMBINEDAPACHELOG}" - drop_events: null - key_value: source: "message" destination: "test" - add_entries: entries: - key: "message1" value: 3 - key: "message2" value: 4.2 - key: "message3" value: "test3" - key: "message4" value: true - rename_keys: entries: - from_key: "messagea" to_key: "newMessage" - from_key: "messageb" to_key: "newMessage2" - copy_values: entries: - from_key: "messagec" to_key: "messaged" - delete_entries: with_keys: - "test" - "test2" - "test3" - "test4" - uppercase_string: with_keys: - "uppercaseField" - lowercase_string: with_keys: - "lowercaseField" - trim_string: with_keys: - "trimField" - substitute_string: entries: - source: "source" from: "from" to: "to" - source: "source2" from: "from2" to: "to2" - split_string: entries: - source: "splitMessage" delimiter: "," sink: - opensearch: hosts: - "https://localhost:19000" username: "myuser" password: "mypassword" index: "simple-pipeline"