-
Notifications
You must be signed in to change notification settings - Fork 2k
fix(elasticsearch sink): Encode bulk action parameters as JSON #21293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
They are currently using string templating which, if there are special characters in the value, will end up creating an invalid JSON payload; an issue that can be difficult to track down. This happened in #21288. Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
Datadog ReportBranch report: ❌ 9 Failed (0 Known Flaky), 2223 Passed, 0 Skipped, 1m 31.64s Total Time ❌ Failed Tests (9)
|
|
Note: Tests fail due the order of keys in the objects. The data look identical otherwise. |
…csearch-message-encoding
…csearch-message-encoding
Datadog ReportBranch report: ✅ 0 Failed, 7 Passed, 0 Skipped, 25.26s Total Time |
They are currently using string templating which, if there are special characters in the value, will
end up creating an invalid JSON payload; an issue that can be difficult to track down. This happened
in #21288.
Signed-off-by: Jesse Szwedko jesse.szwedko@datadoghq.com