├── .gitignore ├── Makefile.am ├── README ├── TODO ├── action.c ├── array.h ├── autogen.sh ├── cache.c ├── compat ├── asprintf.c ├── daemon.c ├── queue.h ├── strlcat.c ├── strlcpy.c ├── strtonum.c └── tree.h ├── configure.ac ├── context.c ├── event-inotify.c ├── event-kqueue.c ├── event-linux.c ├── examples ├── brandini.conf ├── logfmon-freebsd.conf └── logfmon-openbsd.conf ├── file.c ├── getln.c ├── lex.c ├── log.c ├── logfmon.8 ├── logfmon.c ├── logfmon.conf.5 ├── logfmon.h ├── parse.y ├── rules.c ├── threads.c └── xmalloc.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/TODO -------------------------------------------------------------------------------- /action.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/action.c -------------------------------------------------------------------------------- /array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/array.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/autogen.sh -------------------------------------------------------------------------------- /cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/cache.c -------------------------------------------------------------------------------- /compat/asprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/compat/asprintf.c -------------------------------------------------------------------------------- /compat/daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/compat/daemon.c -------------------------------------------------------------------------------- /compat/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/compat/queue.h -------------------------------------------------------------------------------- /compat/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/compat/strlcat.c -------------------------------------------------------------------------------- /compat/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/compat/strlcpy.c -------------------------------------------------------------------------------- /compat/strtonum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/compat/strtonum.c -------------------------------------------------------------------------------- /compat/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/compat/tree.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/configure.ac -------------------------------------------------------------------------------- /context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/context.c -------------------------------------------------------------------------------- /event-inotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/event-inotify.c -------------------------------------------------------------------------------- /event-kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/event-kqueue.c -------------------------------------------------------------------------------- /event-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/event-linux.c -------------------------------------------------------------------------------- /examples/brandini.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/examples/brandini.conf -------------------------------------------------------------------------------- /examples/logfmon-freebsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/examples/logfmon-freebsd.conf -------------------------------------------------------------------------------- /examples/logfmon-openbsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/examples/logfmon-openbsd.conf -------------------------------------------------------------------------------- /file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/file.c -------------------------------------------------------------------------------- /getln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/getln.c -------------------------------------------------------------------------------- /lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/lex.c -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/log.c -------------------------------------------------------------------------------- /logfmon.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/logfmon.8 -------------------------------------------------------------------------------- /logfmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/logfmon.c -------------------------------------------------------------------------------- /logfmon.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/logfmon.conf.5 -------------------------------------------------------------------------------- /logfmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/logfmon.h -------------------------------------------------------------------------------- /parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/parse.y -------------------------------------------------------------------------------- /rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/rules.c -------------------------------------------------------------------------------- /threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/threads.c -------------------------------------------------------------------------------- /xmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicm/logfmon/HEAD/xmalloc.c --------------------------------------------------------------------------------