Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master binary grimoire by Vlad Glagolev (ef7448ea77dd25f3be4a204bf84d3eb0750fc0fa)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
  • Subject: [[SM-Commit] ] GIT changes to master binary grimoire by Vlad Glagolev (ef7448ea77dd25f3be4a204bf84d3eb0750fc0fa)
  • Date: Wed, 2 Apr 2025 04:41:49 +0000

GIT changes to master binary grimoire by Vlad Glagolev
<stealth AT sourcemage.org>:

ChangeLog | 2 +
bin-net/beszel-bin/BUILD | 2 +
bin-net/beszel-bin/DEPENDS | 3 +
bin-net/beszel-bin/DETAILS | 35 +++++++++++++++++++++
bin-net/beszel-bin/HISTORY | 2 +
bin-net/beszel-bin/INSTALL | 9 +++++
bin-net/beszel-bin/PRE_BUILD | 5 +++
bin-net/beszel-bin/init.d/beszel | 41 +++++++++++++++++++++++++
bin-net/beszel-bin/init.d/beszel-agent | 45
++++++++++++++++++++++++++++
bin-net/beszel-bin/init.d/beszel-agent.conf | 10 ++++++
bin-net/beszel-bin/init.d/beszel.conf | 3 +
11 files changed, 157 insertions(+)

New commits:
commit ef7448ea77dd25f3be4a204bf84d3eb0750fc0fa
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

beszel-bin: new spell, lightweight server monitoring hub with historical
data, Docker stats, and alerts

diff --git a/ChangeLog b/ChangeLog
index 3533ead..00f40ea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,6 @@
2025-04-01 Vlad Glagolev <stealth AT sourcemage.org>
+ * bin-net/beszel-bin: new spell, lightweight server monitoring hub
with
+ historical data, Docker stats, and alerts
* accounts, groups: add beszel, beszel-account

