[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/12: gnu: Add hostscope.
From: |
guix-commits |
Subject: |
07/12: gnu: Add hostscope. |
Date: |
Fri, 28 May 2021 17:05:11 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 803be0975dbd31d16d75e6bc7154e8caa07cacb0
Author: Stefan Reichör <stefan@xsteve.at>
AuthorDate: Tue May 18 22:33:08 2021 +0200
gnu: Add hostscope.
* gnu/packages/monitoring.scm (hostscope): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/monitoring.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/monitoring.scm b/gnu/packages/monitoring.scm
index 22b02a5..f0a25e5 100644
--- a/gnu/packages/monitoring.scm
+++ b/gnu/packages/monitoring.scm
@@ -8,6 +8,7 @@
;;; Copyright © 2020 Alex ter Weele <alex.ter.weele@gmail.com>
;;; Copyright © 2020 Lars-Dominik Braun <ldb@leibniz-psychology.org>
;;; Copyright © 2021 Marius Bakke <marius@gnu.org>
+;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -622,3 +623,29 @@ future system load (i.e., capacity planning).")
;; license:gpl2 for other plugins
(license (list license:expat license:gpl2))))
+(define-public hostscope
+ (package
+ (name "hostscope")
+ (version "8.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://www.maier-komor.de/hostscope/hostscope-V"
+ version ".tgz"))
+ (sha256
+ (base32
+ "0jw6yij8va0f292g4xkf9lp9sxkzfgv67ajw49g3vq42q47ld7cv"))))
+ (build-system gnu-build-system)
+ (inputs `(("ncurses" ,ncurses)))
+ (arguments '(#:tests? #f)) ;; No included tests.
+ (home-page "http://www.maier-komor.de/hostscope.html")
+ (synopsis
+ "System monitoring tool for multiple hosts")
+ (description
+ "HostScope displays key system metrics of Linux hosts, such as detailed
+CPU load, speed and temperature, I/O rates of network interfaces, I/O rates of
+disks, and user process summary information. All metrics are multicast on the
+LAN, if wanted, and clients can switch between multiple hosts on the network.
+Hostscope features a bridge to Influx DB. So Grafana can be used to visualize
+the recorded data over time.")
+ (license license:gpl3+)))
- branch master updated (b1ae0f3 -> cefa260), guix-commits, 2021/05/28
- 01/12: guix package: Do not warn about "missing arguments" when there's nothing to do., guix-commits, 2021/05/28
- 09/12: gnu-maintenance: 'generic-html' correctly handles relative release URLs., guix-commits, 2021/05/28
- 03/12: guix build: Emit "nothing to do" warning only when needed., guix-commits, 2021/05/28
- 12/12: gnu: xjobs: Add 'release-monitoring-url' property., guix-commits, 2021/05/28
- 07/12: gnu: Add hostscope.,
guix-commits <=
- 10/12: gnu: hostscope: Add 'release-monitoring-url' property., guix-commits, 2021/05/28
- 02/12: doc: Spell out the implications of disabling substitutes., guix-commits, 2021/05/28
- 06/12: gnu: Add mbuffer., guix-commits, 2021/05/28
- 11/12: gnu: Add xjobs., guix-commits, 2021/05/28
- 08/12: gnu-maintenance: 'release-file?' accepts 'v' prefix as in "PKG-v1.2.tgz"., guix-commits, 2021/05/28
- 05/12: gnu: ipopt: Update to 3.13.4, guix-commits, 2021/05/28
- 04/12: gnu: Add cbc., guix-commits, 2021/05/28