Is there a way to reset the evit counter on the stats?

We are monitoring an aerospike cluster . Example

$ asinfo -v ‘statistics’ [-h host] $ asinfo -v ‘namespace/’ [-h host] $ asinfo -v ‘sets//’ [-h host] $ asinfo -v ‘bins/’ [-h host] $ asinfo -v ‘sindex//’ [-h host] $ asinfo -v ‘get-stats:context=xdr;dc=’ [-h host] or $ asinfo -v ‘dc/’ [-h host] $ asinfo -v ‘latency:hist=’ [-h host] or $ asinfo -v ‘latencies:hist=’ [-h host]

In our case: --evicted-objects Once the one namespace has done some eviction is never goes down, is there a way to bring it back to ZERO?

Hi there @bucksense_it_team , the reference says that evicted_objects is the number of objects evicted from the namespace since the server started. I don’t see a way to reset this, outside of restarting the server. If I find something else, I’ll update this answer.

Instead of alarming when its non-zero we alert using prometheus query on its increase… like increase(evicted_objects[10m])>0 which is much easier. The only way to reset the counter to my knowledge is what aanderson said