mirror of
https://github.com/tteck/Proxmox.git
synced 2025-02-15 06:09:15 +01:00
Add new LXC: Scrutiny
This commit is contained in:
parent
be8dbcc094
commit
550e110fbc
2 changed files with 353 additions and 0 deletions
164
install/scrutiny-install.sh
Normal file
164
install/scrutiny-install.sh
Normal file
|
@ -0,0 +1,164 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright (c) 2021-2024 tteck
|
||||
# Author: tteck
|
||||
# Co-Author: MickLesk (Canbiz)
|
||||
# License: MIT
|
||||
# https://github.com/tteck/Proxmox/raw/main/LICENSE
|
||||
# Source: https://github.com/AnalogJ/scrutiny
|
||||
|
||||
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
||||
color
|
||||
verb_ip6
|
||||
catch_errors
|
||||
setting_up_container
|
||||
network_check
|
||||
update_os
|
||||
|
||||
msg_info "Installing Dependencies"
|
||||
$STD apt-get install -y \
|
||||
sudo \
|
||||
curl \
|
||||
smartmontools \
|
||||
make \
|
||||
mc
|
||||
msg_ok "Installed Dependencies"
|
||||
|
||||
msg_info "Installing Scrutiny WebApp"
|
||||
mkdir -p /opt/scrutiny/config
|
||||
mkdir -p /opt/scrutiny/web
|
||||
mkdir -p /opt/scrutiny/bin
|
||||
RELEASE=$(curl -s https://api.github.com/repos/analogj/scrutiny/releases/latest | grep "tag_name" | awk '{print substr($2, 2, length($2)-3) }')
|
||||
echo "${RELEASE}" >/opt/scrutiny_version.txt
|
||||
wget -q -O /opt/scrutiny/bin/scrutiny-web-linux-amd64 "https://github.com/AnalogJ/scrutiny/releases/download/${RELEASE}/scrutiny-web-linux-amd64"
|
||||
wget -q -O /opt/scrutiny/web/scrutiny-web-frontend.tar.gz "https://github.com/AnalogJ/scrutiny/releases/download/${RELEASE}/scrutiny-web-frontend.tar.gz"
|
||||
cd /opt/scrutiny/web && tar xzf scrutiny-web-frontend.tar.gz --strip-components 1 -C .
|
||||
chmod +x /opt/scrutiny/bin/scrutiny-web-linux-amd64
|
||||
msg_ok "Installed Scrutiny WebApp"
|
||||
|
||||
msg_info "Installing Scrutiny Collector"
|
||||
wget -q -O /opt/scrutiny/bin/scrutiny-collector-metrics-linux-amd64 "https://github.com/AnalogJ/scrutiny/releases/download/${RELEASE}/scrutiny-collector-metrics-linux-amd64"
|
||||
chmod +x /opt/scrutiny/bin/scrutiny-collector-metrics-linux-amd64
|
||||
msg_ok "Installed Scrutiny Collector"
|
||||
|
||||
DEFAULT_HOST="127.0.0.1"
|
||||
DEFAULT_PORT="8086"
|
||||
DEFAULT_TOKEN="my-token"
|
||||
DEFAULT_ORG="my-org"
|
||||
DEFAULT_BUCKET="bucket"
|
||||
|
||||
# Prompt the user for input
|
||||
read -r -p "Enter InfluxDB Host/IP [$DEFAULT_HOST]: " HOST
|
||||
HOST=${HOST:-$DEFAULT_HOST}
|
||||
|
||||
read -r -p "Enter InfluxDB Port [$DEFAULT_PORT]: " PORT
|
||||
PORT=${PORT:-$DEFAULT_PORT}
|
||||
|
||||
read -r -p "Enter InfluxDB Token [$DEFAULT_TOKEN]: " TOKEN
|
||||
TOKEN=${TOKEN:-$DEFAULT_TOKEN}
|
||||
|
||||
read -r -p "Enter InfluxDB Organization [$DEFAULT_ORG]: " ORG
|
||||
ORG=${ORG:-$DEFAULT_ORG}
|
||||
|
||||
read -r -p "Enter InfluxDB Bucket [$DEFAULT_BUCKET]: " BUCKET
|
||||
BUCKET=${BUCKET:-$DEFAULT_BUCKET}
|
||||
|
||||
msg_info "Setup InfluxDB-Connection"
|
||||
cat << EOF >/opt/scrutiny/config/scrutiny.yaml
|
||||
version: 1
|
||||
web:
|
||||
listen:
|
||||
port: 8080
|
||||
host: 0.0.0.0
|
||||
|
||||
database:
|
||||
location: /opt/scrutiny/config/scrutiny.db
|
||||
src:
|
||||
frontend:
|
||||
path: /opt/scrutiny/web
|
||||
|
||||
influxdb:
|
||||
host: $HOST
|
||||
port: $PORT
|
||||
token: '$TOKEN'
|
||||
org: '$ORG'
|
||||
bucket: '$BUCKET'
|
||||
retention_policy: true
|
||||
# tls:
|
||||
# insecure_skip_verify: false
|
||||
|
||||
log:
|
||||
file: '' #absolute or relative paths allowed, eg. web.log
|
||||
level: INFO
|
||||
EOF
|
||||
msg_ok "Setup InfluxDB-Connection"
|
||||
|
||||
SCRUTINY_OPTION="1"
|
||||
read -r -p "Choose an option:
|
||||
1) Start Scrutiny with GUI
|
||||
2) Start Scrutiny Collector only
|
||||
Enter your choice (1/2): " SCRUTINY_OPTION
|
||||
|
||||
if [[ $SCRUTINY_OPTION == "1" ]]; then
|
||||
cat <<EOF >/etc/systemd/system/scrutiny.service
|
||||
[Unit]
|
||||
Description=Scrutiny - Hard Drive Monitoring and Webapp
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/opt/scrutiny/bin/scrutiny-web-linux-amd64 start --config /opt/scrutiny/config/scrutiny.yaml
|
||||
Restart=always
|
||||
User=root
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
systemctl enable -q --now scrutiny.service
|
||||
msg_ok "Created and enabled Scrutiny Webapp service"
|
||||
|
||||
elif [[ $SCRUTINY_OPTION == "2" ]]; then
|
||||
cat <<EOF >/etc/systemd/system/scrutiny_collector.service
|
||||
[Unit]
|
||||
Description=Scrutiny Collector - Collect Metrics
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/opt/scrutiny/bin/scrutiny-collector-metrics-linux-amd64 run --api-endpoint "http://localhost:8080"
|
||||
Restart=always
|
||||
User=root
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
systemctl enable -q --now scrutiny_collector.service
|
||||
msg_ok "Created and enabled Scrutiny Collector service"
|
||||
|
||||
else
|
||||
msg_error "Invalid option selected. Starting Scrutiny with GUI by default."
|
||||
cat <<EOF >/etc/systemd/system/scrutiny.service
|
||||
[Unit]
|
||||
Description=Scrutiny - Hard Drive Monitoring and Webapp
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
ExecStart=/opt/scrutiny/bin/scrutiny-web-linux-amd64 start --config /opt/scrutiny/config/scrutiny.yaml
|
||||
Restart=always
|
||||
User=root
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOF
|
||||
systemctl enable -q --now scrutiny.service
|
||||
msg_ok "Created and enabled Scrutiny Webapp service (default option)"
|
||||
fi
|
||||
|
||||
motd_ssh
|
||||
customize
|
||||
|
||||
msg_info "Cleaning up"
|
||||
$STD apt-get -y autoremove
|
||||
$STD apt-get -y autoclean
|
||||
msg_ok "Cleaned"
|
Loading…
Add table
Add a link
Reference in a new issue