mirror of
https://github.com/clearlinux/telemetrics-client.git
synced 2026-08-28 21:35:39 +00:00
f81e4c7fba
This change adds a daemon that handles telemetry record retention, record reporting, and record limiting policies. This new daemon receives records in a folder that is monitored by inotify. Signed-off-by: Alex Jaramillo <alex.v.jaramillo@intel.com>
25 lines
558 B
Makefile
25 lines
558 B
Makefile
MANPAGES = \
|
|
docs/man/telemctl.1 \
|
|
docs/man/telemprobd.1 \
|
|
docs/man/telempostd.1 \
|
|
docs/man/telem-record-gen.1 \
|
|
docs/man/telemetry.3 \
|
|
docs/man/telemetrics.conf.5
|
|
|
|
MANLINKS = \
|
|
docs/man/tm_create_record.3 \
|
|
docs/man/tm_send_record.3 \
|
|
docs/man/tm_set_config_file.3 \
|
|
docs/man/tm_set_payload.3
|
|
|
|
manpages:
|
|
for MANPAGE in $(MANPAGES); do \
|
|
rst2man.py $${MANPAGE}.rst > $${MANPAGE}; \
|
|
rst2html.py $${MANPAGE}.rst > $${MANPAGE}.html; \
|
|
done
|
|
|
|
dist_man_MANS = \
|
|
$(MANPAGES) $(MANLINKS)
|
|
|
|
# vim: filetype=automake tabstop=8 shiftwidth=8 noexpandtab
|