diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2009-05-11 17:38:33 +0200 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2009-05-11 17:38:33 +0200 |
commit | 8e430258fdc9b0577ea8e54dae21cc5942f90104 (patch) | |
tree | c24a069a78c960334d2d54b5bcbde7be26a08ea1 /action.h | |
parent | 9823c73d1d07e50e6bec7f7c02c88d61d6955526 (diff) | |
download | rsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.tar.gz rsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.tar.xz rsyslog-8e430258fdc9b0577ea8e54dae21cc5942f90104.zip |
added capability to draw configuration graphs
- added $GenerateConfigGraph configuration command which can be used
to generate nice-looking (and very informative) rsyslog configuration
graphs.
- added $ActionName configuration directive (currently only used for
graph generation, but may find other uses)
Diffstat (limited to 'action.h')
-rw-r--r-- | action.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -72,6 +72,7 @@ struct action_s { */ qqueue_t *pQueue; /* action queue */ SYNC_OBJ_TOOL; /* required for mutex support */ + uchar *pszName; /* action name (for documentation) */ pthread_mutex_t mutActExec; /* mutex to guard actual execution of doAction for single-threaded modules */ }; typedef struct action_s action_t; |