Timestamps
Every occurrence in Rollbar has a timestamp. The timestamps that you see throughout the Rollbar UI and API are the time according to Rollbar's servers. We use and continuously monitor ntpd to keep our clocks in sync.
Timestamps are stored internally as unix timestamps, at second-level precision.
Timestamps in the UI are displayed using the timezone defined by the users browser.
Timestamps returned from the API are unix timestamps, as are timestamps in RQL queries.
The original timestamp reported to Rollbar by your application is available in the field metadata.customer_timestamp
. It will normally be a unix timestamp as well. You can see this in two places:
- On the occurrence detail page, the Raw JSON section will include a
metadata
section. If there was a timestamp in the original report, it will be presented underNotifier Timestamp
and it will also be present as the keycustomer_timestamp
. - Via RQL, you can select it as the column name
metadata.customer_timestamp
Updated 9 months ago