Articles in this section

How do I convert the eviction void time to a date?

Context

The current Eviction Void Time can be found in the following metrics:

Method

The following command line can be used for the conversion:
date -d @$(($AEROSPIKE_EVICT_VOID_TIME + 1262304000))

Examples:

Let's assume an eviction void time of 322691719.
The forecasted expiration is: 322691719 + 1262304000 = Monday, 23-Mar-20 20:35:19 UTC 

Linux:
$ date -d @$((322691719 + 1262304000))
Mon Mar 23 13:35:19 PDT 2020

MAC OS X:
$ date -r $((322691719 + 1262304000))
Mon Mar 23 13:35:19 PDT 2020

 

Applies To Earliest Version

Pre 4.9

Applies To Latest Version

Current Version
Was this article helpful?
0 out of 0 found this helpful