Hello,
Sorry if this is basic but I have spent considerable time getting this to work. I have a master item master_item that outputs something like this:
I want to create dependent items that would get the count of COMPLETED or RUNNING. Just looking at the case of 'COMPLETED', I have been able to create a basic Regular Expression that seems to find 'COMPLETED' but I can't figure out how to get the count of the 'COMPLETED' occurrences. This is what I have so far in the pre-processing:
It appears that I'd have to add another pre-processing step to get the count but I can't figure out which one and how to do it.
Please suggest a solution to this,
Thanks,
Sorry if this is basic but I have spent considerable time getting this to work. I have a master item master_item that outputs something like this:
JobID,User,State,NodeList,NNodes,Elapsed,Waittime,
1,user1,RUNNING,server1,1,3-17:43:02,00:00:14,
2,user2,RUNNING,server2,1,2-21:45:11,00:00:00,
3,user3,COMPLETED,server3,1,2-14:46:49,00:00:02,
4,user4,COMPLETED,server4,1,00:19:50,00:00:00,
1,user1,RUNNING,server1,1,3-17:43:02,00:00:14,
2,user2,RUNNING,server2,1,2-21:45:11,00:00:00,
3,user3,COMPLETED,server3,1,2-14:46:49,00:00:02,
4,user4,COMPLETED,server4,1,00:19:50,00:00:00,
It appears that I'd have to add another pre-processing step to get the count but I can't figure out which one and how to do it.
Please suggest a solution to this,
Thanks,
Comment