Skip to content
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

Custom Event Data json object property ordering is not preserved #1294

Open
niemyjski opened this issue Mar 30, 2023 · 0 comments
Open

Custom Event Data json object property ordering is not preserved #1294

niemyjski opened this issue Mar 30, 2023 · 0 comments
Labels

Comments

@niemyjski
Copy link
Member

The following event json data is not properly preserved after submission:

{
  "type": "log",
  "source": "custom_json_string",
  "message": "custom json string",
  "data": {
      "custom_json_string": "{\"Age\":20,\"Height\":72,\"Attributes\":{\"Values\": [],\"Happy\": true},\"Qualified\":true}"
  }
}

When the value comes back it looks like this

{
  "Attributes": {
    "Happy": true,
    "Values": []
  },
  "Height": 72,
  "Qualified": true,
  "Age": 20
}
@niemyjski niemyjski added the bug label Mar 30, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

1 participant