- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
How to use isint(X)?
gudavasr
Path Finder
02-23-2012
02:50 PM
How to use isint(X) function with eval? Please give me an example.
I tried the command like this but not working.
... | stats count(eval(Job="*")) as JobTimes | eval status=if(isint(JobTimes))...
I want to do:
if isint(JobTimes) is TRUE, then status = completed else Running.
Thank You
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

lguinn2
Legend
02-27-2012
03:03 PM
What values will JobTimes contain? What is the value white the job is running? What is the value when the job completes? If the job is not started or if it is aborted?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
hjwang
Contributor
02-23-2012
08:12 PM
Make sure this * is not wildcard for matching all jobs, and you have job just matches "*" because in count(eval(field="xxx")) can not use it.
