diff options
author | Arthur de Kerhor <arthurdekerhor@gmail.com> | 2021-03-03 08:49:15 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-03-24 12:16:43 +0000 |
commit | 1f13f8fd8a5f5f68e6e03825115c64383f17a1b5 (patch) | |
tree | 966eb8209ed495c3a544aeaa32f223f5e67214ae /Makefile | |
parent | 4d2726ece83f391a7cadb1314415ef23104f9ffe (diff) |
misc: fuse fs for the stats segment
This extra allows to mount a FUSE filesystem reflecting
the state of the stats segment.
Type: feature
Signed-off-by: Arthur de Kerhor <arthurdekerhor@gmail.com>
Change-Id: I692f9ca5a65c1123b3cf28c761455eec36049791
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -218,6 +218,7 @@ help: @echo " docs - Build the Sphinx documentation" @echo " docs-venv - Build the virtual environment for the Sphinx docs" @echo " docs-clean - Remove the generated files from the Sphinx docs" + @echo " stats-fs-help - Help to build the stats segment file system" @echo "" @echo "Make Arguments:" @echo " V=[0|1] - set build verbosity level" @@ -657,6 +658,33 @@ featurelist: centos-pyyaml checkfeaturelist: centos-pyyaml @build-root/scripts/fts.py --validate --all + +# Build vpp_stats_fs + +.PHONY: stats-fs-install +stats-fs-install: + @extras/vpp_stats_fs/install.sh install + +.PHONY: stats-fs-start +stats-fs-start: + @extras/vpp_stats_fs/install.sh start + +.PHONY: stats-fs-cleanup +stats-fs-cleanup: + @extras/vpp_stats_fs/install.sh cleanup + +.PHONY: stats-fs-help +stats-fs-help: + @extras/vpp_stats_fs/install.sh help + +.PHONY: stats-fs-force-unmount +stats-fs-force-unmount: + @extras/vpp_stats_fs/install.sh unmount + +.PHONY: stats-fs-stop +stats-fs-stop: + @extras/vpp_stats_fs/install.sh stop + # # Build the documentation # |