Hi guys,
I've got a linux server that is currently outputting statistical information about the performance of an application to a CSV file. I want solarwinds to monitor the content of this csv into a table that could be monitored with thresholds on the data that is being outputted, and email the service desk if one of the thresholds is met.
Is this possible?
A sample of the csv content is below:
Date,Time,Files,%MEM,%DISK_USED,PROC_Files_SLIMIT,PROC_Files_HLIMIT,SYS_Files,SYS_FMAX,FD_SOCKETS,ALT_CONNECTIONS,DBCP_COUNT,DC_MEM_USED,DC_MEM_ALLOC
05-10-20,00:00:09,1388,27,64,100000,100000,4256,2426888,202,46,60,4218,4996
05-10-20,00:05:02,1453,27,65,100000,100000,4128,2426888,261,69,88,4371,4996
05-10-20,00:10:03,1400,27,65,100000,100000,4160,2426888,203,46,61,3279,4996
05-10-20,00:15:09,1435,27,66,100000,100000,4224,2426888,228,57,78,3723,4996
05-10-20,00:20:02,1393,27,66,100000,100000,4128,2426888,185,43,58,3495,4996
As you can see, every 5 minutes a new line is added. I want this to be checked every minute and the new line to update the current figure in the solarwinds table.
Thanks