object store that aims to implement a superset of Amazon's S3
service as well as the OpenStack Object Storage ("Swift") API.
+%package -n cephfs-top
+Summary: top(1) like utility for Ceph Filesystem
+BuildArch: noarch
+Requires: python%{python3_pkgversion}-rados
+%description -n cephfs-top
+This package provides a top(1) like utility to display Ceph Filesystem metrics
+in realtime.
+
%if %{with ocf}
%package resource-agents
Summary: OCF-compliant resource agents for Ceph daemons
%{_bindir}/cephfs-shell
%endif
+%files -n cephfs-top
+%{python3_sitelib}/cephfs_top-*.egg-info
+%{_bindir}/cephfs-top
+%{_mandir}/man8/cephfs-top.8*
+
%if 0%{with ceph_test_package}
%files -n ceph-test
%{_bindir}/ceph-client-debug
--- /dev/null
+usr/bin/cephfs-top
+usr/lib/python3*/dist-packages/cephfs_top-*.egg-info
.
This package contains a CLI for interacting with the CephFS.
+Package: cephfs-top
+Architecture: all
+Depends: ${misc:Depends}
+ ${python3:Depends}
+Description: This package provides a top(1) like utility to display various
+ filesystem metrics in realtime.
+ .
+ This package contains utility for displaying filesystem metrics.
+
Package: ceph-grafana-dashboards
Architecture: all
Description: grafana dashboards for the ceph dashboard
dh_python3 -p python3-ceph-argparse
dh_python3 -p python3-ceph-common
dh_python3 -p cephfs-shell
+ dh_python3 -p cephfs-top
dh_python3 -p cephadm
# do not run tests
add_tox_test(cephfs-shell)
endif()
endif()
+
+option(WITH_CEPHFS_TOP "install cephfs-top utility" ON)
+if(WITH_CEPHFS_TOP)
+ add_subdirectory(top)
+endif()