Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Ensure status text in Windows svcs test updated git-svn-id: http://svn.code.sf.net/p/xymon/code/branches/4.3.19@7616 44351d6e-118b-4698-b696-ce33095ecaa4 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | origin/4.3.19 |
Files: | files | file ages | folders |
SHA3-256: |
dba9139ebad140beffd482cf87108257 |
User & Date: | jccleaver@users.sf.net 2015-03-25 03:47:47 |
Context
2015-03-25
| ||
07:04 | Changelog/RELEASENOTES/CREDITS for 4.3.19 (rc1) git-svn-id: http://svn.code.sf.net/p/xymon/code/branches/4.3.19@7617 44351d6e-118b-4698-b696-ce33095ecaa4 check-in: 001ecb4d01 user: jccleaver@users.sf.net tags: trunk, origin/4.3.19 | |
03:47 | Ensure status text in Windows svcs test updated git-svn-id: http://svn.code.sf.net/p/xymon/code/branches/4.3.19@7616 44351d6e-118b-4698-b696-ce33095ecaa4 check-in: dba9139eba user: jccleaver@users.sf.net tags: trunk, origin/4.3.19 | |
2015-03-24
| ||
01:34 | logfetch should send final lines in low-maxbytes, multi-trigger situations, not first lines after last trigger. Add more verbose debugging. git-svn-id: http://svn.code.sf.net/p/xymon/code/branches/4.3.19@7614 44351d6e-118b-4698-b696-ce33095ecaa4 check-in: 9ad9c6d449 user: jccleaver@users.sf.net tags: trunk, origin/4.3.19 | |
Changes
Changes to xymond/client_config.c.
3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 |
if ((*uplim != -1) && (*count > *uplim)) *color = (*walk)->rule->rule.port.color; *trackit = ((*walk)->rule->flags & CHK_TRACKIT); *id = (*walk)->rule->rrdidstr; if (group) *group = (*walk)->rule->groups; break; case C_SVC: result = (*walk)->rule->statustext; if (!result) { int sz = 1024; char *p; /* Current state */ if ((*walk)->rule->rule.svc.svcname) sz += strlen((*walk)->rule->rule.svc.svcname) + 10; |
> | |
3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 |
if ((*uplim != -1) && (*count > *uplim)) *color = (*walk)->rule->rule.port.color; *trackit = ((*walk)->rule->flags & CHK_TRACKIT); *id = (*walk)->rule->rrdidstr; if (group) *group = (*walk)->rule->groups; break; case C_SVC: /* Have to clear this each time since it contains current state */ // result = (*walk)->rule->statustext; if (!result) { int sz = 1024; char *p; /* Current state */ if ((*walk)->rule->rule.svc.svcname) sz += strlen((*walk)->rule->rule.svc.svcname) + 10; |