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
The API describes the timestamp field as a unix timestamp. However, rollbar-java's default TimestampProvider provides a "java" timestamp, which is based on milliseconds instead of seconds.
The rollbar UI doesn't seem to interpret this:
I dislike how the api loses milliseconds, but it's probably best to be spec-compliant and divide the java timestamp by 1000 to dump the milliseconds.
The text was updated successfully, but these errors were encountered:
Good find @mattdrees. I think we can probably keep the milliseconds on the "Notifier Timestamp" if rollbar-java sends it as a float. I believe it'll display without milliseconds on that "Notifier Timestamp" line, but the original value will be available in the Raw JSON section.
The API describes the
timestamp
field as a unix timestamp. However,rollbar-java
's default TimestampProvider provides a "java" timestamp, which is based on milliseconds instead of seconds.The rollbar UI doesn't seem to interpret this:
I dislike how the api loses milliseconds, but it's probably best to be spec-compliant and divide the java timestamp by 1000 to dump the milliseconds.
The text was updated successfully, but these errors were encountered: