We're trying to build a dashboard for our chron jobs -- CF, Java, SQLServer, etc. so that we can see when things were run last, what the result was, and when they're scheduled to run next.

Is there a way with the CFAdmin API or some undocumented <cfschedule> trick to get a list of:

  1. What tasks are scheduled?
  2. What the last run time was?
  3. Did it succeed?
  4. When is it scheduled to run again?

We're currently on CF8, but will be upgrading to CF9 within a few weeks.

Thanks! Chris

link|improve this question

72% accept rate
Great question. I would love to get that same information. – Jason Feb 23 '10 at 18:36
any chance your dashboard will end up on riaforge?? that sounds great – Antony Feb 24 '10 at 2:51
feedback

2 Answers

up vote 9 down vote accepted

I did a little research into this for you. I found a somewhat older reference that is still valid, at least in CF8 and presumably in CF9 as well.

<cfobject type="JAVA" action="Create" name="factory" class="coldfusion.server.ServiceFactory">
<cfset allTasks = factory.CronService.listAll()/>
<cfloop index="i" from="1" to="#ArrayLen(allTasks)#">
    <cfdump var="#allTasks[i]#" />
</cfloop>

From http://www.bpurcell.org/blog/index.cfm?mode=entry&ENTRY=935

This answers your questions #1 and #4. As for #3, there can be no answer to that. ColdFusion's scheduled task engine is just loading up the specified URL at the prescribed time. There is no success or fail -- it simply performs an HTTP request.

Hope this helps.

link|improve this answer
Nice, +1. I would opt for <cfset factory = CreateObject("java", …)>, though, I find that easier to read. – Tomalak Feb 23 '10 at 19:13
Awesome. Exactly what I was trying to accomplish. I think I'll create a table in the db that can hold running/failure states for these jobs. Set it as 'running' when it starts, and when it makes it to completion, set it as 'success' – Chris Brandt Feb 24 '10 at 17:51
feedback

It is possible to "Publish" the results of the job. The response from the HTTP request can be written to the file server, and that will have the values of the last run job.

<cfschedule action = "update"
    task = "TaskName" 
    operation = "HTTPRequest"
    url = "/index.cfm?action=task"
    startDate = "#STARTDATE#"
    startTime = "12:00:00 AM"
    interval = "Daily"
    resolveURL = "NO"
    requestTimeOut = "600"
    publish = "yes"
    path = "#PATH#"
    file = "log_file.log">

Then you can verify the log against the database if you wanted. Since it is the response from the page, you can get and store errors and warnings here as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.