From e6b58c28270ef317d68308edbadecbb598009e36 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sun, 22 Jun 2008 10:34:24 +0200 Subject: [PATCH] src/rrdd.pod: Add a simple manpage stub for rrdd(1). --- src/Makefile.am | 4 ++++ src/rrdd.pod | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 src/rrdd.pod diff --git a/src/Makefile.am b/src/Makefile.am index 9c670f1..2fce8ad 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,3 +12,7 @@ rrdc_LDADD = librrdc.la rrdd_SOURCES = rrdd.c rrdd.h rrdd_LDADD = -lavl -lrrd_th +all-local: rrdd.1 + +%.1: %.pod + pod2man --release=$(VERSION) --center=rrdd $< >$@ diff --git a/src/rrdd.pod b/src/rrdd.pod new file mode 100644 index 0000000..0aa2349 --- /dev/null +++ b/src/rrdd.pod @@ -0,0 +1,41 @@ +=pod + +=head1 NAME + +RRDd - Data caching daemon for rrdtool + +=head1 SYNOPSIS + + rrdd + +=head1 DESCRIPTION + +RRDd is a daemon that receives updates to existing RRD files, accumulates them +and, if enough have been received or a defined time has passed, writes the +updates to the RRD file. A I command may be used to force writing of +values to disk, so that graphing facilities and similar can work with +up-to-date data. + +=head1 OPTIONS + +None at the moment. + +=head1 BUGS + +=over 4 + +=item + +Runs into some assertion when the socket is closed by the client before the +response has been received. + +=back + +=head1 SEE ALSO + +L, L + +=head1 AUHOR + +RRDd and this manual page have been written by Florian Forster +EoctoEatEverplant.orgE. -- 2.11.0