You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm throwing some logs at ES and when I'm viewing them in grafana in the table viewer, some record are out of order because they happen at the same second. ES can handle milliseconds since epoch as a default datetime format.
Then I can see that it works and it saves to ES quite readily.
Note that I had to change the Normalizer's date format to 'U.u', and to specifically cast as an int because a float value gets an extra ".0" added to it when it gets converted to JSON.
The text was updated successfully, but these errors were encountered:
I'm throwing some logs at ES and when I'm viewing them in grafana in the table viewer, some record are out of order because they happen at the same second. ES can handle milliseconds since epoch as a default datetime format.
If I make a change like this:
Then I can see that it works and it saves to ES quite readily.
Note that I had to change the Normalizer's date format to 'U.u', and to specifically cast as an int because a float value gets an extra ".0" added to it when it gets converted to JSON.
The text was updated successfully, but these errors were encountered: