- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Convert java millisecond to date
rameshlpatel
Communicator
01-02-2015
03:58 AM
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
martin_mueller

SplunkTrust
01-02-2015
07:36 AM
If you're trying to parse that at index time, use this in props.conf:
TIME_FORMAT = %s%3N
If you're trying to format that into a readable date at search time, use this:
... | eval readable_date = strftime(STARTTIME/1000, "%F %T.%3N")
