Context
The current Eviction Void Time can be found in the following metrics:- Eviction Depth expressed in Aerospike Epoch: evict_void_time
- Cluster wide SMD eviction depth: smd_evict_void_time
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