forked from pool/health-check
- Update to version 0.03.09: * net: don't throw warning messages when /proc file can't be opened OBS-URL: https://build.opensuse.org/request/show/824369 OBS-URL: https://build.opensuse.org/package/show/server:monitoring/health-check?expand=0&rev=23
69 lines
2.0 KiB
RPMSpec
69 lines
2.0 KiB
RPMSpec
#
|
|
# spec file for package health-check
|
|
#
|
|
# Copyright (c) 2020 SUSE LLC
|
|
# Copyright (c) 2017, Martin Hauke <mardnh@gmx.de>
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: health-check
|
|
Version: 0.03.09
|
|
Release: 0
|
|
Summary: Process monitoring tool
|
|
License: GPL-2.0-or-later
|
|
Group: System/Monitoring
|
|
URL: https://kernel.ubuntu.com/~cking/health-check
|
|
Source: https://kernel.ubuntu.com/~cking/tarballs/%{name}/%{name}-%{version}.tar.gz
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: pkgconfig(json-c)
|
|
BuildRequires: pkgconfig(libbsd)
|
|
|
|
%description
|
|
Health-check monitors processes and optionally their child
|
|
processes and threads for a given amount of time. At the end
|
|
of the monitoring it will display the CPU time used, wakeup
|
|
events generated and I/O operations of the given processes.
|
|
It can be used to diagnose unhealthy bad processes.
|
|
|
|
%package bash-completion
|
|
Summary: Bash Completion for %{name}
|
|
Group: System/Benchmark
|
|
Requires: %{name} = %{version}
|
|
Requires: bash-completion
|
|
Supplements: (health-check and bash-completion)
|
|
BuildArch: noarch
|
|
|
|
%description bash-completion
|
|
Bash completion script for %{name}.
|
|
|
|
%prep
|
|
%setup -q
|
|
|
|
%build
|
|
export CFLAGS="%{optflags}"
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%files
|
|
%license COPYING
|
|
%{_bindir}/health-check
|
|
%{_mandir}/man8/health-check.8%{?ext_man}
|
|
|
|
%files bash-completion
|
|
%{_datadir}/bash-completion/completions/%{name}
|
|
|
|
%changelog
|