2024-08-21 Vlad Glagolev <stealth AT sourcemage.org>
diff --git a/bin-net/beszel-bin/BUILD b/bin-net/beszel-bin/BUILD
new file mode 100755
index 0000000..0874398
--- /dev/null
+++ b/bin-net/beszel-bin/BUILD
@@ -0,0 +1,2 @@
+create_account beszel /var/lib/beszel &&
+create_account beszel-agent
diff --git a/bin-net/beszel-bin/DEPENDS b/bin-net/beszel-bin/DEPENDS
new file mode 100755
index 0000000..b0d017a
--- /dev/null
+++ b/bin-net/beszel-bin/DEPENDS
@@ -0,0 +1,3 @@
+depends curl &&
+# for syslog logging
+depends util-linux
diff --git a/bin-net/beszel-bin/DETAILS b/bin-net/beszel-bin/DETAILS
new file mode 100755
index 0000000..8a2aa3e
--- /dev/null
+++ b/bin-net/beszel-bin/DETAILS
@@ -0,0 +1,35 @@
+ SPELL=beszel-bin
+ SPELLX=${SPELL/-bin/}
+ VERSION=0.10.2
+ ARCH=amd64
+ SOURCE=${SPELLX}_linux_${ARCH}-${VERSION}.tar.gz
+ SOURCE2=${SPELLX}-agent_linux_${ARCH}-${VERSION}.tar.gz
+
SOURCE_URL[0]=https://github.com/henrygd/${SPELLX}/releases/download/v${VERSION}/${SPELLX}_linux_${ARCH}.tar.gz
+
SOURCE2_URL[0]=https://github.com/henrygd/${SPELLX}/releases/download/v${VERSION}/${SPELLX}-agent_linux_${ARCH}.tar.gz
+
SOURCE_HASH=sha256:ba0abea66a9716b3e8c42c4d35d5ec6fe8c53a6d7a88391efdc3a1babe7b5154:UPSTREAM_HASH
+
SOURCE2_HASH=sha256:2a20d2753390cb974f857e2cbede73f26196fdb00843cdffd88b6ad385fea9f3:UPSTREAM_HASH
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
+ GATHER_DOCS=off
+ WEB_SITE=https://beszel.dev/
+ LICENSE[0]=MIT
+ ENTERED=20250401
+ KEYWORDS="monitoring"
+ SHORT="lightweight server monitoring hub with historical data,
Docker stats, and alerts"
+cat << EOF
+Beszel is a lightweight server monitoring platform that includes Docker
+statistics, historical data, and alert functions.
+
+It has a friendly web interface, simple configuration, and is ready to use
out
+of the box. It supports automatic backup, multi-user, OAuth authentication,
+and API access.
+
+Features:
+ o Lightweight: Smaller and less resource-intensive than leading solutions.
+ o Simple: Easy setup, no need for public internet exposure.
+ o Docker stats: Tracks CPU, memory, and network usage history for each
container.
+ o Alerts: Configurable alerts for CPU, memory, disk, bandwidth,
temperature, and status.
+ o Multi-user: Users manage their own systems. Admins can share systems
across users.
+ o OAuth / OIDC: Supports many OAuth2 providers. Password auth can be
disabled.
+ o Automatic backups: Save and restore data from disk or S3-compatible
storage.
+ o REST API: Use or update your data in your own scripts and applications.
+EOF
diff --git a/bin-net/beszel-bin/HISTORY b/bin-net/beszel-bin/HISTORY
new file mode 100644
index 0000000..d8c4447
--- /dev/null
+++ b/bin-net/beszel-bin/HISTORY
@@ -0,0 +1,2 @@
+2025-03-30 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, {PRE_,}BUILD, INSTALL, init.d: created spell, version
0.10.2
diff --git a/bin-net/beszel-bin/INSTALL b/bin-net/beszel-bin/INSTALL
new file mode 100755
index 0000000..184070a
--- /dev/null
+++ b/bin-net/beszel-bin/INSTALL
@@ -0,0 +1,9 @@
+for bin in beszel beszel-agent; do
+ install -vm 755 "$bin" "${INSTALL_ROOT}/usr/bin/$bin"
+done &&
+
+local home_dir="${INSTALL_ROOT}/var/lib/${SPELLX}" &&
+
+if list_find "$INIT_INSTALLED" "beszel" && [ ! -d "${home_dir}" ]; then
+ install -vm 750 -o beszel -g beszel -d "${home_dir}"
+fi
diff --git a/bin-net/beszel-bin/PRE_BUILD b/bin-net/beszel-bin/PRE_BUILD
new file mode 100755
index 0000000..bfe9686
--- /dev/null
+++ b/bin-net/beszel-bin/PRE_BUILD
@@ -0,0 +1,5 @@
+mk_source_dir "${SOURCE_DIRECTORY}" &&
+cd "${SOURCE_DIRECTORY}" &&
+
+unpack_file &&
+unpack_file 2
diff --git a/bin-net/beszel-bin/init.d/beszel
b/bin-net/beszel-bin/init.d/beszel
new file mode 100755
index 0000000..d7508bf
--- /dev/null
+++ b/bin-net/beszel-bin/init.d/beszel
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+. /etc/sysconfig/beszel
+
+PROGRAM=/usr/bin/beszel
+ARGS="serve $BESZEL_ARGS"
+RUNLEVEL=3
+NEEDS="+network"
+
+start() {
+ echo "Starting $NAME..."
+
+ getpids $PROGRAM
+
+ if [ -n "$pidlist" ]; then
+ $SET_WCOL
+ print_status warning running
+ exit 0
+ fi
+
+ TIMEOUT=3
+
+ su beszel -s /bin/sh -c "set -o pipefail; exec 2>/dev/null; $PROGRAM $ARGS
2>&1 | logger -ip daemon.info -t beszel" &
+ ppid=$!
+
+ sleep $TIMEOUT && pgrep -P $ppid > /dev/null || wait $ppid
+
+ evaluate_retval
+}
+
+stop() {
+ echo "Stopping $NAME..."
+
+ killproc "beszel serve"
+}
+
+reload() {
+ _restart
+}
+
+. /etc/init.d/smgl_init
diff --git a/bin-net/beszel-bin/init.d/beszel-agent
b/bin-net/beszel-bin/init.d/beszel-agent
new file mode 100755
index 0000000..8770844
--- /dev/null
+++ b/bin-net/beszel-bin/init.d/beszel-agent
@@ -0,0 +1,45 @@
+#!/bin/bash
+
+. /etc/sysconfig/beszel-agent
+
+PROGRAM=/usr/bin/beszel-agent
+ARGS="$BESZEL_AGENT_ARGS"
+RUNLEVEL=3
+NEEDS="+network"
+
+start() {
+ echo "Starting $NAME..."
+
+ getpids $PROGRAM
+
+ if [ -n "$pidlist" ]; then
+ $SET_WCOL
+ print_status warning running
+ exit 0
+ fi
+
+ TIMEOUT=3
+
+ [ -n "$LISTEN" ] && export LISTEN="$LISTEN"
+ [ -n "$KEY" ] && export KEY="$KEY"
+ [ -n "$EXTRA_FILESYSTEMS" ] && export
EXTRA_FILESYSTEMS="$EXTRA_FILESYSTEMS"
+
+ su beszel-agent -s /bin/sh -c "set -o pipefail; exec 2>/dev/null; $PROGRAM
$ARGS 2>&1 | logger -ip daemon.info -t beszel-agent" &
+ ppid=$!
+
+ sleep $TIMEOUT && pgrep -P $ppid > /dev/null || wait $ppid
+
+ evaluate_retval
+}
+
+stop() {
+ echo "Stopping $NAME..."
+
+ killproc "beszel-agent"
+}
+
+reload() {
+ _restart
+}
+
+. /etc/init.d/smgl_init
diff --git a/bin-net/beszel-bin/init.d/beszel-agent.conf
b/bin-net/beszel-bin/init.d/beszel-agent.conf
new file mode 100644
index 0000000..ddac5e1
--- /dev/null
+++ b/bin-net/beszel-bin/init.d/beszel-agent.conf
@@ -0,0 +1,10 @@
+# For the arguments and description see ``beszel-agent help''
+BESZEL_AGENT_ARGS=""
+
+# Beszel agent requires ssh key from Beszel hub to run.
+# Without KEY enviroment variable, the agent won't run.
+KEY=""
+# Beszel agent runner port, default is 45876
+LISTEN="45876"
+# Extra filesystems to monitor
+EXTRA_FILESYSTEMS=""
diff --git a/bin-net/beszel-bin/init.d/beszel.conf
b/bin-net/beszel-bin/init.d/beszel.conf
new file mode 100644
index 0000000..4e208e8
--- /dev/null
+++ b/bin-net/beszel-bin/init.d/beszel.conf
@@ -0,0 +1,3 @@
+# For the arguments and description see ``beszel serve --help''
+
+BESZEL_ARGS="--dir /var/lib/beszel --http 127.0.0.1:8090"


  • [[SM-Commit] ] GIT changes to master binary grimoire by Vlad Glagolev (ef7448ea77dd25f3be4a204bf84d3eb0750fc0fa), Vlad Glagolev, 04/02/2025

Archive powered by MHonArc 2.6.24.

Top of Page