We have splunk 6.5.2 and ITSI 3.0.0. We have created 9 KPI's, but 2 of them stays always in zero in the service analyzar window (we have monitored several days), even though the graph in the Aggregate Threshold values (Thresholding section) and the search test show activity and events constantly. This is an example of the search to define the KPI's
index=banamex host=* sourcetype=Log:* ID_COTIZACION=C* OR ID_COTIZACION=d* | eval COTIZ=if(ID_COTIZACION!=null, 1, 0)
index=banamex host=* sourcetype=Log:* ID_COTIZACION=88* | eval COTIZ=if(ID_COTIZACION!=0, 1, 0)
Any Idea? By the way, if I use a regular expression, the search works but ITSI doesn't seem to recognize it:
index=banamex host=* sourcetype=Log:Out | regex ID_COTIZACION=\d | stats count(ID_COTIZACION) as TX_NET
index=banamex host=* sourcetype=Log:Out | regex ID_COTIZACION=\D | stats count(ID_COTIZACION) as TX_NET
... View more