klinstifen wrote: > > My current graph commands read: > -F > -E > --height=100 > --width=500 > --vertical-label= > DEF:logon_Attempts-raw=rrdPath/logonAttempts_logonAttempts.rrd:ds0:AVERAGE > CDEF:logon_Attempts=logon_Attempts-raw > LINE:logon_Attempts-raw#0000ff:logon Attempts > GPRINT:logon_Attempts-raw:LAST:cur\:%5.2lf%s > GPRINT:logon_Attempts-raw:AVERAGE:avg\:%5.2lf%s > GPRINT:logon_Attempts-raw:MAX:max\:%5.2lf%s\j > > When I add what you suggested (changing login to logon) it breaks the graph. > Should these commands be inputed under "Graph Custom Definition" or under the > Data Points "Create Cmd"? >
I got it! I had to take what you suggested: Code: CDEF:totalAttempts=loginAttempts_loginAttempts,60,* AREA:totalAttempts#00cc00:Login Attempts per Minute And modify it to more closely fit my enviornment. The CDEF should read: Code: CDEF:totalAttempts=logon_Attempts-raw,60,* Then I had to add my GPRINTs Code: GPRINT:totalAttempts:LAST:cur\:%5.2lf%s GPRINT:totalAttempts:AVERAGE:avg\:%5.2lf%s GPRINT:totalAttempts:MAX:max\:%5.2lf%s\j Thanks jamesroman, I really appreciate it. The logonAttempts graph point still exists, but I have set the line type to Not Drawn. I could probably remove it and declare the DEF manually, but it's working so I may just leave it. Plus leaving it gives me a point of reference... Thanks again! -------------------- m2f -------------------- Read this topic online here: http://community.zenoss.com/forums/viewtopic.php?p=13324#13324 -------------------- m2f -------------------- _______________________________________________ zenoss-users mailing list [email protected] http://lists.zenoss.org/mailman/listinfo/zenoss-users
