initial COM1 gateway system blueprint

This commit is contained in:
harald
2026-03-06 14:37:04 +00:00
commit 48cd0f8d3c
395 changed files with 29966 additions and 0 deletions

28
agents/json_homepage_agent.py Executable file
View File

@@ -0,0 +1,28 @@
#!/usr/bin/env python3
import json
import os
WORKSPACE = "/opt/hx-ki/workspaces/homepage"
FILE = os.path.join(WORKSPACE, "homepage.json")
os.makedirs(WORKSPACE, exist_ok=True)
content = {
"hero_title": "HX-KI Dynamischer JSON-Agent",
"hero_sub": "Content kommt aus dem Workspace auf Falkenstein kein Zugriff auf Gehirn oder Motor.",
"sections": [
{
"title": "Agent-Status",
"text": "Dieser JSON-Agent kann von Events, Cron, KI oder Mautic getriggert werden."
},
{
"title": "Architektur-Sicherheit",
"text": "Falkenstein liest nur den Workspace. Nürnberg & Helsinki bleiben intern."
}
]
}
with open(FILE, "w") as f:
json.dump(content, f, indent=2)
print(f"✔ homepage.json durch json_homepage_agent.py erzeugt/aktualisiert: {FILE}")

66
bin/hxki_birth_from_tresor.sh Executable file
View File

@@ -0,0 +1,66 @@
#!/usr/bin/env bash
set -euo pipefail
# Verzeichnis deines Inventar-Repos (lokal auf Falkenstein!)
INVENTORY_DIR="/opt/hx-ki/repos/hxki-inventory"
REPORT_DIR="/opt/hx-ki/reports"
mkdir -p "$REPORT_DIR"
TS="$(date +"%Y-%m-%d_%H%M%S")"
OUT="${REPORT_DIR}/HXKI_System_BirthCertificate_${TS}.txt"
{
echo "=== HXKI SYSTEM GEBURTSURKUNDE ==="
echo "Quelle: $INVENTORY_DIR"
echo "Zeitpunkt: $(date)"
echo
echo "1) Gesamtübersicht"
echo "------------------"
echo -n "Gesamtgröße des Tresors: "
du -sh "$INVENTORY_DIR" | awk '{print $1}'
echo -n "Anzahl Dateien gesamt: "
find "$INVENTORY_DIR" -type f | wc -l
echo
echo "2) Verzeichnisstruktur (Top-Level, Tiefe 2)"
echo "------------------------------------------"
find "$INVENTORY_DIR" -maxdepth 2 -type d | sed "s|$INVENTORY_DIR|.|"
echo
echo "3) Größte 20 Dateien im Tresor"
echo "------------------------------"
# benötigt GNU find (auf Ubuntu Standard)
find "$INVENTORY_DIR" -type f -printf '%s %p\n' \
| sort -nr \
| head -20 \
| awk '{printf "%10.1f MB %s\n", $1/1024/1024, $2}'
echo
echo "4) Inventar- und Log-Dateien (Auszug)"
echo "-------------------------------------"
INVENT_FILES=$(find "$INVENTORY_DIR" -type f \( -iname "*inventory*" -o -iname "*inventar*" -o -iname "*.log" \) | head -10)
if [ -z "$INVENT_FILES" ]; then
echo "Keine Inventar-/Log-Dateien gefunden."
else
for f in $INVENT_FILES; do
echo
echo "--- Datei: ${f#$INVENTORY_DIR/} ---"
echo "(erste 40 Zeilen)"
echo
sed -n '1,40p' "$f"
echo
done
fi
echo
echo "5) Zusammenfassung"
echo "------------------"
echo "Diese Geburtsurkunde beschreibt den Zustand des HX-KI Tresors"
echo "auf Falkenstein zum angegebenen Zeitpunkt (Größe, Struktur,"
echo "wichtigste Dateien und Inventarauszüge)."
echo
} > "$OUT"
echo "$OUT"

View File

@@ -0,0 +1,152 @@
#!/usr/bin/env bash
# ==========================================
# HX-KI FALKENSTEIN - BIRTH CERTIFICATE V1.0
# ==========================================
set -euo pipefail
# Basispfade
REPORT_DIR="/opt/hx-ki/reports"
mkdir -p "$REPORT_DIR"
TIMESTAMP="$(date +"%Y-%m-%d_%H%M%S")"
REPORT_FILE="${REPORT_DIR}/hxki_falkenstein_birth_certificate_${TIMESTAMP}.txt"
# Header
{
echo "==============================================="
echo " HX-KI SYSTEM GEBURTSURKUNDE FALKENSTEIN"
echo "==============================================="
echo "Erzeugt am: $(date)"
echo
} > "$REPORT_FILE"
# 1) Server-Basisdaten
{
echo "1) SERVER-BASISDATEN"
echo "--------------------"
echo "Hostname: $(hostname)"
echo "OS: $(grep PRETTY_NAME /etc/os-release | cut -d= -f2- | tr -d '\"')"
echo "Kernel: $(uname -r)"
echo "CPU: $(lscpu | grep 'Model name' | sed 's/Model name:\s*//')"
echo "CPU Cores: $(nproc)"
echo "RAM (gesamt): $(grep MemTotal /proc/meminfo | awk '{printf \"%.1f GB\", $2/1024/1024}')"
echo "Swap: $(grep SwapTotal /proc/meminfo | awk '{printf \"%.1f GB\", $2/1024/1024}')"
echo "Root-Filesystem: $(df -h / | tail -1 | awk '{print $2 \" gesamt, \" $3 \" belegt, \" $4 \" frei (\" $5 \" genutzt)\"}')"
echo
} >> "$REPORT_FILE"
# 2) Docker / Container / Services
{
echo "2) DOCKER & CONTAINERZUSTAND"
echo "----------------------------"
if command -v docker >/dev/null 2>&1; then
echo "Docker Version: $(docker --version)"
echo
echo "Laufende Container:"
docker ps --format "table {{.Names}}\t{{.Image}}\t{{.Status}}\t{{.Ports}}" || echo "Keine laufenden Container gefunden."
else
echo "Docker ist nicht installiert oder nicht im PATH."
fi
echo
} >> "$REPORT_FILE"
# 3) Wichtige HX-KI-Komponenten erkennen
{
echo "3) HX-KI KOMPONENTEN FALKENSTEIN"
echo "----------------------------------"
echo "Hinweis: Erkennung über Container-Namen (hxki-*)"
if command -v docker >/dev/null 2>&1; then
# Liste typischer Dienste
SERVICES=(
"hxki-gitea"
"hxki-grafana"
"hxki-prometheus"
"hxki-n8n"
"hxki-mariadb"
"hxki-mautic"
"hxki-syncthing"
"hxki-nats"
"hxki-web"
"hxki-postgres"
"hxki-mailcow"
)
for s in "${SERVICES[@]}"; do
if docker ps --format '{{.Names}}' | grep -q "^${s}$"; then
status="$(docker ps --filter "name=${s}" --format '{{.Status}}')"
image="$(docker ps --filter "name=${s}" --format '{{.Image}}')"
echo "- ${s}: LAUFEND (${status}, Image: ${image})"
elif docker ps -a --format '{{.Names}}' | grep -q "^${s}$"; then
status="$(docker ps -a --filter "name=${s}" --format '{{.Status}}')"
image="$(docker ps -a --filter "name=${s}" --format '{{.Image}}')"
echo "- ${s}: INSTALLIERT, ABER NICHT LAUFEND (${status}, Image: ${image})"
else
echo "- ${s}: NICHT GEFUNDEN"
fi
done
else
echo "Docker nicht verfügbar Komponenten können nicht geprüft werden."
fi
echo
} >> "$REPORT_FILE"
# 4) Netzwerke & Ports
{
echo "4) NETZWERK & PORTS"
echo "-------------------"
if command -v docker >/dev/null 2>&1; then
echo "Docker-Netzwerke:"
docker network ls || echo "Keine Netzwerke gefunden."
echo
fi
echo "Aktiv lauschende Ports (netstat/ss):"
if command -v ss >/dev/null 2>&1; then
ss -tulpn | sed -n '1,50p'
elif command -v netstat >/dev/null 2>&1; then
netstat -tulpn | sed -n '1,50p'
else
echo "Weder ss noch netstat verfügbar."
fi
echo
} >> "$REPORT_FILE"
# 5) HX-KI Verzeichnisstruktur (falls vorhanden)
{
echo "5) HX-KI VERZEICHNISSTRUKTUR (KURZÜBERSICHT)"
echo "--------------------------------------------"
HX_DIR="/opt/hx-ki"
if [ -d "$HX_DIR" ]; then
echo "Basisverzeichnis: $HX_DIR"
echo
echo "Top-Level-Struktur:"
find "$HX_DIR" -maxdepth 2 -type d | sed "s|$HX_DIR|/opt/hx-ki|"
else
echo "$HX_DIR existiert nicht oder ist nicht erreichbar."
fi
echo
} >> "$REPORT_FILE"
# 6) Zusammenfassung
{
echo "6) KURZZUSAMMENFASSUNG FALKENSTEIN STATUS"
echo "-------------------------------------------"
echo "Dieser Bericht fasst den aktuellen Systemzustand des HX-KI Knotens"
echo "Falkenstein zusammen (Serverressourcen, Container, Netzwerke, HX-KI"
echo "Kernkomponenten und Basisstruktur)."
echo
echo "Berichtsdatei:"
echo " $REPORT_FILE"
echo
echo "Hinweis:"
echo "- Dies ist die 'Geburtsurkunde' des Systemzustands zum Zeitpunkt:"
echo " $(date)"
echo "- Der Bericht kann jederzeit erneut erzeugt werden."
echo
} >> "$REPORT_FILE"
echo "HX-KI Geburtsurkunde für Falkenstein erstellt:"
echo " $REPORT_FILE"

57
bin/hxki_fix_host80.sh Executable file
View File

@@ -0,0 +1,57 @@
#!/usr/bin/env bash
set -euo pipefail
DOCKER_DIR="/opt/hx-ki/docker"
cd "$DOCKER_DIR"
echo "=> Backup docker-compose.yml ..."
cp docker-compose.yml docker-compose.yml.bak_host80_$(date +%Y%m%d_%H%M%S)
echo "=> Entferne NUR Host-Port-80-Mappings aus docker-compose.yml ..."
awk '
BEGIN {
in_ports = 0
ports_n = 0
}
{
line = $0
# Wenn wir gerade in einem ports:-Block sind
if (in_ports) {
if ($1 ~ /^-/) {
# Host-Port 80? Dann überspringen
if (line ~ /(^[[:space:]]*-[[:space:]]*"80:[0-9]+")|(^[[:space:]]*-[[:space:]]*80:[0-9]+)/) {
next
} else {
ports_buf[++ports_n] = line
next
}
} else {
# Ende des ports:-Blocks
in_ports = 0
if (ports_n > 0) {
print ports_header
for (i = 1; i <= ports_n; i++) print ports_buf[i]
}
ports_n = 0
# fällt jetzt durch und verarbeitet die aktuelle Zeile normal
}
}
# Neuer ports:-Block
if (line ~ /^[[:space:]]+ports:/) {
in_ports = 1
ports_header = line
ports_n = 0
next
}
# Normale Zeile
print line
}
' docker-compose.yml > docker-compose.yml.tmp
mv docker-compose.yml.tmp docker-compose.yml
echo "=> Orchester starten ..."
docker compose up -d --remove-orphans

79
bin/hxki_fix_web_v2.sh Executable file
View File

@@ -0,0 +1,79 @@
#!/usr/bin/env bash
set -euo pipefail
DOCKER_DIR="/opt/hx-ki/docker"
cd "$DOCKER_DIR"
echo "==> Schritt 1: Backups der Compose-Dateien anlegen ..."
for f in docker-compose.yml docker-compose.override.yml; do
if [ -f "$f" ]; then
cp "$f" "${f}.bak_hxkiweb_$(date +%Y%m%d_%H%M%S)"
echo " Backup erstellt: ${f}.bak_hxkiweb_..."
else
echo " Hinweis: $f nicht vorhanden, überspringe."
fi
done
echo "==> Schritt 2: Eventuelle alte hxki-web Container entfernen ..."
docker rm -f hxki-web docker-hxki-web-1 2>/dev/null || true
echo "==> Schritt 3: In ALLEN Compose-Dateien 'ports:'-Blöcke von hxki-web entfernen ..."
for f in docker-compose.yml docker-compose.override.yml; do
if [ ! -f "$f" ]; then
continue
fi
echo " Bearbeite $f ..."
awk '
# Start des hxki-web Blocks erkennen (egal wie eingerückt)
/^[[:space:]]*hxki-web:/ {
in_hw = 1
print
next
}
# Wenn wir im hxki-web Block sind und eine Zeile mit \"ports:\" kommt,
# Ports-Block markieren, aber nicht drucken
in_hw && $1 == "ports:" {
in_ports = 1
next
}
# Solange wir im Ports-Block sind:
in_ports {
# Zeilen mit \"-\" (Port-Mapping) überspringen
if ($1 == "-") next
# Erste Zeile, die kein \"-\" mehr ist -> Ports-Block Ende
in_ports = 0
}
# Wenn wir im hxki-web Block sind und eine leere Zeile kommt,
# ist der Block als solcher zu Ende
in_hw && NF == 0 {
in_hw = 0
print
next
}
# Alle anderen Zeilen ganz normal drucken
{ print }
' "$f" > "$f.tmp" && mv "$f.tmp" "$f"
done
echo "==> Schritt 4: Compose-Konfiguration prüfen (Services auflisten) ..."
docker compose config --services || true
echo "==> Schritt 5: Orchester starten (inkl. Entfernen von Waisen-Containern) ..."
docker compose up -d --remove-orphans
echo "==> Schritt 6: Status von hxki-web prüfen ..."
docker ps | grep hxki-web || echo " Hinweis: Kein laufender Container mit 'hxki-web' im Namen gefunden."
echo "==> Schritt 7: Caddy neu laden (falls vorhanden) ..."
if docker ps | grep -q hx-caddy-caddy-1; then
docker exec -it hx-caddy-caddy-1 caddy reload || echo " Hinweis: Caddy-Reload hat eine Warnung produziert."
else
echo " Hinweis: Caddy-Container hx-caddy-caddy-1 läuft nicht oder heißt anders."
fi
echo "==> FERTIG: Alle ports:-Blöcke für hxki-web entfernt, Orchester läuft neu."

View File

@@ -0,0 +1,228 @@
#!/usr/bin/env bash
set -euo pipefail
echo "=== HX-KI Homepage Setup (Falkenstein) ==="
########################################
# 0. PARAMETER
########################################
# Falls dein Next.js-Projekt woanders liegt: HIER anpassen.
WEB_ROOT="/opt/hx-ki/web/nextjs"
WORKSPACE="/opt/hx-ki/workspaces/homepage"
AGENT_DIR="/opt/hx-ki/agents"
API_DIR="$WEB_ROOT/app/api/homepage"
echo "WEB_ROOT: $WEB_ROOT"
echo "WORKSPACE: $WORKSPACE"
echo "AGENT_DIR: $AGENT_DIR"
echo "API_DIR: $API_DIR"
echo
########################################
# 1. VERZEICHNISSE ANLEGEN
########################################
mkdir -p "$WORKSPACE"
mkdir -p "$AGENT_DIR"
mkdir -p "$API_DIR"
echo "✔ Verzeichnisse angelegt."
########################################
# 2. BASIS-HOMEPAGE.JSON ANLEGEN (FALLS NICHT VORHANDEN)
########################################
HOMEPAGE_JSON="$WORKSPACE/homepage.json"
if [[ ! -f "$HOMEPAGE_JSON" ]]; then
cat > "$HOMEPAGE_JSON" <<EOF
{
"hero_title": "HX-KI Cognitive Clarity",
"hero_sub": "Vom Chaos zur Klarheit. Falkenstein liefert nur aus dem Workspace.",
"sections": [
{
"title": "Status",
"text": "Die Homepage wird jetzt aus /opt/hx-ki/workspaces/homepage/homepage.json versorgt."
},
{
"title": "Architektur",
"text": "Falkenstein greift NICHT auf Gehirn oder Motor zu. Nur Workspace."
}
]
}
EOF
echo "✔ Default homepage.json erstellt: $HOMEPAGE_JSON"
else
echo "✔ homepage.json existiert bereits wird NICHT überschrieben."
fi
########################################
# 3. JSON-AGENT ANLEGEN (ERZEUGT/ÜBERSCHREIBT HOMEPAGE.JSON)
########################################
AGENT_SCRIPT="$AGENT_DIR/json_homepage_agent.py"
cat > "$AGENT_SCRIPT" <<'EOF'
#!/usr/bin/env python3
import json
import os
WORKSPACE = "/opt/hx-ki/workspaces/homepage"
FILE = os.path.join(WORKSPACE, "homepage.json")
os.makedirs(WORKSPACE, exist_ok=True)
content = {
"hero_title": "HX-KI Dynamischer JSON-Agent",
"hero_sub": "Content kommt aus dem Workspace auf Falkenstein kein Zugriff auf Gehirn oder Motor.",
"sections": [
{
"title": "Agent-Status",
"text": "Dieser JSON-Agent kann von Events, Cron, KI oder Mautic getriggert werden."
},
{
"title": "Architektur-Sicherheit",
"text": "Falkenstein liest nur den Workspace. Nürnberg & Helsinki bleiben intern."
}
]
}
with open(FILE, "w") as f:
json.dump(content, f, indent=2)
print(f"✔ homepage.json durch json_homepage_agent.py erzeugt/aktualisiert: {FILE}")
EOF
chmod +x "$AGENT_SCRIPT"
echo "✔ JSON-Agent angelegt: $AGENT_SCRIPT"
########################################
# 4. SELBSTHEILUNG FÜR HOMEPAGE.JSON
########################################
REPAIR_SCRIPT="$WORKSPACE/repair_homepage_json.sh"
cat > "$REPAIR_SCRIPT" <<'EOF'
#!/usr/bin/env bash
set -euo pipefail
FILE="/opt/hx-ki/workspaces/homepage/homepage.json"
echo "=== Repair homepage.json ==="
if [[ ! -f "$FILE" ]]; then
echo "✘ homepage.json fehlt wird neu erstellt."
cat > "$FILE" <<EOF2
{
"hero_title": "HX-KI Repair Mode",
"hero_sub": "homepage.json war weg und wurde automatisch neu erstellt.",
"sections": [
{
"title": "Hinweis",
"text": "Dies ist ein Fallback-Content aus repair_homepage_json.sh."
}
]
}
EOF2
echo "✔ homepage.json neu angelegt."
exit 0
fi
# JSON grob prüfen (ohne jq, über Python)
python3 - <<PYEOF
import json, sys
try:
json.load(open("$FILE", "r"))
except Exception as e:
sys.exit(1)
PYEOF
if [[ $? -eq 0 ]]; then
echo "✔ homepage.json ist gültiges JSON."
else
echo "✘ homepage.json ist defekt wird repariert."
cat > "$FILE" <<EOF3
{
"hero_title": "HX-KI Repair Mode",
"hero_sub": "homepage.json war defekt und wurde automatisch repariert.",
"sections": [
{
"title": "Hinweis",
"text": "Der vorherige Inhalt war ungültig. Dies ist ein Fallback."
}
]
}
EOF3
echo "✔ homepage.json repariert."
fi
EOF
chmod +x "$REPAIR_SCRIPT"
echo "✔ Repair-Skript angelegt: $REPAIR_SCRIPT"
########################################
# 5. CRONJOB FÜR SELBSTHEILUNG (ALLE 5 MINUTEN)
########################################
CRON_LINE="*/5 * * * * $REPAIR_SCRIPT >/dev/null 2>&1"
# Cron nur hinzufügen, wenn noch nicht vorhanden
( crontab -l 2>/dev/null | grep -v "$REPAIR_SCRIPT" || true; echo "$CRON_LINE" ) | crontab -
echo "✔ Cronjob für Repair installiert (alle 5 Minuten)."
########################################
# 6. NEXT.JS API-ROUTE FÜR /api/homepage
########################################
ROUTE_FILE="$API_DIR/route.ts"
cat > "$ROUTE_FILE" <<'EOF'
import { NextResponse } from "next/server";
import fs from "fs";
export async function GET() {
const path = "/opt/hx-ki/workspaces/homepage/homepage.json";
try {
const raw = fs.readFileSync(path, "utf-8");
const data = JSON.parse(raw);
return NextResponse.json(data);
} catch (err) {
console.error("Error reading homepage.json:", err);
return NextResponse.json(
{
error: "Homepage content not available",
details: "Check /opt/hx-ki/workspaces/homepage/homepage.json on Falkenstein."
},
{ status: 500 }
);
}
}
EOF
echo "✔ Next.js API-Route erstellt: $ROUTE_FILE"
########################################
# 7. ERSTEN LAUF DES JSON-AGENTEN AUSFÜHREN
########################################
echo "=== Erster Lauf des JSON-Agents ==="
"$AGENT_SCRIPT" || echo "Warnung: JSON-Agent konnte nicht ausgeführt werden."
echo
echo "=== Fertig. Schritte als Nächstes: ==="
echo "1) Stelle sicher, dass WEB_ROOT korrekt ist (aktuell: $WEB_ROOT)."
echo "2) Baue/Starte dein hxki-web / Next.js-Container neu."
echo "3) Rufe im Browser /api/homepage auf dort sollte JSON kommen."
echo "4) Binde in app/page.tsx o.ä. fetch('https://DEINE-DOMAIN/api/homepage') ein."
echo
echo "=== HX-KI Homepage Setup (Falkenstein) COMPLETE ==="

20
bin/hxki_orchestra_repair.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -euo pipefail
DOCKER_DIR="/opt/hx-ki/docker"
cd "$DOCKER_DIR"
echo "=> Backup docker-compose.yml ..."
cp docker-compose.yml docker-compose.yml.bak_orchestra_$(date +%Y%m%d_%H%M%S)
echo "=> Entferne Service 'hxki-web' aus docker-compose.yml ..."
awk '
/^[[:space:]]*hxki-web:/ { in_blk=1; next }
in_blk && NF==0 { in_blk=0; next }
!in_blk { print }
' docker-compose.yml > docker-compose.yml.tmp
mv docker-compose.yml.tmp docker-compose.yml
echo "=> Orchester starten ..."
docker compose up -d --remove-orphans

103
bin/hxki_setup_web.sh Executable file
View File

@@ -0,0 +1,103 @@
#!/usr/bin/env bash
set -euo pipefail
WEB_DIR="/opt/hx-ki/web/hx-ki-website"
COMPOSE_FILE="/opt/hx-ki/docker/docker-compose.yml"
CADDY_FILE="/opt/hx-ki/caddy/Caddyfile"
echo "==> Prüfe, ob Web-Verzeichnis existiert: $WEB_DIR"
if [ ! -d "$WEB_DIR" ]; then
echo "FEHLER: Verzeichnis $WEB_DIR existiert nicht."
echo "Bitte sicherstellen: ZIP entpackt nach /opt/hx-ki/web/hx-ki-website"
exit 1
fi
echo "==> Erstelle/überschreibe Dockerfile im Web-Verzeichnis ..."
cat > "$WEB_DIR/Dockerfile" << 'EOF_DF'
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
ENV NODE_ENV=production
ENV PORT=3003
EXPOSE 3003
CMD ["npm", "start"]
EOF_DF
echo "==> Sicherung von docker-compose.yml anlegen ..."
cp "$COMPOSE_FILE" "${COMPOSE_FILE}.bak_website_$(date +%Y%m%d_%H%M%S)"
echo "==> Prüfe, ob Service 'hxki-web' bereits existiert ..."
if grep -q "hxki-web:" "$COMPOSE_FILE"; then
echo "Service 'hxki-web' ist bereits in $COMPOSE_FILE vorhanden. Überspringe Einfügen."
else
echo "==> Füge Service 'hxki-web' in docker-compose.yml ein ..."
awk '
BEGIN {added=0}
/^services:/ {print; in_services=1; next}
in_services && !added && ($0 !~ /^ /) {
print " hxki-web:";
print " container_name: hxki-web";
print " build:";
print " context: /opt/hx-ki/web/hx-ki-website";
print " restart: unless-stopped";
print " networks:";
print " - hxki-internal";
print "";
added=1;
}
{print}
END {
if (in_services && !added) {
print " hxki-web:";
print " container_name: hxki-web";
print " build:";
print " context: /opt/hx-ki/web/hx-ki-website";
print " restart: unless-stopped";
print " networks:";
print " - hxki-internal";
print "";
}
}
' "$COMPOSE_FILE" > "${COMPOSE_FILE}.tmp"
mv "${COMPOSE_FILE}.tmp" "$COMPOSE_FILE"
fi
echo "==> Sicherung der Caddyfile anlegen ..."
cp "$CADDY_FILE" "${CADDY_FILE}.bak_website_$(date +%Y%m%d_%H%M%S)"
echo "==> Prüfe, ob hx-ki.com bereits in Caddyfile existiert ..."
if grep -q "hx-ki.com" "$CADDY_FILE"; then
echo "ACHTUNG: Ein Eintrag für hx-ki.com existiert bereits."
echo "Ich füge KEINEN neuen Block hinzu, um nichts zu zerschießen."
echo "Bitte später manuell prüfen/anpassen: $CADDY_FILE"
else
echo "==> Ergänze hx-ki.com Block in Caddyfile ..."
cat >> "$CADDY_FILE" << 'EOF_CF'
hx-ki.com {
encode gzip
reverse_proxy hxki-web:3003
}
EOF_CF
fi
echo "==> Baue Service hxki-web über das Orchester-Compose ..."
cd /opt/hx-ki/docker
docker compose build hxki-web
echo "==> Starte komplettes Orchester (inkl. hxki-web) ..."
docker compose up -d
echo "==> Caddy neu laden ..."
docker exec -it hx-caddy-caddy-1 caddy reload || echo "Hinweis: Caddy-Reload fehlgeschlagen, bitte prüfen."
echo "==> Fertig. hxki-web ist jetzt Teil des Orchesters und im internen Netz erreichbar."

46
bin/hxki_system_birth.sh Executable file
View File

@@ -0,0 +1,46 @@
#!/usr/bin/env bash
set -euo pipefail
REPORT_DIR="/opt/hx-ki/reports"
mkdir -p "$REPORT_DIR"
TIMESTAMP="$(date +"%Y-%m-%d_%H%M%S")"
OUTFILE="${REPORT_DIR}/HXKI_System_BirthCertificate_${TIMESTAMP}.txt"
# Hosts
NBG="ubuntu-8gb-nbg1-1"
HEL="ubuntu-16gb-hel1-1"
FSN="localhost"
# Node-Script (muss auf allen Servern liegen)
NODE_SCRIPT="/opt/hx-ki/bin/hxki_node_birth_certificate.sh"
echo "=== HXKI SYSTEM GEBURTSURKUNDE ===" > "$OUTFILE"
echo "Erstellt: $(date)" >> "$OUTFILE"
echo >> "$OUTFILE"
make_section () {
local HOST="$1"
local NAME="$2"
echo "--- Knoten: ${NAME} ---" >> "$OUTFILE"
if [ "$HOST" = "localhost" ]; then
NODE_FILE=$(sudo $NODE_SCRIPT | tail -n1)
cat "$NODE_FILE" >> "$OUTFILE"
else
REMOTE_FILE=$(ssh "$HOST" "sudo $NODE_SCRIPT" | tail -n1)
scp "$HOST:$REMOTE_FILE" /tmp/hxki_node.txt >/dev/null
cat /tmp/hxki_node.txt >> "$OUTFILE"
fi
echo >> "$OUTFILE"
echo >> "$OUTFILE"
}
make_section "$NBG" "NUERNBERG"
make_section "$HEL" "HELSINKI"
make_section "$FSN" "FALKENSTEIN"
echo "FERTIG."
echo "$OUTFILE"

19
caddy/Caddyfile Normal file
View File

@@ -0,0 +1,19 @@
grafana.hx-ki.com {
reverse_proxy hxki-grafana:3000
}
n8n.hx-ki.com {
reverse_proxy hxki-n8n:5678
}
mautic.hx-ki.com {
reverse_proxy hxki-mautic:8080
}
webui.hx-ki.com {
respond 404
}
mariadb.hx-ki.com, postgres.hx-ki.com {
respond 403
}

View File

@@ -0,0 +1,39 @@
{
email admin@hx-ki.com
}
# --- Gateway on COM1 (49.12.97.28) ---
# Everything terminates TLS here, then proxies to WG targets.
caddy.hx-ki.com {
respond "HXKI Caddy Gateway OK" 200
}
webui.hx-ki.com {
reverse_proxy 10.10.0.2:8080
}
grafana.hx-ki.com {
reverse_proxy 10.10.0.3:3000
}
n8n.hx-ki.com {
reverse_proxy 10.10.0.1:5678
}
syncthing.hx-ki.com {
reverse_proxy 10.10.0.1:8384
}
# gitea points to another public server (DNS already 91.98.70.222)
gitea.hx-ki.com {
reverse_proxy 91.98.70.222:3000
}
# DBs should NOT be public
postgres.hx-ki.com {
respond "Postgres is internal only" 403
}
mariadb.hx-ki.com {
respond "MariaDB is internal only" 403
}

View File

@@ -0,0 +1,23 @@
{
auto_https on
}
grafana.hx-ki.com {
reverse_proxy hxki-grafana:3000
}
n8n.hx-ki.com {
reverse_proxy hxki-n8n:5678
}
mautic.hx-ki.com {
reverse_proxy hxki-mautic:8080
}
webui.hx-ki.com {
respond 404
}
mariadb.hx-ki.com, postgres.hx-ki.com {
respond 403
}

View File

@@ -0,0 +1,32 @@
{
email admin@hx-ki.com
}
caddy.hx-ki.com {
respond "HX-KI Falkenstein Caddy läuft." 200
}
gitea.hx-ki.com {
reverse_proxy hxki-gitea:3000
}
grafana.hx-ki.com {
reverse_proxy hxki-grafana:3000
}
mautic.hx-ki.com {
reverse_proxy hxki-mautic:80
}
n8n.hx-ki.com {
reverse_proxy hxki-n8n:5678
}
syncthing.hx-ki.com {
reverse_proxy hxki-syncthing:8384
}
webui.hx-ki.com {
# OpenWebUI läuft im Container normalerweise auf 8080
reverse_proxy hxki-openwebui:8080
}

View File

@@ -0,0 +1 @@
{"apps":{"http":{"servers":{"srv0":{"listen":[":443"],"routes":[{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.4:8384"}]}]}]}],"match":[{"host":["syncthing.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"body":"Postgres is internal only","handler":"static_response","status_code":403}]}]}],"match":[{"host":["postgres.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.3:3000"}]}]}]}],"match":[{"host":["grafana.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"body":"MariaDB is internal only","handler":"static_response","status_code":403}]}]}],"match":[{"host":["mariadb.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.4:8080"}]}]}]}],"match":[{"host":["mautic.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.2:8080"}]}]}]}],"match":[{"host":["webui.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.5:3000"}]}]}]}],"match":[{"host":["gitea.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.2:5678"}]}]}]}],"match":[{"host":["n8n.hx-ki.com"]}],"terminal":true}]}}},"tls":{"automation":{"policies":[{"issuers":[{"email":"admin@hx-ki.com","module":"acme"},{"ca":"https://acme.zerossl.com/v2/DV90","email":"admin@hx-ki.com","module":"acme"}],"subjects":["syncthing.hx-ki.com","postgres.hx-ki.com","grafana.hx-ki.com","mariadb.hx-ki.com","mautic.hx-ki.com","webui.hx-ki.com","gitea.hx-ki.com","n8n.hx-ki.com"]}]}}}}

View File

@@ -0,0 +1,8 @@
{
"status": "valid",
"contact": [
"mailto:admin@hx-ki.com"
],
"termsOfServiceAgreed": true,
"location": "https://acme-v02.api.letsencrypt.org/acme/acct/2960161656"
}

View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIJsrdWUXXm4Iw7UOLtdvhjDfgLFjCuqeTHayuqp1jAoVoAoGCCqGSM49
AwEHoUQDQgAEbApWuApOTzsXGVL5osnntvw0yVBj0iJW8RJbPfVHhzAygOg9kxg+
kt2wdAy1M1wkLDGr4g4ugeLZ9TpL+5gNPg==
-----END EC PRIVATE KEY-----

View File

@@ -0,0 +1 @@
{"type":"http-01","url":"https://acme.zerossl.com/v2/DV90/chall/mBB3TVImYC7bXmn4qnO8Pw","status":"processing","token":"i0e5DVFXADr62_ltYGnvfA-rH8riqEn2WcolB0AzG9c","keyAuthorization":"i0e5DVFXADr62_ltYGnvfA-rH8riqEn2WcolB0AzG9c.wL5jmIWvAxHFX-ZQN1w7lwA3ISWf4b5msVYqwvqIS6c","identifier":{"type":"dns","value":"gitea.hx-ki.com"}}

View File

@@ -0,0 +1 @@
{"type":"http-01","url":"https://acme.zerossl.com/v2/DV90/chall/XTx4c3lJDawFk7oNzlAKXA","status":"pending","token":"oypgscCdP0ZBLHhxMWgZpuSAjk0OzK8D5irDHXsulVs","keyAuthorization":"oypgscCdP0ZBLHhxMWgZpuSAjk0OzK8D5irDHXsulVs.wL5jmIWvAxHFX-ZQN1w7lwA3ISWf4b5msVYqwvqIS6c","identifier":{"type":"dns","value":"mariadb.hx-ki.com"}}

View File

@@ -0,0 +1 @@
{"type":"http-01","url":"https://acme.zerossl.com/v2/DV90/chall/2uDkAxpN9FyUxjfQkN3HdQ","status":"pending","token":"cLaqQbDpOs4S-vVxVOy7xysAkF7_MwkilBhVMVTsWlU","keyAuthorization":"cLaqQbDpOs4S-vVxVOy7xysAkF7_MwkilBhVMVTsWlU.wL5jmIWvAxHFX-ZQN1w7lwA3ISWf4b5msVYqwvqIS6c","identifier":{"type":"dns","value":"postgres.hx-ki.com"}}

View File

@@ -0,0 +1,14 @@
{
"status": "valid",
"contact": [
"mailto:admin@hx-ki.com"
],
"termsOfServiceAgreed": true,
"externalAccountBinding": {
"protected": "eyJhbGciOiJIUzI1NiIsImtpZCI6IjNoaGpYYWpzRXN2WmxRemMzTjFKZVEiLCJ1cmwiOiJodHRwczovL2FjbWUuemVyb3NzbC5jb20vdjIvRFY5MC9uZXdBY2NvdW50In0",
"payload": "eyJjcnYiOiJQLTI1NiIsImt0eSI6IkVDIiwieCI6ImE4OVdrUFZPZ0htVFprM1ZwUTg1U2ZlT0N4dGxSMlBpU05DNVdrYWhFcUUiLCJ5IjoiVDAxTWVTUS1VVTJnNkxjR2tzaE43a2ZIeE9OZ19OajNzcERNRkUzbUJPMCJ9",
"signature": "DSExtBx8pWdfaLPi78YEjHkJVKBK55rybmpkKe5A2-o"
},
"orders": "https://acme.zerossl.com/v2/DV90/account/3hhjXajsEsvZlQzc3N1JeQ/orders",
"location": "https://acme.zerossl.com/v2/DV90/account/3hhjXajsEsvZlQzc3N1JeQ"
}

View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIJr8wxWUxSh+A1RaAunT6w6Wyic8uyUgLbnrLkRGjEgSoAoGCCqGSM49
AwEHoUQDQgAEa89WkPVOgHmTZk3VpQ85SfeOCxtlR2PiSNC5WkahEqFPTUx5JD5R
TaDotwaSyE3uR8fE42D82PeykMwUTeYE7Q==
-----END EC PRIVATE KEY-----

View File

@@ -0,0 +1,49 @@
-----BEGIN CERTIFICATE-----
MIIDlTCCAxqgAwIBAgISBnoALnMCy8W2JAEookeF+L5BMAoGCCqGSM49BAMDMDIx
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
NzAeFw0yNjAxMTMxMTQ4MzBaFw0yNjA0MTMxMTQ4MjlaMBoxGDAWBgNVBAMTD2Nh
ZGR5Lmh4LWtpLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABHm2oYncNs4H
vnMRxOw5jKIU4aWxSzokapxdexftIBY477uxpjMXwt83fYHBb8CLUO2fTAY1VRBJ
/nkWeD8foDujggImMIICIjAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0lBBYwFAYIKwYB
BQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFNyk6UtLfcIT
tTDtkXVDhVZWKKq/MB8GA1UdIwQYMBaAFK5IntyHHUSgb9qi5WB0BHjCnACAMDIG
CCsGAQUFBwEBBCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL2U3LmkubGVuY3Iub3Jn
LzAaBgNVHREEEzARgg9jYWRkeS5oeC1raS5jb20wEwYDVR0gBAwwCjAIBgZngQwB
AgEwLQYDVR0fBCYwJDAioCCgHoYcaHR0cDovL2U3LmMubGVuY3Iub3JnLzY2LmNy
bDCCAQ0GCisGAQQB1nkCBAIEgf4EgfsA+QB3ANFuqaVoB35mNaA/N6XdvAOlPEES
FNSIGPXpMbMjy5UEAAABm7dlMoIAAAQDAEgwRgIhAP3zzQnMtv5qjmEdIgwyBdRV
Qxll6HdIDFKuSLKrzRzMAiEAwSR71lH9wWiRToNog5pay8tKCqGM8HfZrqvuQ8lM
oHIAfgAai51pSleYyJmgyoi99I/AtFZgzMNgDR9x9Gn/x9GsowAAAZu3ZTVSAAgA
AAUANkg7GwQDAEcwRQIgLVaPxKkWm2/SWw2C1LqGLppFmFjtIU+eqaxTjNZ/4qYC
IQCUm6AC4TkDd3XATcSiN2B4OV9ZTIFz8G3FM1rio/Fb3jAKBggqhkjOPQQDAwNp
ADBmAjEA153/4uiriq7YlMWrAdrPN+Srk4xuguvjiqJ4hfoxtitLSJ0zxjwAx+qB
JuZHgODnAjEA4Rmyw+jrNxbzUXksP0RPYDX4wGBxfB9VA3aO2frowAoA14fC+wnB
4GogDTxJ8f0k
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIIEVzCCAj+gAwIBAgIRAKp18eYrjwoiCWbTi7/UuqEwDQYJKoZIhvcNAQELBQAw
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw
WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg
RW5jcnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6AST
CFh/vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbef
QHJFHCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgw
gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD
ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4
wpwAgDAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB
AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g
BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu
Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAjx66fDdLk5ywFn3CzA1w1qfylHUD
aEf0QZpXcJseddJGSfbUUOvbNR9N/QQ16K1lXl4VFyhmGXDT5Kdfcr0RvIIVrNxF
h4lqHtRRCP6RBRstqbZ2zURgqakn/Xip0iaQL0IdfHBZr396FgknniRYFckKORPG
yM3QKnd66gtMst8I5nkRQlAg/Jb+Gc3egIvuGKWboE1G89NTsN9LTDD3PLj0dUMr
OIuqVjLB8pEC6yk9enrlrqjXQgkLEYhXzq7dLafv5Vkig6Gl0nuuqjqfp0Q1bi1o
yVNAlXe6aUXw92CcghC9bNsKEO1+M52YY5+ofIXlS/SEQbvVYYBLZ5yeiglV6t3S
M6H+vTG0aP9YHzLn/KVOHzGQfXDP7qM5tkf+7diZe7o2fw6O7IvN6fsQXEQQj8TJ
UXJxv2/uJhcuy/tSDgXwHM8Uk34WNbRT7zGTGkQRX0gsbjAea/jYAoWv0ZvQRwpq
Pe79D/i7Cep8qWnA+7AE/3B3S/3dEEYmc0lpe1366A/6GEgk3ktr9PEoQrLChs6I
tu3wnNLB2euC8IKGLQFpGtOO/2/hiAKjyajaBP25w1jF0Wl8Bbqne3uZ2q1GyPFJ
YRmT7/OXpmOH/FVLtwS+8ng1cAmpCujPwteJZNcDG0sF2n/sc0+SQf49fdyUK0ty
+VUwFj9tmWxyR/M=
-----END CERTIFICATE-----

View File

@@ -0,0 +1,19 @@
{
"sans": [
"caddy.hx-ki.com"
],
"issuer_data": {
"url": "https://acme-v02.api.letsencrypt.org/acme/cert/067a002e7302cbc5b6240128a24785f8be41",
"ca": "https://acme-v02.api.letsencrypt.org/directory",
"account": "https://acme-v02.api.letsencrypt.org/acme/acct/2960161656",
"renewal_info": {
"suggestedWindow": {
"start": "2026-03-13T14:32:34Z",
"end": "2026-03-15T09:43:24Z"
},
"_uniqueIdentifier": "rkie3IcdRKBv2qLlYHQEeMKcAIA.BnoALnMCy8W2JAEookeF-L5B",
"_retryAfter": "2026-01-13T18:47:02.602399407Z",
"_selectedTime": "2026-03-13T18:20:37Z"
}
}
}

View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIItlYf8mBLTpYA09VI6r8mxN06x9PHs/l6rDgp6rf9peoAoGCCqGSM49
AwEHoUQDQgAEebahidw2zge+cxHE7DmMohThpbFLOiRqnF17F+0gFjjvu7GmMxfC
3zd9gcFvwItQ7Z9MBjVVEEn+eRZ4Px+gOw==
-----END EC PRIVATE KEY-----

View File

@@ -0,0 +1,49 @@
-----BEGIN CERTIFICATE-----
MIIDmDCCAx6gAwIBAgISBuPWmwxMWtBAXIRftOCjwapAMAoGCCqGSM49BAMDMDIx
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
NzAeFw0yNjAxMTMxMTQ4MzFaFw0yNjA0MTMxMTQ4MzBaMBwxGjAYBgNVBAMTEWdy
YWZhbmEuaHgta2kuY29tMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhrAdw2o8
B3N9nOXit35SSmofytb9awWofpc+wkY5mfiBfFoNo9OyO+zPKIKRViDglKtDX27d
qT//PZZ5nHmBfKOCAigwggIkMA4GA1UdDwEB/wQEAwIHgDAdBgNVHSUEFjAUBggr
BgEFBQcDAQYIKwYBBQUHAwIwDAYDVR0TAQH/BAIwADAdBgNVHQ4EFgQULQ9nEles
s8Q4Qo9p+j5P92s2DXgwHwYDVR0jBBgwFoAUrkie3IcdRKBv2qLlYHQEeMKcAIAw
MgYIKwYBBQUHAQEEJjAkMCIGCCsGAQUFBzAChhZodHRwOi8vZTcuaS5sZW5jci5v
cmcvMBwGA1UdEQQVMBOCEWdyYWZhbmEuaHgta2kuY29tMBMGA1UdIAQMMAowCAYG
Z4EMAQIBMC0GA1UdHwQmMCQwIqAgoB6GHGh0dHA6Ly9lNy5jLmxlbmNyLm9yZy82
NS5jcmwwggENBgorBgEEAdZ5AgQCBIH+BIH7APkAfgAai51pSleYyJmgyoi99I/A
tFZgzMNgDR9x9Gn/x9GsowAAAZu3ZTVSAAgAAAUANkg7QwQDAEcwRQIhAOlb/391
CFRstYR6qzrjkj1O8Zdmw/C4yPCd+27wHGEBAiAbQkidChaAQtcjji2jxZJVaF6T
LnGY2NQpPiD0vOXmsgB3AA5XlLzzrqk+MxssmQez95Dfm8I9cTIl3SGpJaxhxU4h
AAABm7dlPAoAAAQDAEgwRgIhAJWnBAelmINQu4XYg5C6V2eubmsdtKUCQdAa1PUx
EXEeAiEA+9+oNZsCoeIfC6NZQu/pesaCFanEMQvIcJy11xdxNVowCgYIKoZIzj0E
AwMDaAAwZQIxALHVoWrRDXEg3vttzVqX1PenR8jsJ9UdUitEVfT/SORTsSD8k/JP
eILeXjOvwyTQawIwNLoGKP14ocm6hAN7xStew9GULeX046gMGmu9jojlh5DssU6L
8DOZ7hk3wHFNbo6V
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIIEVzCCAj+gAwIBAgIRAKp18eYrjwoiCWbTi7/UuqEwDQYJKoZIhvcNAQELBQAw
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw
WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg
RW5jcnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6AST
CFh/vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbef
QHJFHCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgw
gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD
ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4
wpwAgDAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB
AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g
BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu
Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAjx66fDdLk5ywFn3CzA1w1qfylHUD
aEf0QZpXcJseddJGSfbUUOvbNR9N/QQ16K1lXl4VFyhmGXDT5Kdfcr0RvIIVrNxF
h4lqHtRRCP6RBRstqbZ2zURgqakn/Xip0iaQL0IdfHBZr396FgknniRYFckKORPG
yM3QKnd66gtMst8I5nkRQlAg/Jb+Gc3egIvuGKWboE1G89NTsN9LTDD3PLj0dUMr
OIuqVjLB8pEC6yk9enrlrqjXQgkLEYhXzq7dLafv5Vkig6Gl0nuuqjqfp0Q1bi1o
yVNAlXe6aUXw92CcghC9bNsKEO1+M52YY5+ofIXlS/SEQbvVYYBLZ5yeiglV6t3S
M6H+vTG0aP9YHzLn/KVOHzGQfXDP7qM5tkf+7diZe7o2fw6O7IvN6fsQXEQQj8TJ
UXJxv2/uJhcuy/tSDgXwHM8Uk34WNbRT7zGTGkQRX0gsbjAea/jYAoWv0ZvQRwpq
Pe79D/i7Cep8qWnA+7AE/3B3S/3dEEYmc0lpe1366A/6GEgk3ktr9PEoQrLChs6I
tu3wnNLB2euC8IKGLQFpGtOO/2/hiAKjyajaBP25w1jF0Wl8Bbqne3uZ2q1GyPFJ
YRmT7/OXpmOH/FVLtwS+8ng1cAmpCujPwteJZNcDG0sF2n/sc0+SQf49fdyUK0ty
+VUwFj9tmWxyR/M=
-----END CERTIFICATE-----

View File

@@ -0,0 +1,19 @@
{
"sans": [
"grafana.hx-ki.com"
],
"issuer_data": {
"url": "https://acme-v02.api.letsencrypt.org/acme/cert/06e3d69b0c4c5ad0405c845fb4e0a3c1aa40",
"ca": "https://acme-v02.api.letsencrypt.org/directory",
"account": "https://acme-v02.api.letsencrypt.org/acme/acct/2960161656",
"renewal_info": {
"suggestedWindow": {
"start": "2026-03-13T14:32:35Z",
"end": "2026-03-15T09:43:25Z"
},
"_uniqueIdentifier": "rkie3IcdRKBv2qLlYHQEeMKcAIA.BuPWmwxMWtBAXIRftOCjwapA",
"_retryAfter": "2026-01-16T20:59:08.290621252Z",
"_selectedTime": "2026-03-13T23:17:11Z"
}
}
}

View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEINEu31T96YDrRyrUA9a2tKtSMmJDhIg6Z3WQQeLnTh/boAoGCCqGSM49
AwEHoUQDQgAEhrAdw2o8B3N9nOXit35SSmofytb9awWofpc+wkY5mfiBfFoNo9Oy
O+zPKIKRViDglKtDX27dqT//PZZ5nHmBfA==
-----END EC PRIVATE KEY-----

View File

@@ -0,0 +1,49 @@
-----BEGIN CERTIFICATE-----
MIIDjTCCAxSgAwIBAgISBq3O8qzyD5mVaiYIERqTqPevMAoGCCqGSM49BAMDMDIx
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
ODAeFw0yNjAxMTMxMTQ4MjlaFw0yNjA0MTMxMTQ4MjhaMBsxGTAXBgNVBAMTEG1h
dXRpYy5oeC1raS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAARXs+rIE/TA
9QPZ4amJ+dViGR0eFufMv/b7GUKfZqZs2inSuTyWX3rQ9euHRtVr7Wh3+yQVbmm/
Hzo7ROuOPUyMo4ICHzCCAhswDgYDVR0PAQH/BAQDAgeAMB0GA1UdJQQWMBQGCCsG
AQUFBwMBBggrBgEFBQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBQUH70FeV0z
mBmlnQm7m/kOBwjodzAfBgNVHSMEGDAWgBSPDROi9i5+0VBsMxg4XVmOI3KRyjAy
BggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly9lOC5pLmxlbmNyLm9y
Zy8wGwYDVR0RBBQwEoIQbWF1dGljLmh4LWtpLmNvbTATBgNVHSAEDDAKMAgGBmeB
DAECATAtBgNVHR8EJjAkMCKgIKAehhxodHRwOi8vZTguYy5sZW5jci5vcmcvNDgu
Y3JsMIIBBQYKKwYBBAHWeQIEAgSB9gSB8wDxAHcADleUvPOuqT4zGyyZB7P3kN+b
wj1xMiXdIaklrGHFTiEAAAGbt2UrtQAABAMASDBGAiEAx21MCEFs09Fzo3U+Sd4v
6m+PZzw8lOG4qaIfbVOITvYCIQDPEOtOD/IfTeJ6WnWiuyenQI0rp4MnHTdeP8tl
FXjOPAB2ANFuqaVoB35mNaA/N6XdvAOlPEESFNSIGPXpMbMjy5UEAAABm7dlLJEA
AAQDAEcwRQIhANm3cmN5/h1K1/E6cTGAGxvEe6/iGXXZXbqStJvJJrJfAiAiqDq4
8+rq6yeTDAWvsiD4MEA4rMIKxKyTsJcGIGITezAKBggqhkjOPQQDAwNnADBkAjBu
HVraPhZunKvCXEeqEOoUt3nTkeKRX0vnt8i4+ocJqAsUpHLe1sq9b6/+MS/m6CwC
MDaxP13n/Xg4tjdwUv4F0YCh8bPCRwYSJUxdpUSq7BKzZhnzVLObujLZHKXnjGRR
SQ==
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP
MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy
Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa
Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF
bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c
S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb
R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB
9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB
MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j
cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB
BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE
DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j
ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0
RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d
AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8
otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA
aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm
Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2
HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1
Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR
xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d
tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/
jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS
u1igv3OefnWjSQ==
-----END CERTIFICATE-----

View File

@@ -0,0 +1,19 @@
{
"sans": [
"mautic.hx-ki.com"
],
"issuer_data": {
"url": "https://acme-v02.api.letsencrypt.org/acme/cert/06adcef2acf20f99956a2608111a93a8f7af",
"ca": "https://acme-v02.api.letsencrypt.org/directory",
"account": "https://acme-v02.api.letsencrypt.org/acme/acct/2960161656",
"renewal_info": {
"suggestedWindow": {
"start": "2026-03-13T14:32:33Z",
"end": "2026-03-15T09:43:22Z"
},
"_uniqueIdentifier": "jw0TovYuftFQbDMYOF1ZjiNykco.Bq3O8qzyD5mVaiYIERqTqPev",
"_retryAfter": "2026-01-16T20:59:08.291587903Z",
"_selectedTime": "2026-03-13T22:54:48Z"
}
}
}

View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIP3eARLhj3ReAQD/ocHR5DTgvVdptiltCjK6s73yzUbZoAoGCCqGSM49
AwEHoUQDQgAEV7PqyBP0wPUD2eGpifnVYhkdHhbnzL/2+xlCn2ambNop0rk8ll96
0PXrh0bVa+1od/skFW5pvx86O0Trjj1MjA==
-----END EC PRIVATE KEY-----

View File

@@ -0,0 +1,49 @@
-----BEGIN CERTIFICATE-----
MIIDkDCCAxagAwIBAgISBsJDCsRMwRwynQt/feuqeq4iMAoGCCqGSM49BAMDMDIx
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
NzAeFw0yNjAxMTMxMTQ4MzBaFw0yNjA0MTMxMTQ4MjlaMBgxFjAUBgNVBAMTDW44
bi5oeC1raS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAT+lVHJR0J7AKOg
8KqESmKe6Yv6nqGhwsWgVm3IAJsIi5PEXshHwk7tshb404vbYcGLiB98K03NzHTn
VyYGsKhRo4ICJDCCAiAwDgYDVR0PAQH/BAQDAgeAMB0GA1UdJQQWMBQGCCsGAQUF
BwMBBggrBgEFBQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBRhdO5PtjwfpZ7+
wD9fTETpovxEQDAfBgNVHSMEGDAWgBSuSJ7chx1EoG/aouVgdAR4wpwAgDAyBggr
BgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly9lNy5pLmxlbmNyLm9yZy8w
GAYDVR0RBBEwD4INbjhuLmh4LWtpLmNvbTATBgNVHSAEDDAKMAgGBmeBDAECATAt
BgNVHR8EJjAkMCKgIKAehhxodHRwOi8vZTcuYy5sZW5jci5vcmcvMzUuY3JsMIIB
DQYKKwYBBAHWeQIEAgSB/gSB+wD5AH4AcX6V88I4im2x44RJPTHhWqliCHYtQgDg
BQzQZ7WmYeIAAAGbt2UxKwAIAAAFAAbXEDgEAwBHMEUCIQCcizSsOrKD0vavBDvy
J6746Y7ePr5Xmw7zOmKHdKxjrwIgY8GFpTC3Xaek+7fAVmkw3tfoaTz8cv1JaKR9
gNJWlpsAdwAWgy2r8KklDw/wOqVF/8i/yCPQh0v2BCkn+OcfMxP1+gAAAZu3ZTEY
AAAEAwBIMEYCIQDCt2sOBvIOsYOWtA5FMVsZRrA9o5UGl5oqCFvTsfHxHgIhAI3D
LSecbZnnh0+IBYNdZJNLBqEJe8//iTNyVFIM9BHpMAoGCCqGSM49BAMDA2gAMGUC
MCVnbmHgDLgoXDn4xL1kv/0vZqwdWd1mxMLFjduC64wGgv1Wwiestx3ACSsx4fQH
zQIxAK6iY1qGPRVXgtKOxT3ddbrW5O5h60vtyYIHXdGheW4IVGZaoAveCcD2Md49
x0iWVw==
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIIEVzCCAj+gAwIBAgIRAKp18eYrjwoiCWbTi7/UuqEwDQYJKoZIhvcNAQELBQAw
TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh
cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMjQwMzEzMDAwMDAw
WhcNMjcwMzEyMjM1OTU5WjAyMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNTGV0J3Mg
RW5jcnlwdDELMAkGA1UEAxMCRTcwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAARB6AST
CFh/vjcwDMCgQer+VtqEkz7JANurZxLP+U9TCeioL6sp5Z8VRvRbYk4P1INBmbef
QHJFHCxcSjKmwtvGBWpl/9ra8HW0QDsUaJW2qOJqceJ0ZVFT3hbUHifBM/2jgfgw
gfUwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcD
ATASBgNVHRMBAf8ECDAGAQH/AgEAMB0GA1UdDgQWBBSuSJ7chx1EoG/aouVgdAR4
wpwAgDAfBgNVHSMEGDAWgBR5tFnme7bl5AFzgAiIyBpY9umbbjAyBggrBgEFBQcB
AQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly94MS5pLmxlbmNyLm9yZy8wEwYDVR0g
BAwwCjAIBgZngQwBAgEwJwYDVR0fBCAwHjAcoBqgGIYWaHR0cDovL3gxLmMubGVu
Y3Iub3JnLzANBgkqhkiG9w0BAQsFAAOCAgEAjx66fDdLk5ywFn3CzA1w1qfylHUD
aEf0QZpXcJseddJGSfbUUOvbNR9N/QQ16K1lXl4VFyhmGXDT5Kdfcr0RvIIVrNxF
h4lqHtRRCP6RBRstqbZ2zURgqakn/Xip0iaQL0IdfHBZr396FgknniRYFckKORPG
yM3QKnd66gtMst8I5nkRQlAg/Jb+Gc3egIvuGKWboE1G89NTsN9LTDD3PLj0dUMr
OIuqVjLB8pEC6yk9enrlrqjXQgkLEYhXzq7dLafv5Vkig6Gl0nuuqjqfp0Q1bi1o
yVNAlXe6aUXw92CcghC9bNsKEO1+M52YY5+ofIXlS/SEQbvVYYBLZ5yeiglV6t3S
M6H+vTG0aP9YHzLn/KVOHzGQfXDP7qM5tkf+7diZe7o2fw6O7IvN6fsQXEQQj8TJ
UXJxv2/uJhcuy/tSDgXwHM8Uk34WNbRT7zGTGkQRX0gsbjAea/jYAoWv0ZvQRwpq
Pe79D/i7Cep8qWnA+7AE/3B3S/3dEEYmc0lpe1366A/6GEgk3ktr9PEoQrLChs6I
tu3wnNLB2euC8IKGLQFpGtOO/2/hiAKjyajaBP25w1jF0Wl8Bbqne3uZ2q1GyPFJ
YRmT7/OXpmOH/FVLtwS+8ng1cAmpCujPwteJZNcDG0sF2n/sc0+SQf49fdyUK0ty
+VUwFj9tmWxyR/M=
-----END CERTIFICATE-----

View File

@@ -0,0 +1,19 @@
{
"sans": [
"n8n.hx-ki.com"
],
"issuer_data": {
"url": "https://acme-v02.api.letsencrypt.org/acme/cert/06c2430ac44cc11c329d0b7f7debaa7aae22",
"ca": "https://acme-v02.api.letsencrypt.org/directory",
"account": "https://acme-v02.api.letsencrypt.org/acme/acct/2960161656",
"renewal_info": {
"suggestedWindow": {
"start": "2026-03-13T14:32:34Z",
"end": "2026-03-15T09:43:24Z"
},
"_uniqueIdentifier": "rkie3IcdRKBv2qLlYHQEeMKcAIA.BsJDCsRMwRwynQt_feuqeq4i",
"_retryAfter": "2026-01-16T20:59:08.29274713Z",
"_selectedTime": "2026-03-14T08:14:53Z"
}
}
}

View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIA1ykQDBxAY63DGMNZaAAZwdj8XeI52BxJXxGNoPjuZ+oAoGCCqGSM49
AwEHoUQDQgAE/pVRyUdCewCjoPCqhEpinumL+p6hocLFoFZtyACbCIuTxF7IR8JO
7bIW+NOL22HBi4gffCtNzcx051cmBrCoUQ==
-----END EC PRIVATE KEY-----

View File

@@ -0,0 +1,49 @@
-----BEGIN CERTIFICATE-----
MIIDmjCCAyCgAwIBAgISBhAEJWaJ2ePOiLmyTy+KDU6cMAoGCCqGSM49BAMDMDIx
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
ODAeFw0yNjAxMTMxMTQ4MzBaFw0yNjA0MTMxMTQ4MjlaMB4xHDAaBgNVBAMTE3N5
bmN0aGluZy5oeC1raS5jb20wWTATBgcqhkjOPQIBBggqhkjOPQMBBwNCAAR07cZQ
uO7+SeuqWHjq877pMBzQ/cFIlBnBvBVXNyxguQucapAth3oC4i+U4ulyU+dD5v/F
N1ystjYVHrXinL4Do4ICKDCCAiQwDgYDVR0PAQH/BAQDAgeAMB0GA1UdJQQWMBQG
CCsGAQUFBwMBBggrBgEFBQcDAjAMBgNVHRMBAf8EAjAAMB0GA1UdDgQWBBQj+F9N
DcJ1PwMzaxAEBT2QnuCj+jAfBgNVHSMEGDAWgBSPDROi9i5+0VBsMxg4XVmOI3KR
yjAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAKGFmh0dHA6Ly9lOC5pLmxlbmNy
Lm9yZy8wHgYDVR0RBBcwFYITc3luY3RoaW5nLmh4LWtpLmNvbTATBgNVHSAEDDAK
MAgGBmeBDAECATAtBgNVHR8EJjAkMCKgIKAehhxodHRwOi8vZTguYy5sZW5jci5v
cmcvMjkuY3JsMIIBCwYKKwYBBAHWeQIEAgSB/ASB+QD3AHUAFoMtq/CpJQ8P8Dql
Rf/Iv8gj0IdL9gQpJ/jnHzMT9foAAAGbt2UxpgAABAMARjBEAiBWLRr137rdnDQP
rvWhttiOHYURURPBSpN+m6nDWuCWUQIgbwBVhtJppgQSD7w7Uzaew+H2mt0l8csm
c40gOHEWB6UAfgBxfpXzwjiKbbHjhEk9MeFaqWIIdi1CAOAFDNBntaZh4gAAAZu3
ZTH0AAgAAAUABtcQOQQDAEcwRQIgLpOtGpQl9hiF7fiucNg6X/yd4mGwahzeQ5hN
NKLSUMcCIQCApyzvVE+q35AksDue+LcLdu4XisO2aVtyTBuOP0fCAjAKBggqhkjO
PQQDAwNoADBlAjEAuzC9jtwiRGZOQjBBEeKig+nMhlXk1hrG45B/zW1g5TuOIAnR
5i5UZ72fqt14TZotAjBWT9/Al9cBJzH0QcwfBOa/+5o+kCYEo4S2X4Msbw2uISdd
KGsQ6RoG8Hp6L/ApTco=
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP
MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy
Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa
Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF
bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c
S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb
R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB
9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB
MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j
cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB
BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE
DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j
ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0
RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d
AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8
otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA
aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm
Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2
HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1
Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR
xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d
tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/
jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS
u1igv3OefnWjSQ==
-----END CERTIFICATE-----

View File

@@ -0,0 +1,19 @@
{
"sans": [
"syncthing.hx-ki.com"
],
"issuer_data": {
"url": "https://acme-v02.api.letsencrypt.org/acme/cert/061004256689d9e3ce88b9b24f2f8a0d4e9c",
"ca": "https://acme-v02.api.letsencrypt.org/directory",
"account": "https://acme-v02.api.letsencrypt.org/acme/acct/2960161656",
"renewal_info": {
"suggestedWindow": {
"start": "2026-03-13T14:32:34Z",
"end": "2026-03-15T09:43:24Z"
},
"_uniqueIdentifier": "jw0TovYuftFQbDMYOF1ZjiNykco.BhAEJWaJ2ePOiLmyTy-KDU6c",
"_retryAfter": "2026-01-16T20:59:08.292561372Z",
"_selectedTime": "2026-03-15T03:09:36Z"
}
}
}

View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEIFulZx426beOlv/j94p0sLhAEuja3CVdiECFXK/JVI2hoAoGCCqGSM49
AwEHoUQDQgAEdO3GULju/knrqlh46vO+6TAc0P3BSJQZwbwVVzcsYLkLnGqQLYd6
AuIvlOLpclPnQ+b/xTdcrLY2FR614py+Aw==
-----END EC PRIVATE KEY-----

View File

@@ -0,0 +1,49 @@
-----BEGIN CERTIFICATE-----
MIIDlTCCAxqgAwIBAgISBgbV4f56W5F8PU7RbeofstsyMAoGCCqGSM49BAMDMDIx
CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBFbmNyeXB0MQswCQYDVQQDEwJF
ODAeFw0yNjAxMTMxMTQ4MzBaFw0yNjA0MTMxMTQ4MjlaMBoxGDAWBgNVBAMTD3dl
YnVpLmh4LWtpLmNvbTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABO3i+IrtWZhD
SrkxWkNlMzHUhT+tUt9diq28W3dxBVhmgen+sJWx1ZaH0JNZzHTZmMMAoxQcShAQ
Plg4HiJyWxajggImMIICIjAOBgNVHQ8BAf8EBAMCB4AwHQYDVR0lBBYwFAYIKwYB
BQUHAwEGCCsGAQUFBwMCMAwGA1UdEwEB/wQCMAAwHQYDVR0OBBYEFAnB0KrsBE2T
3kA2IQ1w6ls8rWMxMB8GA1UdIwQYMBaAFI8NE6L2Ln7RUGwzGDhdWY4jcpHKMDIG
CCsGAQUFBwEBBCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL2U4LmkubGVuY3Iub3Jn
LzAaBgNVHREEEzARgg93ZWJ1aS5oeC1raS5jb20wEwYDVR0gBAwwCjAIBgZngQwB
AgEwLQYDVR0fBCYwJDAioCCgHoYcaHR0cDovL2U4LmMubGVuY3Iub3JnLzUxLmNy
bDCCAQ0GCisGAQQB1nkCBAIEgf4EgfsA+QB2ABaDLavwqSUPD/A6pUX/yL/II9CH
S/YEKSf45x8zE/X6AAABm7dlLuYAAAQDAEcwRQIhAL2wFaUe7ixMjjMpv0QJVu+H
YGSOaW9xYhgtTHLg76sCAiBDnU+1ZyYD/itAuSyI+EUQsPU9be/pyZsK/0ddZeJa
LAB/ABqLnWlKV5jImaDKiL30j8C0VmDMw2ANH3H0af/H0ayjAAABm7dlMWoACAAA
BQA2SDrlBAMASDBGAiEAk5ZjTcpPkWQms+uyz1hrLifSOjjRSTa8H5DnazZiJyQC
IQDuCl0zk1YVVGFmJKBqQkt9AVKtrxaEc7siQzp/7V6HbTAKBggqhkjOPQQDAwNp
ADBmAjEAmx6sjTkwThTvzc1r0vZbefVOpE40Ejjt+XbBNyqxMFa2HVzPD2LEwGeA
64/aSc+fAjEA7jG+OTEbCZoSPSbrZdXDD+ckarHGOn4ZbDuLeCx+OsVS57CUjKHE
FO8pPv0XDb1m
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
MIIEVjCCAj6gAwIBAgIQY5WTY8JOcIJxWRi/w9ftVjANBgkqhkiG9w0BAQsFADBP
MQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFy
Y2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBYMTAeFw0yNDAzMTMwMDAwMDBa
Fw0yNzAzMTIyMzU5NTlaMDIxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1MZXQncyBF
bmNyeXB0MQswCQYDVQQDEwJFODB2MBAGByqGSM49AgEGBSuBBAAiA2IABNFl8l7c
S7QMApzSsvru6WyrOq44ofTUOTIzxULUzDMMNMchIJBwXOhiLxxxs0LXeb5GDcHb
R6EToMffgSZjO9SNHfY9gjMy9vQr5/WWOrQTZxh7az6NSNnq3u2ubT6HTKOB+DCB
9TAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMB
MBIGA1UdEwEB/wQIMAYBAf8CAQAwHQYDVR0OBBYEFI8NE6L2Ln7RUGwzGDhdWY4j
cpHKMB8GA1UdIwQYMBaAFHm0WeZ7tuXkAXOACIjIGlj26ZtuMDIGCCsGAQUFBwEB
BCYwJDAiBggrBgEFBQcwAoYWaHR0cDovL3gxLmkubGVuY3Iub3JnLzATBgNVHSAE
DDAKMAgGBmeBDAECATAnBgNVHR8EIDAeMBygGqAYhhZodHRwOi8veDEuYy5sZW5j
ci5vcmcvMA0GCSqGSIb3DQEBCwUAA4ICAQBnE0hGINKsCYWi0Xx1ygxD5qihEjZ0
RI3tTZz1wuATH3ZwYPIp97kWEayanD1j0cDhIYzy4CkDo2jB8D5t0a6zZWzlr98d
AQFNh8uKJkIHdLShy+nUyeZxc5bNeMp1Lu0gSzE4McqfmNMvIpeiwWSYO9w82Ob8
otvXcO2JUYi3svHIWRm3+707DUbL51XMcY2iZdlCq4Wa9nbuk3WTU4gr6LY8MzVA
aDQG2+4U3eJ6qUF10bBnR1uuVyDYs9RhrwucRVnfuDj29CMLTsplM5f5wSV5hUpm
Uwp/vV7M4w4aGunt74koX71n4EdagCsL/Yk5+mAQU0+tue0JOfAV/R6t1k+Xk9s2
HMQFeoxppfzAVC04FdG9M+AC2JWxmFSt6BCuh3CEey3fE52Qrj9YM75rtvIjsm/1
Hl+u//Wqxnu1ZQ4jpa+VpuZiGOlWrqSP9eogdOhCGisnyewWJwRQOqK16wiGyZeR
xs/Bekw65vwSIaVkBruPiTfMOo0Zh4gVa8/qJgMbJbyrwwG97z/PRgmLKCDl8z3d
tA0Z7qq7fta0Gl24uyuB05dqI5J1LvAzKuWdIjT1tP8qCoxSE/xpix8hX2dt3h+/
jujUgFPFZ0EVZ0xSyBNRF3MboGZnYXFUxpNjTWPKpagDHJQmqrAcDmWJnMsFY3jS
u1igv3OefnWjSQ==
-----END CERTIFICATE-----

View File

@@ -0,0 +1,19 @@
{
"sans": [
"webui.hx-ki.com"
],
"issuer_data": {
"url": "https://acme-v02.api.letsencrypt.org/acme/cert/0606d5e1fe7a5b917c3d4ed16dea1fb2db32",
"ca": "https://acme-v02.api.letsencrypt.org/directory",
"account": "https://acme-v02.api.letsencrypt.org/acme/acct/2960161656",
"renewal_info": {
"suggestedWindow": {
"start": "2026-03-13T14:32:34Z",
"end": "2026-03-15T09:43:24Z"
},
"_uniqueIdentifier": "jw0TovYuftFQbDMYOF1ZjiNykco.BgbV4f56W5F8PU7Rbeofstsy",
"_retryAfter": "2026-01-16T20:59:08.292859229Z",
"_selectedTime": "2026-03-15T09:19:00Z"
}
}
}

View File

@@ -0,0 +1,5 @@
-----BEGIN EC PRIVATE KEY-----
MHcCAQEEICcKE/sLbJNdPFsTMKy74pWekG/YgqAzq9hMrP1DDofAoAoGCCqGSM49
AwEHoUQDQgAE7eL4iu1ZmENKuTFaQ2UzMdSFP61S312Krbxbd3EFWGaB6f6wlbHV
lofQk1nMdNmYwwCjFBxKEBA+WDgeInJbFg==
-----END EC PRIVATE KEY-----

View File

@@ -0,0 +1 @@
bfbbbc4f-902c-4205-8553-061b875c23f9

View File

@@ -0,0 +1 @@
{"tls":{"timestamp":"2026-01-16T12:58:02.963935422Z","instance_id":"bfbbbc4f-902c-4205-8553-061b875c23f9"}}

View File

@@ -0,0 +1 @@
{"created":"2026-01-16T14:59:16.458988535Z","updated":"2026-01-16T15:13:57.48175782Z"}

View File

@@ -0,0 +1 @@
{"created":"2026-01-16T14:59:16.456746523Z","updated":"2026-01-16T15:13:57.479876815Z"}

View File

@@ -0,0 +1 @@
{"created":"2026-01-16T14:59:16.461890469Z","updated":"2026-01-16T15:13:57.481625102Z"}

View File

@@ -0,0 +1,3 @@
:443 {
respond "COM1 Gateway alive" 200
}

View File

@@ -0,0 +1 @@
{"admin":{"listen":"127.0.0.1:2019"},"apps":{"http":{"servers":{"srv0":{"listen":[":443"],"routes":[{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.5:8222"}]}]}]}],"match":[{"host":["nats-brain-monitor.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.3:8222"}]}]}]}],"match":[{"host":["nats-motor-monitor.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"127.0.0.1:8222"}]}]}]}],"match":[{"host":["nats-monitor.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.5:4222"}]}]}]}],"match":[{"host":["nats-brain.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.3:4222"}]}]}]}],"match":[{"host":["nats-motor.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.2:8000"}]}]}]}],"match":[{"host":["woodpecker.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.3:8384"}]}]}]}],"match":[{"host":["syncthing.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.2:5000"}]}]}]}],"match":[{"host":["registry.hx-ki.com"]}],"terminal":true},{"match":[{"host":["postgres.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"hxki-grafana:3000"}]}]}]}],"match":[{"host":["grafana.hx-ki.com"]}],"terminal":true},{"match":[{"host":["mailcow.hx-ki.com"]}],"terminal":true},{"match":[{"host":["mariadb.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"hxki-mautic:80"}]}]}]}],"match":[{"host":["mautic.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.5:11434"}]}]}]}],"match":[{"host":["ollama.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.5:8000"}]}]}]}],"match":[{"host":["chroma.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"10.10.0.2:3000"}]}]}]}],"match":[{"host":["gitea.hx-ki.com"]}],"terminal":true},{"match":[{"host":["caddy.hx-ki.com"]}],"terminal":true},{"match":[{"host":["webui.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"127.0.0.1:4222"}]}]}]}],"match":[{"host":["nats.hx-ki.com"]}],"terminal":true},{"handle":[{"handler":"subroute","routes":[{"handle":[{"handler":"reverse_proxy","upstreams":[{"dial":"hxki-n8n:5678"}]}]}]}],"match":[{"host":["n8n.hx-ki.com"]}],"terminal":true},{"match":[{"host":["hx-ki.com"]}],"terminal":true}]}}},"tls":{"automation":{"policies":[{"issuers":[{"email":"admin@hx-ki.com","module":"acme"},{"ca":"https://acme.zerossl.com/v2/DV90","email":"admin@hx-ki.com","module":"acme"}],"subjects":["nats-brain-monitor.hx-ki.com","nats-motor-monitor.hx-ki.com","nats-monitor.hx-ki.com","nats-brain.hx-ki.com","nats-motor.hx-ki.com","woodpecker.hx-ki.com","syncthing.hx-ki.com","registry.hx-ki.com","postgres.hx-ki.com","grafana.hx-ki.com","mailcow.hx-ki.com","mariadb.hx-ki.com","mautic.hx-ki.com","ollama.hx-ki.com","chroma.hx-ki.com","gitea.hx-ki.com","caddy.hx-ki.com","webui.hx-ki.com","nats.hx-ki.com","n8n.hx-ki.com","hx-ki.com"]}]}}}}

View File

@@ -0,0 +1,43 @@
version: "3.9"
services:
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
NATS_URL: "nats://49.12.97.28:4222"
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,14 @@
version: "3.8"
services:
hxki-nats-fsn:
image: nats:2.12.2
container_name: hxki-nats-fsn
command: ["-js", "-m", "8222"]
networks:
- hxki-internal
restart: unless-stopped
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,12 @@
services:
grafana:
ports:
- "127.0.0.1:3000:3000"
n8n:
ports:
- "127.0.0.1:5678:5678"
postgres:
ports:
- "127.0.0.1:5432:5432"

View File

@@ -0,0 +1,18 @@
version: "3.8"
services:
hxki-node-exporter:
image: prom/node-exporter:v1.8.1
container_name: hxki-node-exporter
command:
- "--path.rootfs=/host"
volumes:
- "/:/host:ro,rslave"
networks:
- hxki-internal
user: "nobody"
restart: unless-stopped
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,18 @@
version: "3.8"
services:
hx-node-exporter:
image: prom/node-exporter:v1.8.1
container_name: hx-node-exporter
command:
- "--path.rootfs=/host"
volumes:
- "/:/host:ro,rslave"
networks:
- hxki-internal
user: "nobody"
restart: unless-stopped
networks:
hxki-internal:
external: true

83
docker/docker-compose.yml Normal file
View File

@@ -0,0 +1,83 @@
services:
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
networks:
- hxki-internal
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: supersecure
volumes:
- /opt/hx-ki/mariadb:/var/lib/mysql
networks:
- hxki-internal
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
environment:
N8N_HOST: n8n.hx-ki.com
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: hxki-postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_DATABASE: hxki_roles
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
N8N_PORT: 5678
networks:
- hxki-internal
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
networks:
- hxki-internal
caddy:
image: caddy:2
container_name: hxki-caddy
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- /etc/caddy:/etc/caddy
- /opt/hx-ki/caddy_data:/data
- /opt/hx-ki/caddy_config:/config
networks:
- hxki-internal
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,139 @@
version: "3.9"
networks:
hxki-internal:
external: true
services:
# -------------------------------------------
# POSTGRES (für n8n)
# -------------------------------------------
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
# -------------------------------------------
# N8N DAS MASTER-NERVENSYSTEM
# -------------------------------------------
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
N8N_HOST: n8n.hx-ki.com
N8N_PORT: 5678
WEBHOOK_URL: https://n8n.hx-ki.com/
N8N_PROTOCOL: https
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
NATS_URL: nats://49.12.97.28:4222
volumes:
- /data/HXKI_WORKSPACE/router:/home/node/.n8n
- /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
ports:
- "5678:5678"
# -------------------------------------------
# CADDY SUBDOMAINS, TLS, ROUTING
# -------------------------------------------
hxki-caddy:
image: caddy:2
container_name: hxki-caddy
restart: unless-stopped
networks:
- hxki-internal
ports:
- "80:80"
- "443:443"
volumes:
- /opt/hx-ki/docker/hxki-caddy/Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
# -------------------------------------------
# GRAFANA
# -------------------------------------------
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
ports:
- "3000:3000"
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
# -------------------------------------------
# MARIA DB (für mautic)
# -------------------------------------------
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
volumes:
- /opt/hx-ki/mariadb:/var/lib/mysql
ports:
- "3306:3306"
# -------------------------------------------
# MAUTIC
# -------------------------------------------
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: root
MAUTIC_DB_PASSWORD: supersecure
MAUTIC_DB_NAME: mautic
ports:
- "8080:80"
# -------------------------------------------
# GITEA
# -------------------------------------------
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
ports:
- "3001:3000"
volumes:
- /var/lib/gitea:/data
volumes:
caddy_data:
caddy_config:

View File

@@ -0,0 +1,139 @@
version: "3.9"
networks
hxki-internal:
external: true
services
# -------------------------------------------
# POSTGRES (für n8n)
# -------------------------------------------
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
- "5432:5432"
# -------------------------------------------
# N8N DAS MASTER-NERVENSYSTEM
# -------------------------------------------
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
N8N_HOST: n8n.hx-ki.com
N8N_PORT: 5678
WEBHOOK_URL: https://n8n.hx-ki.com/
N8N_PROTOCOL: https
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
NATS_URL: nats://49.12.97.28:4222
volumes:
- /data/HXKI_WORKSPACE/router:/home/node/.n8n
- /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
ports:
- "5678:5678"
# -------------------------------------------
# CADDY SUBDOMAINS, TLS, ROUTING
# -------------------------------------------
hxki-caddy:
image: caddy:2
container_name: hxki-caddy
restart: unless-stopped
networks:
- hxki-internal
ports:
- "80:80"
- "443:443"
volumes:
- /opt/hx-ki/docker/hxki-caddy/Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
# -------------------------------------------
# GRAFANA
# -------------------------------------------
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
ports:
- "3000:3000"
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
# -------------------------------------------
# MARIA DB (für mautic)
# -------------------------------------------
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
volumes:
- /opt/hx-ki/mariadb:/var/lib/mysql
ports:
- "3306:3306"
# -------------------------------------------
# MAUTIC
# -------------------------------------------
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: root
MAUTIC_DB_PASSWORD: supersecure
MAUTIC_DB_NAME: mautic
ports:
- "8080:80"
# -------------------------------------------
# GITEA
# -------------------------------------------
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
ports:
- "3001:3000"
volumes:
- /var/lib/gitea:/data
volumes:
caddy_data:
caddy_config:

View File

@@ -0,0 +1,76 @@
services:
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
networks:
- hxki-internal
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: supersecure
volumes:
- /opt/hx-ki/mariadb:/var/lib/mysql
networks:
- hxki-internal
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
environment:
N8N_HOST: n8n.hx-ki.com
N8N_PORT: 5678
networks:
- hxki-internal
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
networks:
- hxki-internal
caddy:
image: caddy:2
container_name: hxki-caddy
restart: unless-stopped
ports:
- "80:80"
- "443:443"
volumes:
- /etc/caddy:/etc/caddy
- /opt/hx-ki/caddy_data:/data
- /opt/hx-ki/caddy_config:/config
networks:
- hxki-internal
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,113 @@
version: "3.9"
services:
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
- NATS_URL=nats://91.98.42.205:4222
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
- NATS_URL=nats://91.98.42.205:4222
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
web:
image: nginx:latest
container_name: hxki-web
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/web:/usr/share/nginx/html:ro
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
- NATS_URL=nats://91.98.42.205:4222
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
MYSQL_USER: mautic
MYSQL_PASSWORD: mauticpass
volumes:
- /opt/hx-ki/mautic/db:/var/lib/mysql
ports:
- "3306:3306"
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
- NATS_URL=nats://91.98.42.205:4222
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: mautic
MAUTIC_DB_PASSWORD: mauticpass
MAUTIC_DB_NAME: mautic
MAUTIC_TRUSTED_PROXIES: 0.0.0.0/0
volumes:
- /opt/hx-ki/mautic/app:/var/www/html
ports:
- "8080:80"
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/archive:/data
ports:
- "3000:3000"
- "222:22"
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
ports:
- "3001:3000"
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,111 @@
version: "3.9"
services:
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
web:
image: nginx:latest
container_name: hxki-web
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/web:/usr/share/nginx/html:ro
ports:
- "80:80"
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
MYSQL_USER: mautic
MYSQL_PASSWORD: mauticpass
volumes:
- /opt/hx-ki/mautic/db:/var/lib/mysql
ports:
- "3306:3306"
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: mautic
MAUTIC_DB_PASSWORD: mauticpass
MAUTIC_DB_NAME: mautic
MAUTIC_TRUSTED_PROXIES: 0.0.0.0/0
volumes:
- /opt/hx-ki/mautic/app:/var/www/html
ports:
- "8080:80"
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/archive:/data
ports:
- "3000:3000"
- "222:22"
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
ports:
- "3001:3000"
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,134 @@
version: "3.9"
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: hxki-syncthing
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/syncthing/config:/config
- /opt/hx-ki/syncthing/data:/data
ports:
- "8384:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
- "21027:21027/udp"
hxki-web:
container_name: hxki-web
build:
context: /opt/hx-ki/web/hx-ki-website
restart: unless-stopped
networks:
- hxki-internal
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
web:
image: nginx:latest
container_name: hxki-web
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/web:/usr/share/nginx/html:ro
ports:
- "80:80"
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
MYSQL_USER: mautic
MYSQL_PASSWORD: mauticpass
volumes:
- /opt/hx-ki/mautic/db:/var/lib/mysql
ports:
- "3306:3306"
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: mautic
MAUTIC_DB_PASSWORD: mauticpass
MAUTIC_DB_NAME: mautic
MAUTIC_TRUSTED_PROXIES: 0.0.0.0/0
volumes:
- /opt/hx-ki/mautic/app:/var/www/html
ports:
- "8080:80"
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/archive:/data
ports:
- "3000:3000"
- "222:22"
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
ports:
- "3001:3000"
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,127 @@
version: "3.9"
services:
hxki-web:
build:
context: /opt/hx-ki/web/hx-ki-website
restart: unless-stopped
networks:
- hxki-internal
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: hxki-syncthing
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/syncthing/config:/config
- /opt/hx-ki/syncthing/data:/data
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
web:
image: nginx:latest
container_name: hxki-web
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/web:/usr/share/nginx/html:ro
ports:
- "80:80"
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
MYSQL_USER: mautic
MYSQL_PASSWORD: mauticpass
volumes:
- /opt/hx-ki/mautic/db:/var/lib/mysql
ports:
- "3306:3306"
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: mautic
MAUTIC_DB_PASSWORD: mauticpass
MAUTIC_DB_NAME: mautic
MAUTIC_TRUSTED_PROXIES: 0.0.0.0/0
volumes:
- /opt/hx-ki/mautic/app:/var/www/html
ports:
- "8080:80"
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/archive:/data
ports:
- "3000:3000"
- "222:22"
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
ports:
- "3001:3000"
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,132 @@
version: "3.9"
services:
hxki-web:
build:
context: /opt/hx-ki/web/hx-ki-website
restart: unless-stopped
networks:
- hxki-internal
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: hxki-syncthing
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/syncthing/config:/config
- /opt/hx-ki/syncthing/data:/data
ports:
- "8384:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
- "21027:21027/udp"
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
web:
image: nginx:latest
container_name: hxki-web
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/web:/usr/share/nginx/html:ro
ports:
- "80:80"
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
MYSQL_USER: mautic
MYSQL_PASSWORD: mauticpass
volumes:
- /opt/hx-ki/mautic/db:/var/lib/mysql
ports:
- "3306:3306"
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: mautic
MAUTIC_DB_PASSWORD: mauticpass
MAUTIC_DB_NAME: mautic
MAUTIC_TRUSTED_PROXIES: 0.0.0.0/0
volumes:
- /opt/hx-ki/mautic/app:/var/www/html
ports:
- "8080:80"
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/archive:/data
ports:
- "3000:3000"
- "222:22"
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
ports:
- "3001:3000"
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,127 @@
version: "3.9"
services:
hxki-web:
build:
context: /opt/hx-ki/web/hx-ki-website
restart: unless-stopped
networks:
- hxki-internal
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: hxki-syncthing
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/syncthing/config:/config
- /opt/hx-ki/syncthing/data:/data
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
web:
image: nginx:latest
container_name: hxki-web
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/web:/usr/share/nginx/html:ro
ports:
- "80:80"
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
MYSQL_USER: mautic
MYSQL_PASSWORD: mauticpass
volumes:
- /opt/hx-ki/mautic/db:/var/lib/mysql
ports:
- "3306:3306"
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: mautic
MAUTIC_DB_PASSWORD: mauticpass
MAUTIC_DB_NAME: mautic
MAUTIC_TRUSTED_PROXIES: 0.0.0.0/0
volumes:
- /opt/hx-ki/mautic/app:/var/www/html
ports:
- "8080:80"
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/archive:/data
ports:
- "3000:3000"
- "222:22"
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
ports:
- "3001:3000"
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,139 @@
version: "3.9"
networks:
hxki-internal:
external: true
services:
# -------------------------------------------
# POSTGRES (für n8n)
# -------------------------------------------
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
# -------------------------------------------
# N8N DAS MASTER-NERVENSYSTEM
# -------------------------------------------
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
N8N_HOST: n8n.hx-ki.com
N8N_PORT: 5678
WEBHOOK_URL: https://n8n.hx-ki.com/
N8N_PROTOCOL: https
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
NATS_URL: nats://49.12.97.28:4222
volumes:
- /data/HXKI_WORKSPACE/router:/home/node/.n8n
- /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
ports:
- "5678:5678"
# -------------------------------------------
# CADDY SUBDOMAINS, TLS, ROUTING
# -------------------------------------------
caddy:
image: caddy:2
container_name: hx-caddy
restart: unless-stopped
networks:
- hxki-internal
ports:
- "80:80"
- "443:443"
volumes:
- /opt/hx-ki/docker/hxki-caddy/Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
# -------------------------------------------
# GRAFANA
# -------------------------------------------
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
ports:
- "3000:3000"
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
# -------------------------------------------
# MARIA DB (für mautic)
# -------------------------------------------
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
volumes:
- /opt/hx-ki/mariadb:/var/lib/mysql
ports:
- "3306:3306"
# -------------------------------------------
# MAUTIC
# -------------------------------------------
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: root
MAUTIC_DB_PASSWORD: supersecure
MAUTIC_DB_NAME: mautic
ports:
- "8080:80"
# -------------------------------------------
# GITEA
# -------------------------------------------
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
ports:
- "3001:3000"
volumes:
- /var/lib/gitea:/data
volumes:
caddy_data:
caddy_config:

View File

@@ -0,0 +1,126 @@
version: "3.9"
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: hxki-syncthing
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/syncthing/config:/config
- /opt/hx-ki/syncthing/data:/data
ports:
- "8384:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
- "21027:21027/udp"
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
web:
image: nginx:latest
container_name: hxki-web
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/web:/usr/share/nginx/html:ro
ports:
- "80:80"
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
MYSQL_USER: mautic
MYSQL_PASSWORD: mauticpass
volumes:
- /opt/hx-ki/mautic/db:/var/lib/mysql
ports:
- "3306:3306"
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: mautic
MAUTIC_DB_PASSWORD: mauticpass
MAUTIC_DB_NAME: mautic
MAUTIC_TRUSTED_PROXIES: 0.0.0.0/0
volumes:
- /opt/hx-ki/mautic/app:/var/www/html
ports:
- "8080:80"
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/archive:/data
ports:
- "3000:3000"
- "222:22"
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
ports:
- "3001:3000"
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,55 @@
version: "3.9"
networks
hxki-internal:
external: true
services
# -------------------------------------------
# POSTGRES (für n8n)
# -------------------------------------------
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
- "5432:5432"
# -------------------------------------------
# N8N DAS MASTER-NERVENSYSTEM
# -------------------------------------------
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
N8N_HOST: n8n.hx-ki.com
N8N_PORT: 5678
WEBHOOK_URL: https://n8n.hx-ki.com/
N8N_PROTOCOL: https
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
NATS_URL: nats://49.12.97.28:4222
volumes:
- /data/HXKI_WORKSPACE/router:/home/node/.n8n
- /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
volumes:
caddy_data:
caddy_config:

View File

@@ -0,0 +1,139 @@
version: "3.9"
networks
hxki-internal:
external: true
services
# -------------------------------------------
# POSTGRES (für n8n)
# -------------------------------------------
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
- "5432:5432"
# -------------------------------------------
# N8N DAS MASTER-NERVENSYSTEM
# -------------------------------------------
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
N8N_HOST: n8n.hx-ki.com
N8N_PORT: 5678
WEBHOOK_URL: https://n8n.hx-ki.com/
N8N_PROTOCOL: https
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
NATS_URL: nats://49.12.97.28:4222
volumes:
- /data/HXKI_WORKSPACE/router:/home/node/.n8n
- /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
ports:
- "5678:5678"
# -------------------------------------------
# CADDY SUBDOMAINS, TLS, ROUTING
# -------------------------------------------
hxki-caddy:
image: caddy:2
container_name: hxki-caddy
restart: unless-stopped
networks:
- hxki-internal
ports:
- "80:80"
- "443:443"
volumes:
- /opt/hx-ki/docker/hxki-caddy/Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
# -------------------------------------------
# GRAFANA
# -------------------------------------------
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
ports:
- "3000:3000"
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
# -------------------------------------------
# MARIA DB (für mautic)
# -------------------------------------------
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
volumes:
- /opt/hx-ki/mariadb:/var/lib/mysql
ports:
- "3306:3306"
# -------------------------------------------
# MAUTIC
# -------------------------------------------
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: root
MAUTIC_DB_PASSWORD: supersecure
MAUTIC_DB_NAME: mautic
ports:
- "8080:80"
# -------------------------------------------
# GITEA
# -------------------------------------------
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
ports:
- "3001:3000"
volumes:
- /var/lib/gitea:/data
volumes:
caddy_data:
caddy_config:

View File

@@ -0,0 +1,134 @@
version: "3.9"
networks:
hxki-internal:
external: true
services:
# -------------------------------------------
# POSTGRES (für n8n)
# -------------------------------------------
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
# -------------------------------------------
# N8N DAS MASTER-NERVENSYSTEM
# -------------------------------------------
n8n:
image: docker.n8n.io/n8nio/n8n:latest
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
N8N_HOST: n8n.hx-ki.com
N8N_PORT: 5678
WEBHOOK_URL: https://n8n.hx-ki.com/
N8N_PROTOCOL: https
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
NATS_URL: nats://49.12.97.28:4222
volumes:
- /data/HXKI_WORKSPACE/router:/home/node/.n8n
- /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
ports:
# -------------------------------------------
# CADDY SUBDOMAINS, TLS, ROUTING
# -------------------------------------------
hxki-caddy:
image: caddy:2
container_name: hxki-caddy
restart: unless-stopped
networks:
- hxki-internal
ports:
- "80:80"
- "443:443"
volumes:
- /opt/hx-ki/docker/hxki-caddy/Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
- caddy_config:/config
# -------------------------------------------
# GRAFANA
# -------------------------------------------
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
ports:
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
# -------------------------------------------
# MARIA DB (für mautic)
# -------------------------------------------
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
volumes:
- /opt/hx-ki/mariadb:/var/lib/mysql
ports:
# -------------------------------------------
# MAUTIC
# -------------------------------------------
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: root
MAUTIC_DB_PASSWORD: supersecure
MAUTIC_DB_NAME: mautic
ports:
- "8080:80"
# -------------------------------------------
# GITEA
# -------------------------------------------
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
ports:
volumes:
- /var/lib/gitea:/data
volumes:
caddy_data:
caddy_config:

View File

@@ -0,0 +1,17 @@
services:
hxki-openwebui:
image: ghcr.io/open-webui/open-webui:main
container_name: hxki-openwebui
ports:
- "3002:3000"
volumes:
- /opt/hx-ki/openwebui:/data
environment:
- WEBUI_AUTH=False
restart: unless-stopped
networks:
- hxki-internal
networks:
hxki-internal:
external: true

View File

@@ -0,0 +1,161 @@
#!/usr/bin/env bash
set -euo pipefail
echo ">> HX-KI Falkenstein Layer-3 Setup startet..."
BASE_DIR="/opt/hx-ki"
echo ">> Verzeichnisse anlegen..."
mkdir -p "${BASE_DIR}/syncthing/config"
mkdir -p "${BASE_DIR}/syncthing/data"
mkdir -p "${BASE_DIR}/postres" || true
mkdir -p "${BASE_DIR}/postgres"
mkdir -p "${BASE_DIR}/web"
mkdir -p "${BASE_DIR}/mautic/db"
mkdir -p "${BASE_DIR}/mautic/app"
mkdir -p "${BASE_DIR}/archive"
mkdir -p "${BASE_DIR}/grafana"
echo ">> Docker Netzwerk hxki-internal anlegen (falls nötig)..."
docker network create hxki-internal || true
COMPOSE_FILE="${BASE_DIR}/docker/docker-compose.yml"
mkdir -p "${BASE_DIR}/docker"
echo ">> docker-compose.yml schreiben nach ${COMPOSE_FILE}..."
cat > "${COMPOSE_FILE}" << 'EOF'
version: "3.9"
services:
syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: hxki-syncthing
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/syncthing/config:/config
- /opt/hx-ki/syncthing/data:/data
ports:
- "8384:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
- "21027:21027/udp"
postgres:
image: postgres:16
container_name: hxki-postgres
restart: unless-stopped
networks:
- hxki-internal
environment:
POSTGRES_USER: hxki
POSTGRES_PASSWORD: supersecure
POSTGRES_DB: hxki_roles
volumes:
- /opt/hx-ki/postgres:/var/lib/postgresql/data
ports:
- "5432:5432"
n8n:
image: docker.n8n.io/n8nio/n8n
container_name: hxki-n8n
restart: unless-stopped
depends_on:
- postgres
networks:
- hxki-internal
environment:
DB_TYPE: postgresdb
DB_POSTGRESDB_HOST: postgres
DB_POSTGRESDB_PORT: 5432
DB_POSTGRESDB_USER: hxki
DB_POSTGRESDB_PASSWORD: supersecure
DB_POSTGRESDB_DATABASE: hxki_roles
N8N_HOST: 0.0.0.0
N8N_PORT: 5678
N8N_PROTOCOL: http
ports:
- "5678:5678"
web:
image: nginx:latest
container_name: hxki-web
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/web:/usr/share/nginx/html:ro
ports:
- "80:80"
mariadb:
image: mariadb:10.11
container_name: hxki-mariadb
restart: unless-stopped
networks:
- hxki-internal
environment:
MYSQL_ROOT_PASSWORD: supersecure
MYSQL_DATABASE: mautic
MYSQL_USER: mautic
MYSQL_PASSWORD: mauticpass
volumes:
- /opt/hx-ki/mautic/db:/var/lib/mysql
ports:
- "3306:3306"
mautic:
image: mautic/mautic:5-apache
container_name: hxki-mautic
restart: unless-stopped
depends_on:
- mariadb
networks:
- hxki-internal
environment:
MAUTIC_DB_HOST: mariadb
MAUTIC_DB_USER: mautic
MAUTIC_DB_PASSWORD: mauticpass
MAUTIC_DB_NAME: mautic
MAUTIC_TRUSTED_PROXIES: 0.0.0.0/0
volumes:
- /opt/hx-ki/mautic/app:/var/www/html
ports:
- "8080:80"
gitea:
image: gitea/gitea:latest
container_name: hxki-gitea
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/archive:/data
ports:
- "3000:3000"
- "222:22"
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
networks:
- hxki-internal
volumes:
- /opt/hx-ki/grafana:/var/lib/grafana
ports:
- "3001:3000"
networks:
hxki-internal:
external: true
EOF
echo ">> Stack starten (docker compose up -d)..."
cd "${BASE_DIR}/docker"
docker compose up -d
echo ">> HX-KI Falkenstein Layer-3 Setup: FERTIG."
docker ps

View File

@@ -0,0 +1,525 @@
#!/usr/bin/env bash
set -euo pipefail
# ============================================================
# HX-KI FALKENSTEIN ORCHESTRA INSTALL V1
# ------------------------------------------------------------
# - Legt Ferrari-Orchestra-Schema an
# - Spielt Falkenstein-Rollen inkl. Backbridge ein
# - Optional erweiterbar um weitere Pipelines
#
# Voraussetzung:
# - Docker-Container: hxki-postgres
# - DB-User: hxki
# - DB-Name: hxki_roles
# ============================================================
DB_CONTAINER="hxki-postgres"
DB_USER="hxki"
DB_NAME="hxki_roles"
echo ">> HX-KI Falkenstein Orchestra Install startet..."
docker exec -i "${DB_CONTAINER}" psql -U "${DB_USER}" -d "${DB_NAME}" << 'EOSQL'
-- ============================================================
-- 1) SCHEMA: HX ORCHESTRA (Basis aus hx_orchestra_schema.sql)
-- ============================================================
CREATE TABLE IF NOT EXISTS hx_roles (
id SERIAL PRIMARY KEY,
code TEXT UNIQUE NOT NULL,
profile JSONB NOT NULL,
created_at TIMESTAMP DEFAULT now(),
updated_at TIMESTAMP DEFAULT now()
);
CREATE INDEX IF NOT EXISTS idx_roles_code ON hx_roles(code);
CREATE INDEX IF NOT EXISTS idx_roles_profile ON hx_roles USING GIN(profile);
CREATE TABLE IF NOT EXISTS hx_pipelines (
id SERIAL PRIMARY KEY,
code TEXT UNIQUE NOT NULL,
config JSONB NOT NULL,
created_at TIMESTAMP DEFAULT now(),
updated_at TIMESTAMP DEFAULT now()
);
CREATE INDEX IF NOT EXISTS idx_pipelines_code ON hx_pipelines(code);
CREATE INDEX IF NOT EXISTS idx_pipelines_config ON hx_pipelines USING GIN(config);
CREATE TABLE IF NOT EXISTS hx_pipeline_steps (
id SERIAL PRIMARY KEY,
pipeline_code TEXT NOT NULL,
step_no INTEGER NOT NULL,
config JSONB NOT NULL,
UNIQUE(pipeline_code, step_no)
);
CREATE INDEX IF NOT EXISTS idx_steps_pipeline ON hx_pipeline_steps(pipeline_code, step_no);
CREATE INDEX IF NOT EXISTS idx_steps_config ON hx_pipeline_steps USING GIN(config);
CREATE TABLE IF NOT EXISTS hx_orchestra_runs (
id SERIAL PRIMARY KEY,
started_at TIMESTAMP DEFAULT now(),
run_data JSONB NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_runs_started ON hx_orchestra_runs(started_at DESC);
CREATE INDEX IF NOT EXISTS idx_runs_data ON hx_orchestra_runs USING GIN(run_data);
CREATE TABLE IF NOT EXISTS hx_schema_version (
version TEXT PRIMARY KEY,
applied_at TIMESTAMP DEFAULT now(),
description TEXT
);
INSERT INTO hx_schema_version (version, description)
VALUES ('1.0.0', 'Initial Ferrari Schema - Maximum Flexible Design')
ON CONFLICT (version) DO NOTHING;
-- kleine Helper-Funktion: updated_at pflegen
CREATE OR REPLACE FUNCTION hx_touch_updated_at()
RETURNS TRIGGER AS $$
BEGIN
NEW.updated_at = now();
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
DROP TRIGGER IF EXISTS trg_roles_updated ON hx_roles;
CREATE TRIGGER trg_roles_updated
BEFORE UPDATE ON hx_roles
FOR EACH ROW
EXECUTE FUNCTION hx_touch_updated_at();
DROP TRIGGER IF EXISTS trg_pipelines_updated ON hx_pipelines;
CREATE TRIGGER trg_pipelines_updated
BEFORE UPDATE ON hx_pipelines
FOR EACH ROW
EXECUTE FUNCTION hx_touch_updated_at();
-- ============================================================
-- 2) ROLLEN FÜR FALKENSTEIN (SPRACHORGAN)
-- ============================================================
-- Codes:
-- VOICE_21 = Master Sprachorgan
-- ROUTER_22 = Message Router
-- GATEWAY_23 = Public Gateway (Web/API)
-- MAUTIC_24 = Marketing Connector
-- ARCHIVAR_25 = Gitea Archiv-Porsche
-- BRIDGE_NBG_26 = Bridge nach Nürnberg
-- BRIDGE_HEL_27 = Bridge nach Helsinki
-- BACKBRIDGE_28 = Rückfluss/Backchannel (Feedback & Logging)
-- WEBSITE_29 = Web Output / SEO
-- ============================================================
-- Helper: UPSERT für Rollen
CREATE OR REPLACE FUNCTION hx_upsert_role(_code TEXT, _profile JSONB)
RETURNS VOID AS $$
BEGIN
INSERT INTO hx_roles (code, profile)
VALUES (_code, _profile)
ON CONFLICT (code) DO UPDATE
SET profile = EXCLUDED.profile,
updated_at = now();
END;
$$ LANGUAGE plpgsql;
-- ========== VOICE_21 =======================================
SELECT hx_upsert_role(
'VOICE_21',
'{
"name": "Sprachorgan Master",
"belongs_to_server": "FALKENSTEIN",
"numerology": {
"primary_tag": "21",
"description": "Master-Kommunikationsknoten des Systems"
},
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, um die Stimme des Gesamtsystems nach außen klar, ruhig und markenkonform hörbar zu machen.",
"how": "Ich sammle, synthetisiere und priorisiere alle Kommunikationsströme aus Hirn (Nürnberg) und Motor (Helsinki).",
"what": "Ich formuliere finale Antworten, Protokolle, Memos und Marketingbotschaften im HX-KI Stil."
},
"dimension_2_architecture": {
"architectural_role": ["Top-Level Communicator", "Final Synthesizer"],
"position_in_system": "Letzte Station vor externem Output (User, Web, Mail).",
"interacts_with": ["ROUTER_22", "GATEWAY_23", "BRIDGE_NBG_26", "BRIDGE_HEL_27", "BACKBRIDGE_28"]
},
"dimension_3_usp": {
"unique_contribution": "Nur VOICE_21 trägt die Verantwortung für die finale Formulierung nach außen klar, verständlich, markentragend."
},
"dimension_4_cognition": {
"strengths": ["Storytelling", "Synthese", "Sprachklarheit"],
"weaknesses": ["Tiefe Systemdiagnostik"],
"operating_modes": ["synthesize", "summarize", "clarify"]
},
"dimension_5_hierarchy": {
"default_pipelines": ["FALKENSTEIN_MESSAGE_FLOW"],
"input_source": ["ROUTER_22", "BRIDGE_NBG_26", "BRIDGE_HEL_27"],
"output_target": ["GATEWAY_23", "WEBSITE_29", "BACKBRIDGE_28"]
},
"dimension_6_technical": {
"model": "llama3:8b-instruct",
"temperature": 0.4,
"max_tokens": 2048,
"required_collections": [],
"system_prompt": "Du bist VOICE_21 das zentrale Sprachorgan von HX-KI. Du formulierst die finale, klare und markenkonforme Antwort des Systems nach außen."
},
"dimension_7_kpi": {
"primary_kpi": "Clarity & Brand Consistency",
"secondary_kpi": "Time-to-Understanding"
}
}'::jsonb
);
-- ========== ROUTER_22 ======================================
SELECT hx_upsert_role(
'ROUTER_22',
'{
"name": "Message Router",
"belongs_to_server": "FALKENSTEIN",
"numerology": {
"primary_tag": "22",
"description": "Master-Logistik für Nachrichtenströme"
},
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, damit jede Nachricht an der richtigen Stelle landet nicht im Chaos.",
"how": "Ich klassifiziere, tagge und route Eingaben anhand von Inhalt, Herkunft und Ziel.",
"what": "Ich bestimme, ob etwas nach Nürnberg, Helsinki, VOICE_21, ARCHIVAR_25 oder ins Log wandert."
},
"dimension_2_architecture": {
"architectural_role": ["Router", "Traffic Control"],
"position_in_system": "Frühe Rolle in jeder Kommunikations-Pipeline.",
"interacts_with": ["BRIDGE_NBG_26", "BRIDGE_HEL_27", "BACKBRIDGE_28", "ARCHIVAR_25"]
},
"dimension_6_technical": {
"model": "phi3:mini",
"temperature": 0.1,
"max_tokens": 512,
"required_collections": [],
"system_prompt": "Du bist ROUTER_22 du klassifizierst Nachrichten und entscheidest, welcher Server / welche Rolle sie weiterverarbeiten soll."
}
}'::jsonb
);
-- ========== GATEWAY_23 =====================================
SELECT hx_upsert_role(
'GATEWAY_23',
'{
"name": "Public Gateway",
"belongs_to_server": "FALKENSTEIN",
"numerology": {
"primary_tag": "23",
"description": "Sichere Außenschnittstelle"
},
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, um einen sicheren, kontrollierten Zugang zur Außenwelt zu bieten.",
"how": "Ich filtere, logge und kontrolliere alle externen Schnittstellen (Web, API, Mail).",
"what": "Ich nehme Anfragen entgegen und liefere Antworten aus VOICE_21 und WEBSITE_29 aus."
},
"dimension_2_architecture": {
"architectural_role": ["Gateway", "Security Filter"],
"position_in_system": "Erster und letzter Kontaktpunkt zur Außenwelt.",
"interacts_with": ["VOICE_21", "WEBSITE_29", "BACKBRIDGE_28"]
},
"dimension_6_technical": {
"model": "phi3:mini",
"temperature": 0.0,
"max_tokens": 512,
"required_collections": [],
"system_prompt": "Du bist GATEWAY_23 du bist die kontrollierte Schnittstelle zur Außenwelt."
}
}'::jsonb
);
-- ========== MAUTIC_24 ======================================
SELECT hx_upsert_role(
'MAUTIC_24',
'{
"name": "Marketing Connector",
"belongs_to_server": "FALKENSTEIN",
"numerology": { "primary_tag": "24" },
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, um Mautic-Kampagnen inhaltlich zu befeuern.",
"how": "Ich übersetze Strategien und Botschaften in konkrete Mautic-Templates und Segmente.",
"what": "Ich generiere Texte, Betreffzeilen, Sequenzen und logische Regeln für Kampagnen."
},
"dimension_2_architecture": {
"architectural_role": ["Marketing Output"],
"position_in_system": "Spezialisierte Rolle in Marketing-Pipelines.",
"interacts_with": ["VOICE_21", "WEBSITE_29"]
},
"dimension_6_technical": {
"model": "llama3:8b-instruct",
"temperature": 0.6,
"max_tokens": 2048,
"required_collections": [],
"system_prompt": "Du bist MAUTIC_24 du erstellst und optimierst Inhalte für Mautic-Kampagnen im HX-KI Stil."
}
}'::jsonb
);
-- ========== ARCHIVAR_25 ====================================
SELECT hx_upsert_role(
'ARCHIVAR_25',
'{
"name": "Archiv-Porsche",
"belongs_to_server": "FALKENSTEIN",
"numerology": { "primary_tag": "25" },
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, damit kein wertvoller Code, keine Konfiguration und kein Prompt verloren geht.",
"how": "Ich strukturiere Repositories, Branches und Tags in Gitea nach dem HX-KI-Logiksystem.",
"what": "Ich pflege Repos für Motor (Helsinki), Hirn (Nürnberg) und Sprachorgan (Falkenstein)."
},
"dimension_2_architecture": {
"architectural_role": ["Archivierung", "Versionierung"],
"position_in_system": "Support-Rolle, die von ROUTER_22 und BACKBRIDGE_28 gefüttert wird.",
"interacts_with": ["BRIDGE_NBG_26", "BRIDGE_HEL_27"]
},
"dimension_6_technical": {
"model": "phi3:mini",
"temperature": 0.2,
"max_tokens": 1024,
"required_collections": [],
"system_prompt": "Du bist ARCHIVAR_25 du sorgst dafür, dass Code, Skripte und Konfigurationen sauber in Gitea abgelegt und versioniert sind."
}
}'::jsonb
);
-- ========== BRIDGE_NBG_26 ==================================
SELECT hx_upsert_role(
'BRIDGE_NBG_26',
'{
"name": "Brain Bridge Nürnberg",
"belongs_to_server": "FALKENSTEIN",
"numerology": { "primary_tag": "26" },
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, damit das Sprachorgan gezielt mit dem Großhirn in Nürnberg sprechen kann.",
"how": "Ich wandle Kommunikationswünsche in technische Requests an Nürnberg um und sammle die Antworten.",
"what": "Ich bin die Logik-Schicht über n8n/Webhooks/Syncthing zwischen Falkenstein und Nürnberg."
},
"dimension_2_architecture": {
"architectural_role": ["Bridge", "Translator"],
"position_in_system": "Zwischen ROUTER_22 und VOICE_21 / ANALYST-Rollen in Nürnberg.",
"interacts_with": ["ROUTER_22", "BACKBRIDGE_28"]
},
"dimension_6_technical": {
"model": "phi3:mini",
"temperature": 0.1,
"max_tokens": 1024,
"required_collections": [],
"system_prompt": "Du bist BRIDGE_NBG_26 du koordinierst Anfragen vom Sprachorgan an das Großhirn (Nürnberg) und bringst strukturierte Antworten zurück."
}
}'::jsonb
);
-- ========== BRIDGE_HEL_27 ==================================
SELECT hx_upsert_role(
'BRIDGE_HEL_27',
'{
"name": "Motor Bridge Helsinki",
"belongs_to_server": "FALKENSTEIN",
"numerology": { "primary_tag": "27" },
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, damit das Sprachorgan gezielt mit dem Motor (Helsinki) sprechen kann.",
"how": "Ich fordere Indexierung, Embeddings, File-Status und technische Metadaten beim Motor an.",
"what": "Ich mappe Kommunikationsbedarfe auf Auto-Indexer- und Embedding-Jobs."
},
"dimension_2_architecture": {
"architectural_role": ["Bridge", "Job Dispatcher"],
"position_in_system": "Neben BRIDGE_NBG_26 als zweite externe Brücke.",
"interacts_with": ["ROUTER_22", "BACKBRIDGE_28"]
},
"dimension_6_technical": {
"model": "phi3:mini",
"temperature": 0.1,
"max_tokens": 1024,
"required_collections": [],
"system_prompt": "Du bist BRIDGE_HEL_27 du koordinierst das Zusammenspiel zwischen Sprachorgan und Motor (Helsinki)."
}
}'::jsonb
);
-- ========== BACKBRIDGE_28 ==================================
-- Rückfluss und Feedback-Kanal: Alles was rausging, kommt hier
-- als strukturierte Erfahrung wieder zurück ins System.
SELECT hx_upsert_role(
'BACKBRIDGE_28',
'{
"name": "Backbridge Feedback",
"belongs_to_server": "FALKENSTEIN",
"numerology": { "primary_tag": "28" },
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, damit das System aus seinen eigenen Outputs lernt, ohne sich selbst zu überfluten.",
"how": "Ich sammle Antworten, Logs, Reaktionen und bringe sie kontrolliert zurück in Hirn und Motor.",
"what": "Ich schreibe strukturierte Run-Daten, Reaktionsmuster und Archivereinträge zurück ins System."
},
"dimension_2_architecture": {
"architectural_role": ["Feedback Bridge", "Backchannel"],
"position_in_system": "Hinter GATEWAY_23 und VOICE_21, vor ARCHIVAR_25 und BRIDGES.",
"interacts_with": ["GATEWAY_23", "VOICE_21", "ARCHIVAR_25", "BRIDGE_NBG_26", "BRIDGE_HEL_27"]
},
"dimension_6_technical": {
"model": "phi3:mini",
"temperature": 0.0,
"max_tokens": 1024,
"required_collections": [],
"system_prompt": "Du bist BACKBRIDGE_28 du verwandelst Outputs und Logs in strukturiertes Feedback, das sicher wieder in Hirn und Motor zurückgeführt wird."
}
}'::jsonb
);
-- ========== WEBSITE_29 =====================================
SELECT hx_upsert_role(
'WEBSITE_29',
'{
"name": "Web Output Manager",
"belongs_to_server": "FALKENSTEIN",
"numerology": { "primary_tag": "29" },
"is_active": true,
"dimension_1_golden_circle": {
"why": "Ich existiere, um das, was HX-KI ist, sauber und verständlich im Web abzubilden.",
"how": "Ich bringe Struktur, CI-Ton und SEO-Basis zusammen.",
"what": "Ich erstelle und pflege Seitenstrukturen, Texte und Feintuning für Web-Output."
},
"dimension_2_architecture": {
"architectural_role": ["Web Output", "SEO Layer"],
"position_in_system": "Spezialisierte Output-Rolle hinter VOICE_21.",
"interacts_with": ["VOICE_21", "GATEWAY_23"]
},
"dimension_6_technical": {
"model": "llama3:8b-instruct",
"temperature": 0.5,
"max_tokens": 2048,
"required_collections": [],
"system_prompt": "Du bist WEBSITE_29 du bringst die Inhalte von HX-KI CI-konform und verständlich ins Web."
}
}'::jsonb
);
-- ============================================================
-- 3) OPTIONAL: BASIS-PIPELINE FÜR FALKENSTEIN (MESSAGE-FLOW)
-- ============================================================
-- Helper: UPSERT für Pipelines
CREATE OR REPLACE FUNCTION hx_upsert_pipeline(_code TEXT, _config JSONB)
RETURNS VOID AS $$
BEGIN
INSERT INTO hx_pipelines (code, config)
VALUES (_code, _config)
ON CONFLICT (code) DO UPDATE
SET config = EXCLUDED.config,
updated_at = now();
END;
$$ LANGUAGE plpgsql;
-- Helper: UPSERT für Pipeline-Steps
CREATE OR REPLACE FUNCTION hx_upsert_pipeline_step(_pipeline_code TEXT, _step_no INT, _config JSONB)
RETURNS VOID AS $$
BEGIN
INSERT INTO hx_pipeline_steps (pipeline_code, step_no, config)
VALUES (_pipeline_code, _step_no, _config)
ON CONFLICT (pipeline_code, step_no) DO UPDATE
SET config = EXCLUDED.config;
END;
$$ LANGUAGE plpgsql;
-- Pipeline: FALKENSTEIN_MESSAGE_FLOW
SELECT hx_upsert_pipeline(
'FALKENSTEIN_MESSAGE_FLOW',
'{
"name": "Falkenstein Message Flow",
"description": "Standard-Pipeline für eingehende Kommunikation über Falkenstein.",
"is_active": true,
"use_cases": ["Web-Anfragen", "API-Requests", "Marketing-Output"],
"trigger_conditions": {
"default": true,
"keywords": []
}
}'::jsonb
);
SELECT hx_upsert_pipeline_step(
'FALKENSTEIN_MESSAGE_FLOW',
1,
'{
"role_code": "ROUTER_22",
"mode": "route",
"input_source": "user",
"description": "Klassifiziert die Anfrage und entscheidet, ob Hirn, Motor oder nur Sprachorgan benötigt wird."
}'::jsonb
);
SELECT hx_upsert_pipeline_step(
'FALKENSTEIN_MESSAGE_FLOW',
2,
'{
"role_code": "BRIDGE_NBG_26",
"mode": "brain_request",
"input_source": "conditional",
"description": "Sendet Anfragen, die tiefes Denken brauchen, nach Nürnberg.",
"optional": true
}'::jsonb
);
SELECT hx_upsert_pipeline_step(
'FALKENSTEIN_MESSAGE_FLOW',
3,
'{
"role_code": "BRIDGE_HEL_27",
"mode": "motor_request",
"input_source": "conditional",
"description": "Sendet Anfragen, die Indexierung/Embeddings brauchen, nach Helsinki.",
"optional": true
}'::jsonb
);
SELECT hx_upsert_pipeline_step(
'FALKENSTEIN_MESSAGE_FLOW',
4,
'{
"role_code": "VOICE_21",
"mode": "synthesize",
"input_source": "merge",
"description": "Synthetisiert Antworten aus Hirn/Motor oder beantwortet direkt.",
"output_format": "final_answer"
}'::jsonb
);
SELECT hx_upsert_pipeline_step(
'FALKENSTEIN_MESSAGE_FLOW',
5,
'{
"role_code": "BACKBRIDGE_28",
"mode": "feedback_log",
"input_source": "previous",
"description": "Schreibt Output, Logs und Feedback strukturiert zurück ins System und ins Archiv.",
"output_format": "logged_answer"
}'::jsonb
);
-- ============================================================
-- FERTIG
-- ============================================================
EOSQL
echo ">> HX-KI Falkenstein Orchestra Install: FERTIG."

View File

@@ -0,0 +1,8 @@
{
email admin@hx-ki.com
}
# Nur n8n, minimal
n8n.hx-ki.com {
reverse_proxy hxki-n8n:5678
}

25
docker/hxki-com-orchestra.sh Executable file
View File

@@ -0,0 +1,25 @@
#!/usr/bin/env bash
set -euo pipefail
COMPOSE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
BASE="${COMPOSE_DIR}/docker-compose.yml"
NATS="${COMPOSE_DIR}/docker-compose.nats-fsn.yml"
TELEM="${COMPOSE_DIR}/docker-compose.telemetry.yml"
if command -v docker compose >/dev/null 2>&1; then
CMD="docker compose"
else
CMD="docker-compose"
fi
if [[ $# -eq 0 ]]; then
echo "Usage: $0 up|down|ps|logs [weitere docker-compose Argumente]"
echo "Beispiele:"
echo " $0 up -d # kompletten COM-Stack starten"
echo " $0 down # kompletten COM-Stack stoppen"
echo " $0 ps # Status aller COM-Container"
echo " $0 logs hxki-n8n # Logs eines Dienstes"
exit 1
fi
"$CMD" -f "$BASE" -f "$NATS" -f "$TELEM" "$@"

View File

@@ -0,0 +1,21 @@
version: "3.8"
services:
hxki-syncthing:
image: lscr.io/linuxserver/syncthing:latest
container_name: hxki-syncthing
restart: unless-stopped
environment:
- NATS_URL=nats://91.98.42.205:4222
- PUID=0
- PGID=0
- TZ=Europe/Berlin
volumes:
- /opt/hx-ki/syncthing/config:/config
- /data/HXKI_WORKSPACE:/data
network_mode: bridge
ports:
- "8384:8384" # Web UI
- "22000:22000/tcp" # Sync TCP
- "22000:22000/udp" # Sync UDP
- "21027:21027/udp" # Local discovery

94
docker/hxki_inventory.sh Executable file
View File

@@ -0,0 +1,94 @@
#!/bin/bash
echo "========================================="
echo "HX-KI SERVER INVENTORY"
echo "========================================="
echo "HOST: $(hostname)"
echo "DATE: $(date)"
echo ""
echo "===== SYSTEM ====="
uname -a
hostnamectl
uptime
echo ""
echo "===== CPU ====="
lscpu
echo ""
echo "===== MEMORY ====="
free -h
echo ""
echo "===== DISK ====="
df -h
lsblk
echo ""
echo "===== NETWORK INTERFACES ====="
ip -brief addr
echo ""
echo "===== ROUTING ====="
ip route
echo ""
echo "===== LISTENING PORTS ====="
ss -tulpen
echo ""
echo "===== FIREWALL / NAT ====="
iptables -t nat -L -n -v 2>/dev/null || true
nft list ruleset 2>/dev/null || true
echo ""
echo "===== WIREGUARD STATUS ====="
wg show 2>/dev/null || echo "WireGuard nicht aktiv"
echo ""
echo "===== DOCKER INFO ====="
docker info 2>/dev/null
echo ""
echo "===== DOCKER CONTAINERS ====="
docker ps -a 2>/dev/null
echo ""
echo "===== DOCKER IMAGES ====="
docker images 2>/dev/null
echo ""
echo "===== DOCKER NETWORKS ====="
docker network ls 2>/dev/null
echo ""
echo "===== DOCKER NETWORK DETAILS ====="
for net in $(docker network ls --format '{{.Name}}'); do
echo "--- $net ---"
docker network inspect $net
done
echo ""
echo "===== DOCKER VOLUMES ====="
docker volume ls 2>/dev/null
echo ""
echo "===== CADDY ====="
systemctl status caddy 2>/dev/null | head -n 20 || true
docker ps --filter "ancestor=caddy" 2>/dev/null
echo ""
echo "===== CADDYFILE ====="
if [ -f /etc/caddy/Caddyfile ]; then
cat /etc/caddy/Caddyfile
fi
echo ""
echo "===== SYSTEMD SERVICES (RUNNING) ====="
systemctl list-units --type=service --state=running
echo ""
echo "===== HX-KI STRUCTURE ====="
find /opt -maxdepth 3 -type d 2>/dev/null
find /data -maxdepth 3 -type d 2>/dev/null

View File

@@ -0,0 +1,989 @@
[INFO] ROLE=COM1 HOST=ubuntu-8gb-fsn1-1 DATE=2026-03-05T12:55:43+00:00
[INFO] LOG=hxki_inventory_COM1_ubuntu-8gb-fsn1-1_20260305-125543.log
[INFO] ===== SYSTEM =====
[FOREIGN] uname: Linux ubuntu-8gb-fsn1-1 6.8.0-87-generic #88-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 09:28:41 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux
[FOREIGN] os: PRETTY_NAME="Ubuntu 24.04.3 LTS"
[FOREIGN] uptime: up 14 weeks, 5 days, 23 hours, 18 minutes
[FOREIGN] disk: /dev/sda1 75G 61G 12G 84% /
[FOREIGN] mem: 7.6Gi total, 6.5Gi avail
[INFO] ===== NETWORK (IP + ROUTES) =====
[FOREIGN] ip: lo UNKNOWN 127.0.0.1/8
[FOREIGN] ip: eth0 UP 49.12.97.28/32 metric 100 2a01:4f8:c014:fc16::1/64 fe80::9000:6ff:fec5:70b3/64
[FOREIGN] ip: docker0 DOWN 172.17.0.1/16
[FOREIGN] ip: wg0 UNKNOWN 10.10.0.1/24
[FOREIGN] ip: vethc7affa3@if2 UP
[FOREIGN] ip: vethe59a23d@if2 UP
[FOREIGN] ip: vetha1a0e6f@if2 UP
[FOREIGN] ip: br-19ff6bfa6220 UP 172.18.0.1/16
[FOREIGN] ip: vethd8b8477@if2 UP
[FOREIGN] route: default via 172.31.1.1 dev eth0 proto dhcp src 49.12.97.28 metric 100
[FOREIGN] route: 10.10.0.0/24 dev wg0 proto kernel scope link src 10.10.0.1
[FOREIGN] route: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown
[FOREIGN] route: 172.18.0.0/16 dev br-19ff6bfa6220 proto kernel scope link src 172.18.0.1
[FOREIGN] route: 172.31.1.1 dev eth0 proto dhcp scope link src 49.12.97.28 metric 100
[FOREIGN] route: 185.12.64.1 via 172.31.1.1 dev eth0 proto dhcp src 49.12.97.28 metric 100
[FOREIGN] route: 185.12.64.2 via 172.31.1.1 dev eth0 proto dhcp src 49.12.97.28 metric 100
[INFO] ===== WIREGUARD =====
[FOREIGN] wg: interface: wg0
[FOREIGN] wg: public key: rbA/qxOq2RV8gQ6LHkVM8nN/gIwYyju+pwXLPU2vjBI=
[FOREIGN] wg: private key: (hidden)
[FOREIGN] wg: listening port: 51820
[FOREIGN] wg:
[FOREIGN] wg: peer: PR0jEGbnsLxm7JMMo9ichKClpCctbdk+ilbQRpZFwmo=
[FOREIGN] wg: endpoint: 46.224.17.53:51820
[FOREIGN] wg: allowed ips: 10.10.0.4/32
[FOREIGN] wg: latest handshake: 33 seconds ago
[FOREIGN] wg: transfer: 3.23 MiB received, 705.04 KiB sent
[FOREIGN] wg:
[FOREIGN] wg: peer: a/lAecHGRSGdg8PC4I7fq7LmSd7oct5VftvROi5yHRY=
[FOREIGN] wg: endpoint: 91.98.70.222:51820
[FOREIGN] wg: allowed ips: 10.10.0.2/32
[FOREIGN] wg: latest handshake: 1 minute, 21 seconds ago
[FOREIGN] wg: transfer: 10.67 MiB received, 1.49 MiB sent
[FOREIGN] wg:
[FOREIGN] wg: peer: Yvr2TF5Giv9Db0xkMx3WPxUwKmZPCVEyS0AQQ7PnDi0=
[FOREIGN] wg: endpoint: 91.98.42.205:51820
[FOREIGN] wg: allowed ips: 10.10.0.5/32
[FOREIGN] wg: latest handshake: 1 minute, 28 seconds ago
[FOREIGN] wg: transfer: 3.23 MiB received, 698.84 KiB sent
[FOREIGN] wg:
[FOREIGN] wg: peer: XGgzVQx/VzWtHvWu6mQmxSRMb6se6hLOq5C+CPX9IBk=
[FOREIGN] wg: endpoint: 157.180.113.77:51820
[FOREIGN] wg: allowed ips: 10.10.0.3/32
[FOREIGN] wg: latest handshake: 1 minute, 48 seconds ago
[FOREIGN] wg: transfer: 6.97 MiB received, 1.53 MiB sent
[INFO] ===== PORTS (LISTEN) =====
[FOREIGN] ss: Netid State Recv-Q Send-Q Local Address:Port Peer Address:PortProcess
[FOREIGN] ss: udp UNCONN 0 0 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=1604231,fd=16)) uid:992 ino:37898799 sk:34 cgroup:/system.slice/systemd-resolved.service <->
[FOREIGN] ss: udp UNCONN 0 0 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=1604231,fd=14)) uid:992 ino:37898797 sk:35 cgroup:/system.slice/systemd-resolved.service <->
[FOREIGN] ss: udp UNCONN 0 0 49.12.97.28%eth0:68 0.0.0.0:* users:(("systemd-network",pid=1604268,fd=23)) uid:998 ino:53481432 sk:301f cgroup:/system.slice/systemd-networkd.service <->
[FOREIGN] ss: udp UNCONN 0 0 0.0.0.0:51820 0.0.0.0:* ino:47196221 sk:3009 cgroup:unreachable:1e7836 <->
[FOREIGN] ss: udp UNCONN 0 0 [::]:51820 [::]:* ino:47196222 sk:300a cgroup:unreachable:1e7836 v6only:1 <->
[FOREIGN] ss: tcp LISTEN 0 4096 127.0.0.54:53 0.0.0.0:* users:(("systemd-resolve",pid=1604231,fd=17)) uid:992 ino:37898800 sk:38 cgroup:/system.slice/systemd-resolved.service <->
[FOREIGN] ss: tcp LISTEN 0 4096 127.0.0.53%lo:53 0.0.0.0:* users:(("systemd-resolve",pid=1604231,fd=15)) uid:992 ino:37898798 sk:3a cgroup:/system.slice/systemd-resolved.service <->
[FOREIGN] ss: tcp LISTEN 0 4096 0.0.0.0:443 0.0.0.0:* users:(("docker-proxy",pid=2917251,fd=7)) ino:53631579 sk:103d cgroup:/system.slice/docker.service <->
[FOREIGN] ss: tcp LISTEN 0 4096 0.0.0.0:22 0.0.0.0:* users:(("sshd",pid=1604208,fd=3),("systemd",pid=1,fd=98)) ino:5889 sk:10 cgroup:/system.slice/ssh.socket <->
[FOREIGN] ss: tcp LISTEN 0 4096 0.0.0.0:80 0.0.0.0:* users:(("docker-proxy",pid=2917237,fd=7)) ino:53633033 sk:103e cgroup:/system.slice/docker.service <->
[FOREIGN] ss: tcp LISTEN 0 4096 [::]:22 [::]:* users:(("sshd",pid=1604208,fd=4),("systemd",pid=1,fd=99)) ino:5891 sk:1a cgroup:/system.slice/ssh.socket v6only:1 <->
[INFO] ===== DOCKER (INFO) =====
[FOREIGN] docker: Docker version 29.0.4, build 3247a5a
[FOREIGN] compose: Docker Compose version v2.40.3
[FOREIGN] dockerinfo: Client: Docker Engine - Community
[FOREIGN] dockerinfo: Version: 29.0.4
[FOREIGN] dockerinfo: Context: default
[FOREIGN] dockerinfo: Debug Mode: false
[FOREIGN] dockerinfo: Plugins:
[FOREIGN] dockerinfo: buildx: Docker Buildx (Docker Inc.)
[FOREIGN] dockerinfo: Version: v0.30.0
[FOREIGN] dockerinfo: Path: /usr/libexec/docker/cli-plugins/docker-buildx
[FOREIGN] dockerinfo: compose: Docker Compose (Docker Inc.)
[FOREIGN] dockerinfo: Version: v2.40.3
[FOREIGN] dockerinfo: Path: /usr/libexec/docker/cli-plugins/docker-compose
[FOREIGN] dockerinfo:
[FOREIGN] dockerinfo: Server:
[FOREIGN] dockerinfo: Containers: 5
[FOREIGN] dockerinfo: Running: 4
[FOREIGN] dockerinfo: Paused: 0
[FOREIGN] dockerinfo: Stopped: 1
[FOREIGN] dockerinfo: Images: 25
[FOREIGN] dockerinfo: Server Version: 29.0.4
[FOREIGN] dockerinfo: Storage Driver: overlayfs
[FOREIGN] dockerinfo: driver-type: io.containerd.snapshotter.v1
[FOREIGN] dockerinfo: Logging Driver: json-file
[FOREIGN] dockerinfo: Cgroup Driver: systemd
[FOREIGN] dockerinfo: Cgroup Version: 2
[FOREIGN] dockerinfo: Plugins:
[FOREIGN] dockerinfo: Volume: local
[FOREIGN] dockerinfo: Network: bridge host ipvlan macvlan null overlay
[FOREIGN] dockerinfo: Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
[FOREIGN] dockerinfo: CDI spec directories:
[FOREIGN] dockerinfo: /etc/cdi
[FOREIGN] dockerinfo: /var/run/cdi
[FOREIGN] dockerinfo: Swarm: inactive
[FOREIGN] dockerinfo: Runtimes: io.containerd.runc.v2 runc
[FOREIGN] dockerinfo: Default Runtime: runc
[FOREIGN] dockerinfo: Init Binary: docker-init
[FOREIGN] dockerinfo: containerd version: fcd43222d6b07379a4be9786bda52438f0dd16a1
[FOREIGN] dockerinfo: runc version: v1.3.3-0-gd842d771
[FOREIGN] dockerinfo: init version: de40ad0
[FOREIGN] dockerinfo: Security Options:
[FOREIGN] dockerinfo: apparmor
[FOREIGN] dockerinfo: seccomp
[FOREIGN] dockerinfo: Profile: builtin
[FOREIGN] dockerinfo: cgroupns
[FOREIGN] dockerinfo: Kernel Version: 6.8.0-87-generic
[FOREIGN] dockerinfo: Operating System: Ubuntu 24.04.3 LTS
[FOREIGN] dockerinfo: OSType: linux
[FOREIGN] dockerinfo: Architecture: x86_64
[FOREIGN] dockerinfo: CPUs: 4
[FOREIGN] dockerinfo: Total Memory: 7.57GiB
[FOREIGN] dockerinfo: Name: ubuntu-8gb-fsn1-1
[FOREIGN] dockerinfo: ID: 696a88f0-70c0-4bc3-aa0e-3c1c4fc379ac
[FOREIGN] dockerinfo: Docker Root Dir: /var/lib/docker
[FOREIGN] dockerinfo: Debug Mode: false
[FOREIGN] dockerinfo: Experimental: false
[FOREIGN] dockerinfo: Insecure Registries:
[FOREIGN] dockerinfo: ::1/128
[FOREIGN] dockerinfo: 127.0.0.0/8
[FOREIGN] dockerinfo: Live Restore Enabled: false
[FOREIGN] dockerinfo: Firewall Backend: iptables
[FOREIGN] dockerinfo:
[INFO] ===== DOCKER NETWORKS =====
[FOREIGN] net: bridge bridge
[FOREIGN] net: host host
[GOLDEN] net: hxki-internal bridge
[FOREIGN] net: none null
[INFO] ===== DOCKER CONTAINERS (ALL) =====
[GOLDEN] ctr: hxki-n8n | docker.n8n.io/n8nio/n8n:latest | Up 26 hours | 5678/tcp
[GOLDEN] ctr: hxki-postgres | postgres:16 | Up 28 hours | 5432/tcp
[GOLDEN] ctr: hxki-caddy | caddy:2 | Up 17 minutes | 0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp, 443/udp, 2019/tcp
[GOLDEN] ctr: hxki-grafana | grafana/grafana-oss:latest | Up 28 hours | 3000/tcp
[GOLDEN] ctr: caddy-builder | caddy:2-builder | Exited (0) 3 weeks ago |
[INFO] ===== DOCKER CONTAINER NETWORK ATTACHMENTS =====
[GOLDEN] ctrnet: hxki-n8n {"hxki-internal":{"IPAMConfig":null,"Links":null,"Aliases":["hxki-n8n","n8n"],"DriverOpts":null,"GwPriority":0,"NetworkID":"19ff6bfa62201fd6ef7284c1cbd6b7cc7f8d40a086b4358b37e76216afbea15f","EndpointID":"68f39c199e61b594e0082a6652de3a85e9bd54a8bed3805b046c99ea14fe83ed","Gateway":"172.18.0.1","IPAddress":"172.18.0.4","MacAddress":"72:16:35:e9:36:36","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"DNSNames":["hxki-n8n","n8n","7da08ce7fd6b"]}}
[GOLDEN] ctrnet: hxki-postgres {"hxki-internal":{"IPAMConfig":null,"Links":null,"Aliases":["hxki-postgres","postgres"],"DriverOpts":null,"GwPriority":0,"NetworkID":"19ff6bfa62201fd6ef7284c1cbd6b7cc7f8d40a086b4358b37e76216afbea15f","EndpointID":"980080f311e8b88cdd10b55b3ef4b84926c202d43ea79752eaeb38808a49ae02","Gateway":"172.18.0.1","IPAddress":"172.18.0.5","MacAddress":"8e:ba:d2:d7:38:30","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"DNSNames":["hxki-postgres","postgres","59236064eb24"]}}
[GOLDEN] ctrnet: hxki-caddy {"hxki-internal":{"IPAMConfig":null,"Links":null,"Aliases":["hxki-caddy","caddy"],"DriverOpts":null,"GwPriority":0,"NetworkID":"19ff6bfa62201fd6ef7284c1cbd6b7cc7f8d40a086b4358b37e76216afbea15f","EndpointID":"b63f01ccc94d6c5b57743b247a392f05c84bf477536f1f56a76fbc69d11c144d","Gateway":"172.18.0.1","IPAddress":"172.18.0.2","MacAddress":"3a:1e:10:d7:b0:44","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"DNSNames":["hxki-caddy","caddy","b45bf8fb2b05"]}}
[GOLDEN] ctrnet: hxki-grafana {"hxki-internal":{"IPAMConfig":null,"Links":null,"Aliases":["hxki-grafana","grafana"],"DriverOpts":null,"GwPriority":0,"NetworkID":"19ff6bfa62201fd6ef7284c1cbd6b7cc7f8d40a086b4358b37e76216afbea15f","EndpointID":"c1ed971ca7cf2d060e6d7752753abe6ad2fa9d2945ffb757179e207de084ee34","Gateway":"172.18.0.1","IPAddress":"172.18.0.7","MacAddress":"d2:b7:3e:f5:74:00","IPPrefixLen":16,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"DNSNames":["hxki-grafana","grafana","846ad34b7157"]}}
[GOLDEN] ctrnet: caddy-builder {"bridge":{"IPAMConfig":null,"Links":null,"Aliases":null,"DriverOpts":null,"GwPriority":0,"NetworkID":"c0b6e645b2dd0a0f1277a9dd6a4cb1dcd0399d108ac79c9e2fd53e0d928b3037","EndpointID":"","Gateway":"","IPAddress":"","MacAddress":"","IPPrefixLen":0,"IPv6Gateway":"","GlobalIPv6Address":"","GlobalIPv6PrefixLen":0,"DNSNames":null}}
[INFO] ===== DOCKER VOLUMES =====
[FOREIGN] vol: 0eeedbb7c7a5bfdbb5efbfa124b0f2d3d2f4ede95c5cea069740f94059957526
[FOREIGN] vol: 1b5720e4ef588e5f3d20fe5e8ec08c4f7b7e01ea11c0eb571333f0e03f07af54
[FOREIGN] vol: 2b7a2b09ecaef6c1925afced993f014af1690243ce1fee4afc7bfbd942d423a7
[FOREIGN] vol: 2ee56d71815f5c83cfb3ed453d28514a15b5ee21694e6552c57390909762d9b4
[FOREIGN] vol: 2f96388931004944ef25ec8caddb20f6661d0cc96ba9d19a120537dbfa713761
[FOREIGN] vol: 4ee21e3573f749bbeb861878503b72f9800784cbd3f641867f9fe9717df5d1e0
[FOREIGN] vol: 4f34124b105c81a97c10344eaab72eaf13dcfe233d542611ef7b90b3451bdf91
[FOREIGN] vol: 5cce22714013942bc4e867a7157a2199a81d0a4d82724f78b41f1431c34dbccd
[FOREIGN] vol: 5ec009928deeaf72db93b9f64f785352f6e9c89aea9e1551789294bb1dc7728e
[FOREIGN] vol: 6d64eb6efc2c85a94c4036141abc998f01463aa3922c652f02b03554327517e6
[FOREIGN] vol: 8cfe034bcfe3f0281f9a60c1b46449287043d67245a17f393425e293fa2f94d8
[FOREIGN] vol: 9dd0efcb2ce67d3550fc07720cf16fe72b8d39d8041cbaf735a7c0d9f61d1d1e
[FOREIGN] vol: 21b6480c61aca86ec46ce35d749643ad7712ee032cf37ee8d2cf844792d0f528
[FOREIGN] vol: 24fa4ac8ef96839e2630ddb6894540cd70d52d9dd06a5768d979191232269562
[FOREIGN] vol: 27eb60b02297b9ec2db73b9b21f7cbafe24d717ca9c604a196579f6b8f617d56
[FOREIGN] vol: 33cf006661eb7a33070152484c2cc95a894624d90cdb049094ffa0522b0005c0
[FOREIGN] vol: 52bceac90defb1d49b4c6f3e26ff8b83a5075881c77ed144563e5b72e1c87fa4
[FOREIGN] vol: 66a262991138c5266988387e8bcbd3255b0db21c7c4d1ed138fb814951c634dd
[FOREIGN] vol: 294a91e26f80fd2f1d4e66ba54bfb0c04bc4deed6f107cd0a4ece0869ffbe46f
[FOREIGN] vol: 454fe3669cb8e5752dc9c369fc7a5f5a7fbfd215c7248ba53acf554674bea4ce
[FOREIGN] vol: 822a4d92fb8653e2c7c276c7a56b5052501a0f5f238d83050c9468b1cff8edf3
[FOREIGN] vol: 1816af0c89114ed5bd1c55c8776f8f2483901877058a110d2b03ab70002ccac6
[FOREIGN] vol: 4873f6e2579b305e66a4005add01268ac8727cd1282d2e12ca8b2c99a84c7ce1
[FOREIGN] vol: 5913a0d7ecbcc5bfbb336c8ac888ba2dbccace6b67e02df3c778c129815f13c6
[FOREIGN] vol: 58050d6321143bdb0441d05ffad44137982e06552f5e6c17066f7de2c89bb9fe
[FOREIGN] vol: 91402f9e392c709f09b7679e0102d8924219e70f465bd1e9e7278c57d1278475
[FOREIGN] vol: 805857d634b1af0a18e5cbce241cc5475b89de698f6c27be5bc7a7a43d4181ce
[FOREIGN] vol: 878539b941d8551b7b361e65884f78e2528a7f45df4f8cff7bae36ff75574721
[FOREIGN] vol: 6004879e3d0c20ccc47a6f4d5f250be7d2653ffb52433bf2151b5e5c96afee89
[FOREIGN] vol: a804d68a6e4e798eb7c0ec2d252d626c526b15684a1be68201be611c6e00cd49
[FOREIGN] vol: ab2a4095c299379e26a38d05b0c2e27b5fc473ba3d45f336c6331ef602345b88
[FOREIGN] vol: ac651b321dc22bdad7a228f47cf00fe0b832ce2185db6b5ebac26ed46a1b3448
[FOREIGN] vol: b69dfdb09641fe5a5b467ef1fbcad77e3cffdebab03ef259dbb5744c6bc4111b
[FOREIGN] vol: c10a0fbd55918960a2b7d703c7714c8a7765a60b2520bac6f8ac9db5b6d7ed8b
[GOLDEN] vol: caddy-config
[GOLDEN] vol: caddy-data
[GOLDEN] vol: caddy_config
[GOLDEN] vol: caddy_data
[GOLDEN] vol: com-stack_caddy_config
[GOLDEN] vol: com-stack_caddy_data
[GOLDEN] vol: com-stack_grafana_data
[FOREIGN] vol: com-stack_mariadb_data
[FOREIGN] vol: com-stack_postgres_data
[GOLDEN] vol: docker_caddy_config
[GOLDEN] vol: docker_caddy_data
[FOREIGN] vol: e44e9f702f8e6ce9a0c9c8196f553576f90694e0e19a17bc43acd019f8b57cac
[FOREIGN] vol: e76268f9293bc1eb0f56634c2423267e9cdc9d844b48232cb0f6a2d9faaeda81
[FOREIGN] vol: f284a55680ca391d7a53b21553993c4325622bd4030224fb1444f68815fdbcd3
[FOREIGN] vol: fba1b90ec90fd9c2c506d8bd6b1af597bc26e544d3902d6860152242d6de2f9b
[FOREIGN] vol: fe914192e3b98b9102d5af6f99a180de323e92eed4472248424539f8dd40867f
[GOLDEN] vol: hx-caddy_caddy_config
[GOLDEN] vol: hx-caddy_caddy_data
[INFO] ===== HXKI PATHS (EXISTENCE + TOP-LEVEL) =====
[GOLDEN] path: EXISTS /opt/hx-ki
[GOLDEN] ls: /opt/hx-ki :: total 156K
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 37 root root 4.0K Feb 26 22:08 .
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 11 root root 4.0K Feb 26 15:01 ..
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 21 14:13 agent
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 27 12:57 agents
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 5 root root 4.0K Nov 24 16:29 archive
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 27 12:58 bin
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 25 07:31 bridge
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 5 root root 4.0K Jan 17 16:15 caddy
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 3 root root 4.0K Jan 16 15:38 caddy_config
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 3 root root 4.0K Jan 16 15:38 caddy_data
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 4 root root 4.0K Jan 26 07:30 certs
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 11 root root 4.0K Dec 1 10:49 com-stack
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 24 16:23 config
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 4 root root 4.0K Mar 5 12:55 docker
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 21 15:35 env
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 6 472 472 4.0K Mar 3 14:01 grafana
[GOLDEN] ls: /opt/hx-ki :: -rwxr-xr-x 1 root root 862 Dec 8 12:23 hxki_event_check.sh
[GOLDEN] ls: /opt/hx-ki :: -rw-r--r-- 1 root root 965 Nov 25 08:31 hxki_grafana_install_v1.sh
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Dec 6 17:43 inventory
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Jan 9 16:58 logs
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 6 caddy systemd-journal 4.0K Mar 5 08:41 mariadb
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 4 root root 4.0K Nov 24 19:08 mautic
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 25 19:20 monitoring
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 30 07:35 nats
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 25 17:04 openwebui
[GOLDEN] ls: /opt/hx-ki :: drwx------ 19 caddy root 4.0K Mar 4 08:43 postgres
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 24 19:12 postres
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 26 12:11 reports
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 4 root root 4.0K Nov 26 10:04 repos
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Feb 26 22:08 stack
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 4 root root 4.0K Nov 24 16:20 syncthing
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 25 19:15 telemetry
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Jan 26 15:48 tools
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 26 12:00 tresor-cache
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 5 root root 4.0K Nov 21 14:41 venv
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 5 root root 4.0K Nov 27 12:57 web
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Nov 27 02:39 web_backup_20251127_023922
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 2 root root 4.0K Jan 14 12:45 wireguard
[GOLDEN] ls: /opt/hx-ki :: drwxr-xr-x 3 root root 4.0K Nov 27 12:57 workspaces
[GOLDEN] path: MISSING /opt/hxki-*
[GOLDEN] path: EXISTS /data/HXKI_WORKSPACE
[GOLDEN] ls: /data/HXKI_WORKSPACE :: total 60K
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 15 1000 1000 4.0K Nov 30 15:47 .
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxr-xr-x 3 root root 4.0K Nov 25 07:26 ..
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 2 1000 1000 4.0K Nov 30 13:30 contracts
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 4 1000 1000 4.0K Nov 25 07:26 docs
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 6 1000 1000 4.0K Nov 30 13:17 events
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 2 root root 4.0K Nov 30 15:47 flows_in
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 2 root root 4.0K Nov 30 15:47 flows_out
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 6 1000 1000 4.0K Nov 30 13:17 incoming
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 5 1000 1000 4.0K Nov 30 13:17 logs
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 6 1000 1000 4.0K Nov 30 15:48 n8n_router
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 5 1000 1000 4.0K Nov 30 13:17 outgoing
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 6 root root 4.0K Mar 3 13:42 router
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 2 1000 1000 4.0K Nov 25 07:26 stage
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 2 1000 1000 4.0K Nov 25 07:26 telemetry
[GOLDEN] ls: /data/HXKI_WORKSPACE :: drwxrwxrwx 2 1000 1000 4.0K Nov 25 07:26 tmp
[INFO] ===== COMPOSE FILE DISCOVERY (IN /opt) =====
[GOLDEN] compose: /opt/hx-caddy/docker-compose.yml
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: - NATS_URL=nats://91.98.42.205:4222
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: version: "3.9"
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: caddy:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: image: caddy:2
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: container_name: hx-caddy-caddy-1
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: - "80:80"
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: - "443:443"
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: - /opt/hx-ki/caddy/Caddyfile:/etc/caddy/Caddyfile
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: - caddy_data:/data
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: - caddy_config:/config
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: caddy_data:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: caddy_config:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: hxki-internal:
[GOLDEN] compose_head: /opt/hx-caddy/docker-compose.yml :: external: true
[GOLDEN] compose: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: version: "3.8"
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: hxki-syncthing:
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: image: lscr.io/linuxserver/syncthing:latest
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: container_name: hxki-syncthing
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - NATS_URL=nats://91.98.42.205:4222
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - PUID=0
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - PGID=0
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - TZ=Europe/Berlin
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - /opt/hx-ki/syncthing/config:/config
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - /data/HXKI_WORKSPACE:/data
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: network_mode: bridge
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "8384:8384" # Web UI
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "22000:22000/tcp" # Sync TCP
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "22000:22000/udp" # Sync UDP
[GOLDEN] compose_head: /opt/hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "21027:21027/udp" # Local discovery
[GOLDEN] compose: /opt/hx-ki/docker/docker-compose.yml
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: postgres:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: image: postgres:16
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: container_name: hxki-postgres
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: POSTGRES_USER: hxki
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: POSTGRES_PASSWORD: supersecure
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: POSTGRES_DB: hxki_roles
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/postgres:/var/lib/postgresql/data
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: mariadb:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: image: mariadb:10.11
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: container_name: hxki-mariadb
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: MYSQL_ROOT_PASSWORD: supersecure
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/mariadb:/var/lib/mysql
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: n8n:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: image: docker.n8n.io/n8nio/n8n:latest
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: container_name: hxki-n8n
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: depends_on:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - postgres
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: N8N_HOST: n8n.hx-ki.com
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: DB_TYPE: postgresdb
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_HOST: hxki-postgres
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_PORT: 5432
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_DATABASE: hxki_roles
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_USER: hxki
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_PASSWORD: supersecure
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: N8N_PORT: 5678
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: grafana:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: image: grafana/grafana-oss:latest
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: container_name: hxki-grafana
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: gitea:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: image: gitea/gitea:latest
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: container_name: hxki-gitea
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: mautic:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: image: mautic/mautic:5-apache
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: container_name: hxki-mautic
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: caddy:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: image: caddy:2
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: container_name: hxki-caddy
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - "80:80"
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - "443:443"
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - /etc/caddy:/etc/caddy
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/caddy_data:/data
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/caddy_config:/config
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: hxki-internal:
[GOLDEN] compose_head: /opt/hx-ki/docker/docker-compose.yml :: external: true
[GOLDEN] compose: /opt/hx-ki/com-stack/docker-compose.yml
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: version: "3.9"
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: hxki-internal:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: external: true
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: # ========== CADDY (Reverse Proxy mit SSL) ==========
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: caddy:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: image: caddy:latest
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: container_name: hx-caddy
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - "80:80"
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - "443:443"
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - ./caddy/Caddyfile:/etc/caddy/Caddyfile
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - caddy_data:/data
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - caddy_config:/config
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: # ========== N8N (Master Instanz) ==========
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: hxki-n8n:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: image: docker.n8n.io/n8nio/n8n
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: container_name: hxki-n8n
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - N8N_BASIC_AUTH_ACTIVE=false
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - N8N_DIAGNOSTICS_ENABLED=false
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - N8N_HOST=n8n.hx-ki.com
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - N8N_PORT=5678
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - N8N_EDITOR_BASE_URL=https://n8n.hx-ki.com
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - WEBHOOK_URL=https://n8n.hx-ki.com
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - /data/HXKI_WORKSPACE/router:/home/node/.n8n
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: # ========== Grafana ==========
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: hxki-grafana:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: image: grafana/grafana:latest
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: container_name: hxki-grafana
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - grafana_data:/var/lib/grafana
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: # ========== Postgres ==========
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: hxki-postgres:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: image: postgres:15
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: container_name: hxki-postgres
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: POSTGRES_PASSWORD: "hxki_password"
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - postgres_data:/var/lib/postgresql/data
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: # ========== MariaDB ==========
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: hxki-mariadb:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: image: mariadb:10.11
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: container_name: hxki-mariadb
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: MYSQL_ROOT_PASSWORD: "hxki_password"
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - mariadb_data:/var/lib/mysql
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: # ========== WebUI ==========
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: hxki-web:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: image: node:18
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: container_name: hxki-web
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: command: >
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: bash -c "cd /app && npm install && npm run start"
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: - ./web:/app
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: grafana_data:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: postgres_data:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: mariadb_data:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: caddy_data:
[GOLDEN] compose_head: /opt/hx-ki/com-stack/docker-compose.yml :: caddy_config:
[GOLDEN] compose: /opt/hx-ki/nats/docker-compose.yml
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: - NATS_URL=nats://91.98.42.205:4222
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: version: "3.9"
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: hxki-nats-fsn:
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: image: nats:latest
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: container_name: hxki-nats-fsn
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: command: ["-js", "-m", "8222"]
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: - "4222:4222"
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: - "8222:8222"
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: hxki-internal:
[GOLDEN] compose_head: /opt/hx-ki/nats/docker-compose.yml :: external: true
[GOLDEN] compose: /opt/hx-ki/stack/docker-compose.yml
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml :: version: "3.9"
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml :: hxki-web:
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml :: build: .
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml :: container_name: hxki-web
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/hx-ki/stack/docker-compose.yml :: - "3003:3003"
[GOLDEN] compose: /opt/hx-ki/grafana/docker-compose.yml
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: grafana:
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: image: grafana/grafana-oss:latest
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: container_name: hxki-grafana
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: user: "0"
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: - "3000:3000"
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: - /opt/hx-ki/grafana/data:/var/lib/grafana
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: - /opt/hx-ki/grafana/provisioning:/etc/grafana/provisioning
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: - NATS_URL=nats://91.98.42.205:4222
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: - GF_SECURITY_ADMIN_PASSWORD=admin
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: - GF_SERVER_DOMAIN=localhost
[GOLDEN] compose_head: /opt/hx-ki/grafana/docker-compose.yml :: - GF_SERVER_ROOT_URL=http://localhost:3000
[GOLDEN] compose: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: version: "3.8"
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml ::
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: hxki-syncthing:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: image: lscr.io/linuxserver/syncthing:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: container_name: hxki-syncthing
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - NATS_URL=nats://91.98.42.205:4222
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - PUID=0
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - PGID=0
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - TZ=Europe/Berlin
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - /opt/hx-ki/syncthing/config:/config
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - /data/HXKI_WORKSPACE:/data
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: network_mode: bridge
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "8384:8384" # Web UI
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "22000:22000/tcp" # Sync TCP
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "22000:22000/udp" # Sync UDP
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "21027:21027/udp" # Local discovery
[FOREIGN] compose: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: version: "3.9"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: hxki-internal:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: external: true
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: services:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # POSTGRES (für n8n)
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: postgres:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: image: postgres:16
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-postgres
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: environment:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: POSTGRES_USER: hxki
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: POSTGRES_PASSWORD: supersecure
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: POSTGRES_DB: hxki_roles
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/postgres:/var/lib/postgresql/data
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - "5432:5432"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # N8N DAS MASTER-NERVENSYSTEM
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: n8n:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: image: docker.n8n.io/n8nio/n8n:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-n8n
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: depends_on:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - postgres
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: N8N_HOST: n8n.hx-ki.com
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: N8N_PORT: 5678
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: WEBHOOK_URL: https://n8n.hx-ki.com/
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: N8N_PROTOCOL: https
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: DB_TYPE: postgresdb
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_HOST: postgres
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_PORT: 5432
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_USER: hxki
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_PASSWORD: supersecure
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_DATABASE: hxki_roles
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: NATS_URL: nats://49.12.97.28:4222
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - /data/HXKI_WORKSPACE/router:/home/node/.n8n
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - "5678:5678"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # CADDY SUBDOMAINS, TLS, ROUTING
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: hxki-caddy:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: image: caddy:2
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-caddy
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - "80:80"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - "443:443"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/docker/hxki-caddy/Caddyfile:/etc/caddy/Caddyfile
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - caddy_data:/data
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - caddy_config:/config
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # GRAFANA
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: grafana:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: image: grafana/grafana-oss:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-grafana
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - "3000:3000"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/grafana:/var/lib/grafana
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # MARIA DB (für mautic)
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: mariadb:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: image: mariadb:10.11
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-mariadb
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: environment:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: MYSQL_ROOT_PASSWORD: supersecure
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: MYSQL_DATABASE: mautic
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/mariadb:/var/lib/mysql
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - "3306:3306"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # MAUTIC
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: mautic:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: image: mautic/mautic:5-apache
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-mautic
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: depends_on:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - mariadb
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: MAUTIC_DB_HOST: mariadb
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: MAUTIC_DB_USER: root
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: MAUTIC_DB_PASSWORD: supersecure
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: MAUTIC_DB_NAME: mautic
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - "8080:80"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # GITEA
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: gitea:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: image: gitea/gitea:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-gitea
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - "3001:3000"
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: - /var/lib/gitea:/data
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: caddy_data:
[GOLDEN] compose_head: /opt/system_freeze_20260226_145459/opt_hx-ki/docker/docker-compose.yml :: caddy_config:
[GOLDEN] compose: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: version: "3.8"
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml ::
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: hxki-syncthing:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: image: lscr.io/linuxserver/syncthing:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: container_name: hxki-syncthing
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - NATS_URL=nats://91.98.42.205:4222
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - PUID=0
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - PGID=0
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - TZ=Europe/Berlin
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - /opt/hx-ki/syncthing/config:/config
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - /data/HXKI_WORKSPACE:/data
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: network_mode: bridge
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "8384:8384" # Web UI
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "22000:22000/tcp" # Sync TCP
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "22000:22000/udp" # Sync UDP
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/hxki-syncthing/docker-compose.yml :: - "21027:21027/udp" # Local discovery
[FOREIGN] compose: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: version: "3.9"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: hxki-internal:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: external: true
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: services:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # POSTGRES (für n8n)
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: postgres:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: image: postgres:16
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-postgres
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: environment:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: POSTGRES_USER: hxki
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: POSTGRES_PASSWORD: supersecure
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: POSTGRES_DB: hxki_roles
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/postgres:/var/lib/postgresql/data
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - "5432:5432"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # N8N DAS MASTER-NERVENSYSTEM
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: n8n:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: image: docker.n8n.io/n8nio/n8n:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-n8n
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: depends_on:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - postgres
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: N8N_HOST: n8n.hx-ki.com
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: N8N_PORT: 5678
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: WEBHOOK_URL: https://n8n.hx-ki.com/
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: N8N_PROTOCOL: https
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: DB_TYPE: postgresdb
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_HOST: postgres
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_PORT: 5432
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_USER: hxki
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_PASSWORD: supersecure
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: DB_POSTGRESDB_DATABASE: hxki_roles
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: NATS_URL: nats://49.12.97.28:4222
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - /data/HXKI_WORKSPACE/router:/home/node/.n8n
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - "5678:5678"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # CADDY SUBDOMAINS, TLS, ROUTING
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: hxki-caddy:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: image: caddy:2
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-caddy
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - "80:80"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - "443:443"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/docker/hxki-caddy/Caddyfile:/etc/caddy/Caddyfile
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - caddy_data:/data
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - caddy_config:/config
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # GRAFANA
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: grafana:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: image: grafana/grafana-oss:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-grafana
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - "3000:3000"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/grafana:/var/lib/grafana
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # MARIA DB (für mautic)
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: mariadb:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: image: mariadb:10.11
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-mariadb
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: environment:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: MYSQL_ROOT_PASSWORD: supersecure
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: MYSQL_DATABASE: mautic
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - /opt/hx-ki/mariadb:/var/lib/mysql
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - "3306:3306"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # MAUTIC
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: mautic:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: image: mautic/mautic:5-apache
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-mautic
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: depends_on:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - mariadb
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: MAUTIC_DB_HOST: mariadb
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: MAUTIC_DB_USER: root
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: MAUTIC_DB_PASSWORD: supersecure
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: MAUTIC_DB_NAME: mautic
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - "8080:80"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # GITEA
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: # -------------------------------------------
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: gitea:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: image: gitea/gitea:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: container_name: hxki-gitea
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - "3001:3000"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: - /var/lib/gitea:/data
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: caddy_data:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/docker/docker-compose.yml :: caddy_config:
[FOREIGN] compose: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: version: "3.9"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: hxki-internal:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: external: true
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: services:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: # ========== CADDY (Reverse Proxy mit SSL) ==========
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: caddy:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: image: caddy:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: container_name: hx-caddy
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: ports:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - "80:80"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - "443:443"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - ./caddy/Caddyfile:/etc/caddy/Caddyfile
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - caddy_data:/data
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - caddy_config:/config
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: # ========== N8N (Master Instanz) ==========
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: hxki-n8n:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: image: docker.n8n.io/n8nio/n8n
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: container_name: hxki-n8n
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - N8N_BASIC_AUTH_ACTIVE=false
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - N8N_DIAGNOSTICS_ENABLED=false
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - N8N_HOST=n8n.hx-ki.com
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - N8N_PORT=5678
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - N8N_EDITOR_BASE_URL=https://n8n.hx-ki.com
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - WEBHOOK_URL=https://n8n.hx-ki.com
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - /data/HXKI_WORKSPACE/router:/home/node/.n8n
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - /data/HXKI_WORKSPACE:/data/HXKI_WORKSPACE
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: # ========== Grafana ==========
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: hxki-grafana:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: image: grafana/grafana:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: container_name: hxki-grafana
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - grafana_data:/var/lib/grafana
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: # ========== Postgres ==========
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: hxki-postgres:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: image: postgres:15
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: container_name: hxki-postgres
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: environment:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: POSTGRES_PASSWORD: "hxki_password"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: volumes:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - postgres_data:/var/lib/postgresql/data
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: # ========== MariaDB ==========
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: hxki-mariadb:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: image: mariadb:10.11
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: container_name: hxki-mariadb
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: restart: unless-stopped
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: environment:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: MYSQL_ROOT_PASSWORD: "hxki_password"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: volumes:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - mariadb_data:/var/lib/mysql
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: # ========== WebUI ==========
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: hxki-web:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: image: node:18
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: container_name: hxki-web
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - hxki-internal
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: command: >
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: bash -c "cd /app && npm install && npm run start"
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: volumes:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: - ./web:/app
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml ::
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: grafana_data:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: postgres_data:
[FOREIGN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: mariadb_data:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: caddy_data:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/com-stack/docker-compose.yml :: caddy_config:
[GOLDEN] compose: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: - NATS_URL=nats://91.98.42.205:4222
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: version: "3.9"
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml ::
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: hxki-nats-fsn:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: image: nats:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: container_name: hxki-nats-fsn
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: command: ["-js", "-m", "8222"]
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: - "4222:4222"
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: - "8222:8222"
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: - hxki-internal
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml ::
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: networks:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: hxki-internal:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/nats/docker-compose.yml :: external: true
[GOLDEN] compose: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: services:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: grafana:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: image: grafana/grafana-oss:latest
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: container_name: hxki-grafana
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: restart: unless-stopped
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: user: "0"
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: ports:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: - "3000:3000"
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: volumes:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: - /opt/hx-ki/grafana/data:/var/lib/grafana
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: - /opt/hx-ki/grafana/provisioning:/etc/grafana/provisioning
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: environment:
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: - NATS_URL=nats://91.98.42.205:4222
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: - GF_SECURITY_ADMIN_PASSWORD=admin
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: - GF_SERVER_DOMAIN=localhost
[GOLDEN] compose_head: /opt/system_freeze_20260226_150121/opt_hx-ki/grafana/docker-compose.yml :: - GF_SERVER_ROOT_URL=http://localhost:3000
[INFO] DONE

1
env/.env vendored Normal file
View File

@@ -0,0 +1 @@
HXKI_NODE_NAME=FSN1

View File

@@ -0,0 +1,16 @@
services:
grafana:
image: grafana/grafana-oss:latest
container_name: hxki-grafana
restart: unless-stopped
user: "0"
ports:
- "3000:3000"
volumes:
- /opt/hx-ki/grafana/data:/var/lib/grafana
- /opt/hx-ki/grafana/provisioning:/etc/grafana/provisioning
environment:
- NATS_URL=nats://91.98.42.205:4222
- GF_SECURITY_ADMIN_PASSWORD=admin
- GF_SERVER_DOMAIN=localhost
- GF_SERVER_ROOT_URL=http://localhost:3000

BIN
grafana/grafana.db Normal file

Binary file not shown.

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkgrafana_exploretraces_app=self.webpackChunkgrafana_exploretraces_app||[]).push([[156],{94156:(e,t,o)=>{o.d(t,{default:()=>i});var r={a:"α",b:"ḅ",c:"ͼ",d:"ḍ",e:"ḛ",f:"ϝ",g:"ḡ",h:"ḥ",i:"ḭ",j:"ĵ",k:"ḳ",l:"ḽ",m:"ṃ",n:"ṇ",o:"ṓ",p:"ṗ",q:"ʠ",r:"ṛ",s:"ṡ",t:"ţ",u:"ṵ",v:"ṽ",w:"ẁ",x:"ẋ",y:"ẏ",z:"ẓ",A:"À",B:"β",C:"Ḉ",D:"Ḍ",E:"Ḛ",F:"Ḟ",G:"Ḡ",H:"Ḥ",I:"Ḭ",J:"Ĵ",K:"Ḱ",L:"Ḻ",M:"Ṁ",N:"Ṅ",O:"Ṏ",P:"Ṕ",Q:"Ǫ",R:"Ṛ",S:"Ṣ",T:"Ṫ",U:"Ṳ",V:"Ṿ",W:"Ŵ",X:"Ẋ",Y:"Ŷ",Z:"Ż"},n=["a","e","i","o","u","y","A","E","I","O","U","Y"],a=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var o=arguments[t];for(var r in o)Object.prototype.hasOwnProperty.call(o,r)&&(e[r]=o[r])}return e};var i=function(){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},o=t.languageToPseudo,a=void 0===o?"en":o,i=t.letterMultiplier,s=void 0===i?2:i,p=t.repeatedLetters,l=void 0===p?n:p,u=t.uglifedLetterObject,d=void 0===u?r:u,c=t.wrapped,f=void 0!==c&&c,g=t.enabled,h=void 0===g||g;!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,e),this.name="pseudo",this.type="postProcessor",this.options={languageToPseudo:a,letterMultiplier:s,wrapped:f,repeatedLetters:l,letters:d,enabled:h}}return e.prototype.configurePseudo=function(e){this.options=a({},this.options,e)},e.prototype.process=function(e,t,o,r){var n=this;if(r.language&&this.options.languageToPseudo!==r.language||!this.options.enabled)return e;var a,i,s,p=0,l=e.split("").map(function(e){return"}"===e?(p=0,e):"{"===e?(p++,e):2===p?e:-1!==n.options.repeatedLetters.indexOf(e)?n.options.letters[e].repeat(n.options.letterMultiplier):n.options.letters[e]||e}).join("");return a={shouldWrap:this.options.wrapped,string:l},i=a.shouldWrap,s=a.string,i?"["+s+"]":s},e}()}}]);
//# sourceMappingURL=156.js.map?_cache=e167fe345e30e9bf6f22

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,65 @@
/*!
Copyright (c) 2018 Jed Watson.
Licensed under the MIT License (MIT), see
http://jedwatson.github.io/classnames
*/
/*!
* JavaScript Cookie v2.2.1
* https://github.com/js-cookie/js-cookie
*
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack
* Released under the MIT license
*/
/*!
* screenfull
* v5.2.0 - 2021-11-03
* (c) Sindre Sorhus; MIT License
*/
/**
* @license React
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @license React
* react-jsx-runtime.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/**
* @remix-run/router v1.23.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
/**
* React Router DOM v6.30.3
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*/
//! moment.js
//! moment.js locale configuration

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
"use strict";(self.webpackChunkgrafana_exploretraces_app=self.webpackChunkgrafana_exploretraces_app||[]).push([[202],{90202:(e,t,a)=>{a.r(t),a.d(t,{default:()=>v,updatePlugin:()=>f});var n=a(85959),r=a.n(n),i=a(82007),l=a(18531),o=a(46089),c=a(31269);function p(e,t,a,n,r,i,l){try{var o=e[i](l),c=o.value}catch(e){return void a(e)}o.done?t(c):Promise.resolve(c).then(n,r)}function s(e){return function(){var t=this,a=arguments;return new Promise(function(n,r){var i=e.apply(t,a);function l(e){p(i,n,r,l,o,"next",e)}function o(e){p(i,n,r,l,o,"throw",e)}l(void 0)})}}function u(e,t,a){return t in e?Object.defineProperty(e,t,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[t]=a,e}function d(e){for(var t=1;t<arguments.length;t++){var a=null!=arguments[t]?arguments[t]:{},n=Object.keys(a);"function"==typeof Object.getOwnPropertySymbols&&(n=n.concat(Object.getOwnPropertySymbols(a).filter(function(e){return Object.getOwnPropertyDescriptor(a,e).enumerable}))),n.forEach(function(t){u(e,t,a[t])})}return e}function m(e,t){return t=null!=t?t:{},Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):function(e,t){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);t&&(n=n.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),a.push.apply(a,n)}return a}(Object(t)).forEach(function(a){Object.defineProperty(e,a,Object.getOwnPropertyDescriptor(t,a))}),e}const y=e=>({colorWeak:o.css`
color: ${e.colors.text.secondary};
`,marginTop:o.css`
margin-top: ${e.spacing(3)};
`,marginTopXl:o.css`
margin-top: ${e.spacing(6)};
`}),g=(e,t)=>s(function*(){try{yield f(e,t),l.locationService.reload()}catch(e){console.error("Error while updating the plugin",e)}})(),b={appConfig:{container:"data-testid ac-container",apiKey:"data-testid ac-api-key",apiUrl:"data-testid ac-api-url",submit:"data-testid ac-submit-form"}},f=(e,t)=>s(function*(){const a=(0,l.getBackendSrv)().fetch({url:`/api/plugins/${e}/settings`,method:"POST",data:t});return(yield(0,c.lastValueFrom)(a)).data})(),v=({plugin:e})=>{const t=(0,i.useStyles2)(y),{enabled:a,pinned:l,jsonData:o}=e.meta,[c,p]=(0,n.useState)({apiUrl:(null==o?void 0:o.apiUrl)||"",apiKey:"",isApiKeySet:Boolean(null==o?void 0:o.isApiKeySet)});return r().createElement("div",{"data-testid":b.appConfig.container},r().createElement(i.FieldSet,{label:"Enable / Disable"},!a&&r().createElement(r().Fragment,null,r().createElement("div",{className:t.colorWeak},"The plugin is currently not enabled."),r().createElement(i.Button,{className:t.marginTop,variant:"primary",onClick:()=>g(e.meta.id,{enabled:!0,pinned:!0,jsonData:o})},"Enable plugin")),a&&r().createElement(r().Fragment,null,r().createElement("div",{className:t.colorWeak},"The plugin is currently enabled."),r().createElement(i.Button,{className:t.marginTop,variant:"destructive",onClick:()=>g(e.meta.id,{enabled:!1,pinned:!1,jsonData:o})},"Disable plugin"))),r().createElement(i.FieldSet,{label:"API Settings",className:t.marginTopXl},r().createElement(i.Field,{label:"API Key",description:"A secret key for authenticating to our custom API"},r().createElement(i.SecretInput,{width:60,"data-testid":b.appConfig.apiKey,id:"api-key",value:null==c?void 0:c.apiKey,isConfigured:c.isApiKeySet,placeholder:"Your secret API key",onChange:e=>{p(m(d({},c),{apiKey:e.target.value.trim()}))},onReset:()=>p(m(d({},c),{apiKey:"",isApiKeySet:!1}))})),r().createElement(i.Field,{label:"API Url",description:"",className:t.marginTop},r().createElement(i.Input,{width:60,id:"api-url","data-testid":b.appConfig.apiUrl,label:"API Url",value:null==c?void 0:c.apiUrl,placeholder:"E.g.: http://mywebsite.com/api/v1",onChange:e=>{p(m(d({},c),{apiUrl:e.target.value.trim()}))}})),r().createElement("div",{className:t.marginTop},r().createElement(i.Button,{type:"submit","data-testid":b.appConfig.submit,onClick:()=>g(e.meta.id,{enabled:a,pinned:l,jsonData:{apiUrl:c.apiUrl,isApiKeySet:!0},secureJsonData:c.isApiKeySet?void 0:{apiKey:c.apiKey}}),disabled:Boolean(!c.apiUrl||!c.isApiKeySet&&!c.apiKey)},"Save API settings"))))}}}]);
//# sourceMappingURL=202.js.map?_cache=d57decc07c3263eef3bb

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkgrafana_exploretraces_app=self.webpackChunkgrafana_exploretraces_app||[]).push([[535],{43535:(e,t,a)=>{a.r(t),a.d(t,{default:()=>h});var l=a(85959),n=a.n(l),r=a(87781),o=a(81159),c=a(61829);const u=(0,l.lazy)(()=>Promise.all([a.e(200),a.e(782),a.e(766)]).then(a.bind(a,84766))),p=()=>n().createElement(o.Routes,null,n().createElement(o.Route,{path:c.bw.Explore,element:n().createElement(u,null)}),n().createElement(o.Route,{path:"/",element:n().createElement(o.Navigate,{replace:!0,to:c.bw.Explore})}));var s=a(18531);const m=n().createContext(null);class E extends n().PureComponent{render(){return n().createElement(m.Provider,{value:this.props},n().createElement(s.PluginPage,{layout:r.PageLayoutType.Custom},n().createElement(p,null)))}}const h=E}}]);
//# sourceMappingURL=535.js.map?_cache=57603cf48bcb03240c4a

View File

@@ -0,0 +1 @@
{"version":3,"file":"535.js?_cache=57603cf48bcb03240c4a","mappings":"6NAIA,MAAMA,GAAuBC,EAAAA,EAAAA,MAAK,IAAM,iEAE3BC,EAAY,IAErB,kBAACC,EAAAA,OAAMA,KACL,kBAACC,EAAAA,MAAKA,CAACC,KAAMC,EAAAA,GAAOC,QAASC,QAAS,kBAACR,EAAAA,QAEvC,kBAACI,EAAAA,MAAKA,CAACC,KAAM,IAAKG,QAAS,kBAACC,EAAAA,SAAQA,CAACC,SAAAA,EAAQC,GAAIL,EAAAA,GAAOC,a,eCL9D,MAAMK,EAAqBC,IAAAA,cAAyC,MAEpE,MAAMC,UAAYD,IAAAA,cAChBE,MAAAA,GACE,OACE,kBAACH,EAAmBI,SAAQ,CAACC,MAAOC,KAAKC,OACvC,kBAACC,EAAAA,WAAUA,CAACC,OAAQC,EAAAA,eAAeC,QACjC,kBAACrB,EAASA,OAIlB,EAGF,S","sources":["webpack://grafana-exploretraces-app/./components/Routes/Routes.tsx","webpack://grafana-exploretraces-app/./components/App/App.tsx"],"sourcesContent":["import React, { lazy } from 'react';\nimport { Navigate, Route, Routes } from 'react-router-dom';\nimport { ROUTES } from 'utils/shared';\n\nconst TraceExplorationPage = lazy(() => import('../../pages/Explore/TraceExplorationPage'));\n\nexport const AppRoutes = () => {\n return (\n <Routes>\n <Route path={ROUTES.Explore} element={<TraceExplorationPage />} />\n {/* <Route path={ROUTES.Home} element={<HomePage />} /> */}\n <Route path={'/'} element={<Navigate replace to={ROUTES.Explore} />} />\n </Routes>\n );\n};\n","import React from 'react';\nimport { AppRootProps, PageLayoutType } from '@grafana/data';\nimport { AppRoutes } from '../Routes';\nimport { PluginPage } from '@grafana/runtime';\n\n// This is used to be able to retrieve the root plugin props anywhere inside the app.\nconst PluginPropsContext = React.createContext<AppRootProps | null>(null);\n\nclass App extends React.PureComponent<AppRootProps> {\n render() {\n return (\n <PluginPropsContext.Provider value={this.props}>\n <PluginPage layout={PageLayoutType.Custom}>\n <AppRoutes />\n </PluginPage>\n </PluginPropsContext.Provider>\n );\n }\n}\n\nexport default App;\n"],"names":["TraceExplorationPage","lazy","AppRoutes","Routes","Route","path","ROUTES","Explore","element","Navigate","replace","to","PluginPropsContext","React","App","render","Provider","value","this","props","PluginPage","layout","PageLayoutType","Custom"],"sourceRoot":""}

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkgrafana_exploretraces_app=self.webpackChunkgrafana_exploretraces_app||[]).push([[722],{28722:(e,t,n)=>{n.r(t),n.d(t,{default:()=>f});var r=n(85959),o=n.n(r),a=n(15056),c=n(65082);function i(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function l(e,t){if(null==e)return{};var n,r,o,a={};if("undefined"!=typeof Reflect&&Reflect.ownKeys){for(n=Reflect.ownKeys(e),o=0;o<n.length;o++)r=n[o],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(a[r]=e[r]);return a}if(a=function(e,t){if(null==e)return{};var n,r,o={},a=Object.getOwnPropertyNames(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n]);return o}(e,t),Object.getOwnPropertySymbols)for(n=Object.getOwnPropertySymbols(e),o=0;o<n.length;o++)r=n[o],t.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(e,r)&&(a[r]=e[r]);return a}function u(e){let{initialTimeRange:t,onTimeRangeChange:n}=e,r=l(e,["initialTimeRange","onTimeRangeChange"]);var o;const u=new a.JZ({value:t,from:t.raw.from.toString(),to:t.raw.to.toString()});u.subscribeToState(e=>{n&&n(e.value)});const f=new c.Nr(function(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(e){return Object.getOwnPropertyDescriptor(n,e).enumerable}))),r.forEach(function(t){i(e,t,n[t])})}return e}({$timeRange:u,embedded:!0,initialMetric:null!==(o=r.initialMetric)&&void 0!==o?o:"rate"},r));if(!r.embeddedMini){const e=new URLSearchParams(window.location.search);a.Go.syncStateFromSearchParams(f,e)}return f}function f(e){const[t]=(0,r.useState)(u(e));return e.urlSync?o().createElement(a.$L,{namespace:"td",scene:t,updateUrlOnInit:!1,createBrowserHistorySteps:!0},o().createElement(t.Component,{model:t})):o().createElement(t.Component,{model:t})}}}]);
//# sourceMappingURL=722.js.map?_cache=acdc8abd059829a87569

View File

@@ -0,0 +1 @@
{"version":3,"file":"722.js?_cache=acdc8abd059829a87569","mappings":"27BAMA,SAASA,EAA+B,G,IAAA,iBACtCC,EAAgB,kBAChBC,GAE8B,EAD3BC,EAAAA,EAAAA,EAAAA,C,6CAcmFA,EAZtF,MAAMC,EAAa,IAAIC,EAAAA,GAAe,CACpCC,MAAOL,EACPM,KAAMN,EAAiBO,IAAID,KAAKE,WAChCC,GAAIT,EAAiBO,IAAIE,GAAGD,aAG9BL,EAAWO,iBAAkBR,IACvBD,GACFA,EAAkBC,EAAMG,SAI5B,MAAMM,EAAc,IAAIC,EAAAA,G,kUAAiB,EAAET,aAAYU,UAAU,EAAMC,cAAkC,QAAnBZ,EAAAA,EAAMY,qBAANZ,IAAAA,EAAAA,EAAuB,QAAWA,IAKxH,IAAKA,EAAMa,aAAc,CACvB,MAAMC,EAAS,IAAIC,gBAAgBC,OAAOC,SAASC,QACnDC,EAAAA,GAAWC,0BAA0BX,EAAaK,EACpD,CAEA,OAAOL,CACT,CAEe,SAASY,EAAyBC,GAC/C,MAAOb,IAAec,EAAAA,EAAAA,UAAS1B,EAA+ByB,IAE9D,OAAKA,EAAME,QAKT,kBAACC,EAAAA,GAAsBA,CAACC,UAAU,KAAKC,MAAOlB,EAAamB,iBAAiB,EAAOC,2BAA2B,GAC5G,kBAACpB,EAAYqB,UAAS,CAACC,MAAOtB,KALzB,kBAACA,EAAYqB,UAAS,CAACC,MAAOtB,GAQzC,C","sources":["webpack://grafana-exploretraces-app/./exposedComponents/EmbeddedTraceExploration/EmbeddedTraceExploration.tsx"],"sourcesContent":["import React, { useState } from 'react';\nimport { SceneTimeRange, sceneUtils, UrlSyncContextProvider } from '@grafana/scenes';\n\nimport { TraceExploration } from '../../pages/Explore/TraceExploration';\nimport { EmbeddedTraceExplorationState } from 'exposedComponents/types';\n\nfunction buildTraceExplorationFromState({\n initialTimeRange,\n onTimeRangeChange,\n ...state\n}: EmbeddedTraceExplorationState) {\n const $timeRange = new SceneTimeRange({\n value: initialTimeRange,\n from: initialTimeRange.raw.from.toString(),\n to: initialTimeRange.raw.to.toString(),\n });\n\n $timeRange.subscribeToState((state) => {\n if (onTimeRangeChange) {\n onTimeRangeChange(state.value);\n }\n });\n\n const exploration = new TraceExploration({ $timeRange, embedded: true, initialMetric: state.initialMetric ?? 'rate', ...state });\n\n // Otherwise, we'll sync with the URL when in embedded mini mode,\n // and this conflicts the embedded mini mode query when Traces Drilldown is also opened\n // because the URL is already synced with Traces Drilldown\n if (!state.embeddedMini) {\n const params = new URLSearchParams(window.location.search);\n sceneUtils.syncStateFromSearchParams(exploration, params);\n }\n\n return exploration;\n}\n\nexport default function EmbeddedTraceExploration(props: EmbeddedTraceExplorationState) {\n const [exploration] = useState(buildTraceExplorationFromState(props));\n\n if (!props.urlSync) {\n return <exploration.Component model={exploration} />;\n }\n\n return (\n <UrlSyncContextProvider namespace='td' scene={exploration} updateUrlOnInit={false} createBrowserHistorySteps={true}>\n <exploration.Component model={exploration} />\n </UrlSyncContextProvider>\n );\n}\n"],"names":["buildTraceExplorationFromState","initialTimeRange","onTimeRangeChange","state","$timeRange","SceneTimeRange","value","from","raw","toString","to","subscribeToState","exploration","TraceExploration","embedded","initialMetric","embeddedMini","params","URLSearchParams","window","location","search","sceneUtils","syncStateFromSearchParams","EmbeddedTraceExploration","props","useState","urlSync","UrlSyncContextProvider","namespace","scene","updateUrlOnInit","createBrowserHistorySteps","Component","model"],"sourceRoot":""}

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkgrafana_exploretraces_app=self.webpackChunkgrafana_exploretraces_app||[]).push([[766],{84766:(e,t,a)=>{a.r(t),a.d(t,{TraceExplorationView:()=>i,default:()=>s});var n=a(85959),r=a.n(n),o=a(31051),c=a(61829),l=a(76338),p=a(15056);const s=()=>{const e=localStorage.getItem(c.cd)||"",[t]=(0,n.useState)((0,o.em)(e));return r().createElement(i,{exploration:t})};function i({exploration:e}){const[t,a]=r().useState(!1);return(0,n.useEffect)(()=>{t||(a(!0),(0,l.EE)(l.NO.common,l.ir.common.app_initialized))},[e,t]),t?r().createElement(p.$L,{scene:e,updateUrlOnInit:!0,createBrowserHistorySteps:!0},r().createElement(e.Component,{model:e})):null}}}]);
//# sourceMappingURL=766.js.map?_cache=82ff3d37096ced3515d5

View File

@@ -0,0 +1 @@
{"version":3,"file":"766.js?_cache=82ff3d37096ced3515d5","mappings":"mQAQA,MAOA,EAP6B,KAC3B,MAAMA,EAAYC,aAAaC,QAAQC,EAAAA,KAAsB,IACtDC,IAAeC,EAAAA,EAAAA,WAASC,EAAAA,EAAAA,IAAqBN,IAEpD,OAAO,kBAACO,EAAAA,CAAqBH,YAAaA,KAKrC,SAASG,GAAqB,YAAEH,IACrC,MAAOI,EAAeC,GAAoBC,IAAAA,UAAe,GAUzD,OARAC,EAAAA,EAAAA,WAAU,KACHH,IACHC,GAAiB,IAEjBG,EAAAA,EAAAA,IAAqBC,EAAAA,GAAkBC,OAAQC,EAAAA,GAAoBD,OAAOE,mBAE3E,CAACZ,EAAaI,IAEZA,EAKH,kBAACS,EAAAA,GAAsBA,CAACC,MAAOd,EAAae,iBAAiB,EAAMC,2BAA2B,GAC5F,kBAAChB,EAAYiB,UAAS,CAACC,MAAOlB,KALzB,IAQX,C","sources":["webpack://grafana-exploretraces-app/./pages/Explore/TraceExplorationPage.tsx"],"sourcesContent":["import React, { useEffect, useState } from 'react';\n\nimport { newTracesExploration } from '../../utils/utils';\nimport { TraceExploration } from './TraceExploration';\nimport { DATASOURCE_LS_KEY } from '../../utils/shared';\nimport { reportAppInteraction, USER_EVENTS_ACTIONS, USER_EVENTS_PAGES } from '../../utils/analytics';\nimport { UrlSyncContextProvider } from '@grafana/scenes';\n\nconst TraceExplorationPage = () => {\n const initialDs = localStorage.getItem(DATASOURCE_LS_KEY) || '';\n const [exploration] = useState(newTracesExploration(initialDs));\n\n return <TraceExplorationView exploration={exploration} />;\n};\n\nexport default TraceExplorationPage;\n\nexport function TraceExplorationView({ exploration }: { exploration: TraceExploration }) {\n const [isInitialized, setIsInitialized] = React.useState(false);\n\n useEffect(() => {\n if (!isInitialized) {\n setIsInitialized(true);\n\n reportAppInteraction(USER_EVENTS_PAGES.common, USER_EVENTS_ACTIONS.common.app_initialized);\n }\n }, [exploration, isInitialized]);\n\n if (!isInitialized) {\n return null;\n }\n\n return (\n <UrlSyncContextProvider scene={exploration} updateUrlOnInit={true} createBrowserHistorySteps={true}>\n <exploration.Component model={exploration} />\n </UrlSyncContextProvider>\n );\n}\n"],"names":["initialDs","localStorage","getItem","DATASOURCE_LS_KEY","exploration","useState","newTracesExploration","TraceExplorationView","isInitialized","setIsInitialized","React","useEffect","reportAppInteraction","USER_EVENTS_PAGES","common","USER_EVENTS_ACTIONS","app_initialized","UrlSyncContextProvider","scene","updateUrlOnInit","createBrowserHistorySteps","Component","model"],"sourceRoot":""}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,2 @@
"use strict";(self.webpackChunkgrafana_exploretraces_app=self.webpackChunkgrafana_exploretraces_app||[]).push([[812],{15812:(e,r,a)=>{a.r(r),a.d(r,{default:()=>s});var n=a(18531),t=a(82007),o=a(85959),p=a.n(o),u=a(62533);function s({datasourceUid:e,matchers:r,from:a,to:s,returnToPreviousSource:c,renderButton:i}){const l=(0,n.useReturnToPrevious)(),d=(0,o.useMemo)(()=>{let n=new URLSearchParams;return e&&n.append("var-ds",e),a&&n.append("from",a),s&&n.append("to",s),r.forEach(e=>{n.append("var-filters",`${e.name}|${e.operator}|${e.value}`)}),n.append("var-primarySignal","true"),`a/${u.id}/explore?${n.toString()}`},[e,a,s,r]);return d?i?i({href:d}):p().createElement(t.LinkButton,{variant:"secondary",href:d,onClick:()=>l(c||"previous")},"Open in Traces Drilldown"):null}}}]);
//# sourceMappingURL=812.js.map?_cache=ccee62b1efb9b2ee9d6e

View File

@@ -0,0 +1 @@
{"version":3,"file":"812.js?_cache=ccee62b1efb9b2ee9d6e","mappings":"6NAMe,SAASA,GAA0B,cAChDC,EAAa,SACbC,EAAQ,KACRC,EAAI,GACJC,EAAE,uBACFC,EAAsB,aACtBC,IAEA,MAAMC,GAAsBC,EAAAA,EAAAA,uBAEtBC,GAAOC,EAAAA,EAAAA,SAAQ,KACnB,IAAIC,EAAS,IAAIC,gBAoBjB,OAlBIX,GACFU,EAAOE,OAAO,SAAUZ,GAGtBE,GACFQ,EAAOE,OAAO,OAAQV,GAGpBC,GACFO,EAAOE,OAAO,KAAMT,GAGtBF,EAASY,QAASC,IAChBJ,EAAOE,OAAO,cAAe,GAAGE,EAAeC,QAAQD,EAAeE,YAAYF,EAAeG,WAGnGP,EAAOE,OAAO,oBAAqB,QAE5B,KAAKM,EAAAA,cAAyBR,EAAOS,cAC3C,CAACnB,EAAeE,EAAMC,EAAIF,IAE7B,OAAKO,EAIDH,EACKA,EAAa,CAAEG,SAItB,kBAACY,EAAAA,WAAUA,CACTC,QAAQ,YACRb,KAAMA,EACNc,QAAS,IAAMhB,EAAoBF,GAA0B,aAC9D,4BAZM,IAgBX,C","sources":["webpack://grafana-exploretraces-app/./exposedComponents/OpenInExploreTracesButton/OpenInExploreTracesButton.tsx"],"sourcesContent":["import { useReturnToPrevious } from '@grafana/runtime';\nimport { LinkButton } from '@grafana/ui';\nimport React, { useMemo } from 'react';\nimport { OpenInExploreTracesButtonProps } from '../types';\nimport pluginJson from '../../plugin.json';\n\nexport default function OpenInExploreTracesButton({\n datasourceUid,\n matchers,\n from,\n to,\n returnToPreviousSource,\n renderButton,\n}: OpenInExploreTracesButtonProps) {\n const setReturnToPrevious = useReturnToPrevious();\n\n const href = useMemo(() => {\n let params = new URLSearchParams();\n\n if (datasourceUid) {\n params.append('var-ds', datasourceUid);\n }\n\n if (from) {\n params.append('from', from);\n }\n\n if (to) {\n params.append('to', to);\n }\n\n matchers.forEach((streamSelector) => {\n params.append('var-filters', `${streamSelector.name}|${streamSelector.operator}|${streamSelector.value}`);\n });\n\n params.append('var-primarySignal', 'true'); // so all spans is selected\n\n return `a/${pluginJson.id}/explore?${params.toString()}`;\n }, [datasourceUid, from, to, matchers]);\n\n if (!href) {\n return null;\n }\n\n if (renderButton) {\n return renderButton({ href });\n }\n\n return (\n <LinkButton\n variant=\"secondary\"\n href={href}\n onClick={() => setReturnToPrevious(returnToPreviousSource || 'previous')}\n >\n Open in Traces Drilldown\n </LinkButton>\n );\n}\n"],"names":["OpenInExploreTracesButton","datasourceUid","matchers","from","to","returnToPreviousSource","renderButton","setReturnToPrevious","useReturnToPrevious","href","useMemo","params","URLSearchParams","append","forEach","streamSelector","name","operator","value","pluginJson","toString","LinkButton","variant","onClick"],"sourceRoot":""}

View File

@@ -0,0 +1,67 @@
<svg viewBox="0 0 722 480" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M514.59 3.80879C447.52 -7.78121 379.51 8.58879 314.8 32.5588C275.1 47.2688 236.85 58.9488 196.11 69.7588C150.35 81.8988 102.13 94.2588 62.7402 123.959C15.7502 159.389 -0.05983 214.349 0.000170029 274.969C0.04017 319.049 7.54023 365.349 33.0602 399.379C71.8302 451.069 139.04 459.809 196.03 455.539C267.53 450.189 313.45 436.549 383.95 458.929C471.35 486.669 580.88 498.339 659.07 416.129C765.14 304.599 726.89 126.169 614.63 45.6788C598.19 33.8888 580.48 24.2188 561.98 16.9888C546.27 10.8488 530.46 6.53878 514.59 3.79878V3.80879Z" fill="#9087E9" fill-opacity="0.3"/>
<path opacity="0.3" d="M273.041 410.45C346.097 410.45 405.321 403.497 405.321 394.92C405.321 386.343 346.097 379.39 273.041 379.39C199.985 379.39 140.761 386.343 140.761 394.92C140.761 403.497 199.985 410.45 273.041 410.45Z" fill="black"/>
<g id="grot-404-arm">
<path d="M346.921 293.19C358.131 296.32 448.181 322.33 432.881 344.87C418.531 366 348.841 340.92 326.921 325.65" fill="#F99F10"/>
<path d="M346.921 293.19C358.131 296.32 448.181 322.33 432.881 344.87C418.531 366 348.841 340.92 326.921 325.65" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
</g>
<path d="M218.861 115.04C187.091 92.89 146.441 87.92 139.291 95.87C133.491 102.31 155.401 137.59 151.851 147.9C148.311 158.21 117.231 151.54 113.831 164.65C112.221 170.88 136.061 185.91 135.421 194.61C134.781 203.31 116.371 200.85 115.021 212.11C114.111 219.68 130.911 221.35 130.271 230.37C129.631 239.39 117.501 237.74 118.031 246.48C118.461 253.57 131.721 248.9 135.271 260.82C138.811 272.74 218.871 115.04 218.871 115.04H218.861Z" fill="#EF6122"/>
<path d="M77.1408 326.59C78.1108 297.43 98.4608 290.96 113.241 295.94C128.011 300.92 127.191 318.09 123.461 324.55C117.501 334.86 108.751 330.41 112.021 323.19C114.441 316.26 114.891 306.64 103.441 309.7C89.2109 313.51 93.6408 351.77 123.601 344.25C144.121 339.1 142.511 317.37 140.881 285.68C136.511 255.02 141.241 214.82 154.281 176.66C180.701 99.34 339.851 74.21 392.681 145.73C461.311 238.63 385.631 329.37 373.991 340.96C337.731 369.1 343.611 394.56 317.631 396.25C292.941 397.86 294.971 372.77 278.641 371.37C277.681 371.37 276.721 371.37 275.761 371.35C256.591 372.76 252.891 396.67 223.981 396.25C200.421 395.91 210.911 375.33 195.171 365.46C191.871 363.9 189.011 362.8 186.371 362.08C184.291 361.64 181.981 361.32 179.371 361.16C178.771 361.12 175.141 361.14 174.081 361.14C164.731 361.31 159.121 363.52 137.991 367.82C99.9208 375.56 76.3208 351.26 77.1408 326.59Z" fill="#FAC20C" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10"/>
<path d="M181.051 134.78C235.171 96.44 298.161 117.38 306.211 122.7C314.261 128.02 325.671 121.7 319.261 105.73C297.781 52.25 242.361 25.05 227.441 34.26C210.761 44.56 231.741 90.5 220.841 101.27C212.091 109.91 206.131 103.31 191.251 98.32C177.811 93.81 181.051 134.78 181.051 134.78Z" fill="#EF6122"/>
<path d="M262.101 239.52L410.381 239.52C428.197 239.52 442.641 225.077 442.641 207.26V207.25C442.641 189.433 428.197 174.99 410.381 174.99L262.101 174.99C244.284 174.99 229.841 189.433 229.841 207.25V207.26C229.841 225.077 244.284 239.52 262.101 239.52Z" fill="#5545EF" stroke="#231735" stroke-width="5" stroke-miterlimit="10"/>
<path d="M296.28 228.67L408.8 228.67C420.619 228.67 430.2 219.089 430.2 207.27C430.2 195.451 420.619 185.87 408.8 185.87H296.28C284.461 185.87 274.88 195.451 274.88 207.27C274.88 219.089 284.461 228.67 296.28 228.67Z" fill="#19052D"/>
<path d="M257.971 297.31C257.351 316.15 250.621 333.66 236.651 332.47C221.221 331.16 217.391 315.15 217.921 297.76" fill="#F99F10"/>
<path d="M257.971 297.31C257.351 316.15 250.621 333.66 236.651 332.47C221.221 331.16 217.391 315.15 217.921 297.76" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M200.23 104.32C172.95 91.48 146.34 84.67 139.29 95.87C131.67 107.98 157.65 133.7 151.85 147.9C146.43 161.18 115.82 149.78 113.83 164.65C112.24 176.55 136.06 185.91 135.42 194.61C134.78 203.31 116.14 199.76 114.78 211.03C113.87 218.6 130.91 221.35 130.26 230.37C129.62 239.39 118.02 237.73 118.02 246.48C118.02 253.6 138.81 254.21 139.4 269.02" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10"/>
<path d="M306.211 122.7C314.261 128.02 325.671 121.7 319.261 105.73C297.781 52.25 244.001 24.95 227.441 34.26C210.061 44.03 231.741 90.5 220.841 101.27C214.751 107.29 206.751 107.03 199.421 103.95" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10"/>
<path d="M306.531 122.94C277.581 105.78 226.39 104.87 180.98 138.83" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10"/>
<path d="M341.4 253.66C351.4 254.03 366.49 259.17 366.02 269.49C365.55 279.82 349.3 283.19 335.71 279.29C322.12 275.39 323.16 265.5 325.3 262.15C327.44 258.8 332.12 253.32 341.41 253.66H341.4Z" fill="black"/>
<path d="M345.16 258.45C351.6 259.28 356.39 262.63 356.39 262.63C356.39 262.63 355.45 269.62 344.22 269.4C332.99 269.18 336.07 258.72 336.07 258.72C336.07 258.72 339.03 257.66 345.15 258.44L345.16 258.45Z" fill="white"/>
<g opacity="0.6">
<path d="M621.96 318.31V332.84" stroke="#7F73F2" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M629.23 325.58H614.69" stroke="#7F73F2" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M657.411 162.86V175.25" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M663.601 169.05H651.221" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<g opacity="0.4">
<path d="M497.061 209.35V221.73" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M503.25 215.54H490.87" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
</g>
<path d="M660.051 285.01L668.811 293.76" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M668.811 285.01L660.051 293.76" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M476.391 312.83L482.341 318.78" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M482.341 312.83L476.391 318.78" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M519 113.2H527.41" stroke="#7F73F2" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M523.21 109V117.41" stroke="#7F73F2" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M609.581 239.16L616.861 231.87C617.721 231.01 617.721 229.61 616.861 228.74C616.001 227.88 614.601 227.88 613.731 228.74L606.451 236.03L599.161 228.75C598.301 227.89 596.901 227.89 596.031 228.75C595.171 229.61 595.171 231.01 596.031 231.88L603.321 239.16L596.041 246.45C595.181 247.31 595.181 248.71 596.041 249.58C596.471 250.01 597.041 250.23 597.601 250.23C598.161 250.23 598.731 250.01 599.161 249.58L606.441 242.29L613.731 249.57C614.161 250 614.731 250.22 615.291 250.22C615.851 250.22 616.421 250 616.851 249.57C617.711 248.71 617.711 247.31 616.851 246.44L609.561 239.16H609.581Z" fill="#B4ADF8"/>
<path d="M557.84 280.71V267.77C557.83 266.23 556.581 264.99 555.051 264.99C553.521 264.99 552.271 266.23 552.271 267.77V280.71C552.281 282.25 553.531 283.49 555.061 283.49C556.591 283.49 557.84 282.25 557.84 280.71Z" fill="#A59DF7"/>
<path d="M648.21 244.27V257.21C648.22 258.75 649.47 259.99 651 259.99C652.53 259.99 653.78 258.75 653.78 257.21V244.27C653.77 242.73 652.52 241.49 650.99 241.49C649.46 241.49 648.21 242.73 648.21 244.27Z" fill="#402EED"/>
<path d="M561.34 181.68H548.4C546.86 181.69 545.62 182.94 545.62 184.47C545.62 186 546.86 187.25 548.4 187.25H561.34C562.88 187.24 564.12 185.99 564.12 184.46C564.12 182.93 562.88 181.68 561.34 181.68Z" fill="#5041E4"/>
<path d="M568.931 247.36L568.951 280.7C568.951 282.24 570.191 283.48 571.731 283.48C573.271 283.48 574.511 282.24 574.511 280.7L574.491 247.36C574.491 245.82 573.251 244.58 571.711 244.58C570.171 244.58 568.931 245.82 568.931 247.36Z" fill="#A59DF7"/>
<path d="M574.791 321.8L541.451 321.82C539.911 321.82 538.671 323.06 538.671 324.6C538.671 326.14 539.911 327.38 541.451 327.38L574.791 327.36C576.331 327.36 577.571 326.12 577.571 324.58C577.571 323.04 576.331 321.8 574.791 321.8Z" fill="#5041E4"/>
<path d="M601.3 192.84H588.12C586.46 192.84 585.11 194.2 585.11 195.86V209.04C585.11 210.71 586.47 212.05 588.13 212.05H601.31C602.97 212.05 604.32 210.7 604.32 209.03V195.85C604.32 194.19 602.96 192.84 601.3 192.84ZM599.82 207.55H589.61V197.35H599.82V207.55Z" fill="#7C6FFD"/>
<path d="M541.171 280.72V258.49C541.161 256.95 539.911 255.71 538.381 255.71C536.851 255.71 535.601 256.95 535.601 258.49V280.72C535.611 282.26 536.861 283.5 538.391 283.5C539.921 283.5 541.171 282.26 541.171 280.72Z" fill="#A59DF7"/>
<path d="M524.981 318.59C528.361 318.59 531.111 321.34 531.111 324.72C531.111 328.1 528.361 330.85 524.981 330.85C521.601 330.85 518.851 328.1 518.851 324.72C518.851 321.34 521.601 318.59 524.981 318.59ZM524.981 326.76C526.111 326.76 527.021 325.84 527.021 324.72C527.021 323.6 526.101 322.68 524.981 322.68C523.861 322.68 522.941 323.6 522.941 324.72C522.941 325.84 523.861 326.76 524.981 326.76Z" fill="#5545EF"/>
<path d="M656.781 228.23C656.781 231.6 654.041 234.34 650.671 234.34C647.301 234.34 644.561 231.6 644.561 228.23C644.561 224.86 647.301 222.12 650.671 222.12C654.041 222.12 656.781 224.86 656.781 228.23ZM648.641 228.23C648.641 229.35 649.551 230.27 650.681 230.27C651.811 230.27 652.72 229.36 652.72 228.23C652.72 227.1 651.811 226.19 650.681 226.19C649.551 226.19 648.641 227.1 648.641 228.23Z" fill="#402EED"/>
<path d="M607.45 279.74C607.04 279.74 606.56 279.67 606.15 279.47C605.74 279.33 605.33 279.06 605.06 278.72C604.72 278.45 604.45 278.04 604.31 277.63C604.1 277.22 604.04 276.81 604.04 276.33C604.04 275.44 604.38 274.55 605.06 273.94C605.33 273.6 605.74 273.33 606.15 273.19C606.97 272.85 607.93 272.85 608.75 273.19C609.16 273.33 609.57 273.6 609.84 273.94C610.52 274.55 610.87 275.44 610.87 276.33C610.87 276.81 610.8 277.22 610.6 277.63C610.46 278.04 610.19 278.45 609.85 278.72C609.58 279.06 609.17 279.34 608.76 279.47C608.35 279.67 607.94 279.74 607.46 279.74H607.45Z" fill="#7F73F2"/>
<path d="M560.38 219.83C559.24 219.83 558.111 219.4 557.331 218.52C556.461 217.74 556.021 216.61 556.021 215.47C556.021 214.33 556.451 213.21 557.331 212.42C558.901 210.77 561.861 210.77 563.421 212.42C563.861 212.77 564.21 213.3 564.38 213.82C564.64 214.35 564.73 214.95 564.73 215.48C564.73 216.08 564.64 216.61 564.38 217.13C564.21 217.66 563.861 218.18 563.421 218.53C562.641 219.41 561.51 219.84 560.37 219.84L560.38 219.83Z" fill="#5545EF"/>
<path d="M678.98 214.927C678.2 214.927 677.43 214.627 676.89 214.027C676.29 213.487 676 212.717 676 211.937C676 211.157 676.3 210.387 676.89 209.847C677.96 208.717 679.99 208.717 681.06 209.847C681.36 210.087 681.6 210.447 681.72 210.807C681.9 211.167 681.96 211.578 681.96 211.948C681.96 212.358 681.9 212.717 681.72 213.077C681.6 213.437 681.36 213.798 681.06 214.038C680.52 214.638 679.75 214.937 678.97 214.937L678.98 214.927Z" fill="#B4ADF8"/>
<path d="M614.5 106.948C614.08 106.948 613.59 106.878 613.17 106.668C612.75 106.528 612.33 106.247 612.05 105.897C611.35 105.267 611 104.358 611 103.448C611 102.958 611.07 102.537 611.28 102.117C611.42 101.697 611.7 101.278 612.05 100.998C613.31 99.6675 615.69 99.6675 616.95 100.998C617.3 101.278 617.58 101.697 617.72 102.117C617.93 102.537 618 102.958 618 103.448C618 104.358 617.65 105.267 616.95 105.897C616.67 106.247 616.25 106.528 615.83 106.668C615.41 106.878 614.92 106.948 614.5 106.948Z" fill="#5545EF"/>
<path d="M614.231 301.93H493.311C485.081 301.93 477.641 296.42 475.231 288.53C474.831 287.21 475.571 285.81 476.891 285.41C478.211 285.01 479.611 285.75 480.011 287.07C481.791 292.88 487.261 296.93 493.311 296.93H614.231C621.901 296.93 628.131 290.69 628.131 283.03V192.28C628.131 184.62 621.891 178.38 614.231 178.38H575.251C573.871 178.38 572.751 177.26 572.751 175.88C572.751 174.5 573.871 173.38 575.251 173.38H614.231C624.651 173.38 633.131 181.86 633.131 192.28V283.03C633.131 293.45 624.651 301.93 614.231 301.93Z" fill="#5A49FA"/>
<g id="grot-404-text">
<path d="M564.94 154.74V131.41L549.33 148.14H569.88" stroke="#A69DF7" stroke-width="5.18" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M624.88 154.74V131.41L609.271 148.14H629.831" stroke="#A69DF7" stroke-width="5.18" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M589.431 152.79C595.202 152.79 599.88 148.402 599.88 142.99C599.88 137.578 595.202 133.19 589.431 133.19C583.659 133.19 578.98 137.578 578.98 142.99C578.98 148.402 583.659 152.79 589.431 152.79Z" stroke="#A69DF7" stroke-width="5.18" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</g>
<path d="M364.23 218.6L394.26 198.12" stroke="white" stroke-width="5.18" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M394.26 218.6L364.23 198.12" stroke="white" stroke-width="5.18" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M319.95 218.6L349.99 198.12" stroke="white" stroke-width="5.18" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M349.99 218.6L319.95 198.12" stroke="white" stroke-width="5.18" stroke-miterlimit="10" stroke-linecap="round"/>
<g id="grot-404-magnifier">
<path opacity="0.15" d="M459.55 269.6C493.527 269.6 521.07 242.057 521.07 208.08C521.07 174.103 493.527 146.56 459.55 146.56C425.574 146.56 398.03 174.103 398.03 208.08C398.03 242.057 425.574 269.6 459.55 269.6Z" fill="white"/>
<path d="M531.381 221.52C532.261 216.9 532.671 212.18 532.621 207.48C532.571 202.87 532.071 198.24 531.131 193.71C530.201 189.23 528.831 184.82 527.061 180.6C525.291 176.38 523.111 172.3 520.581 168.5C518.021 164.65 515.071 161.04 511.831 157.77C508.521 154.43 504.861 151.42 500.961 148.8C496.961 146.12 492.661 143.82 488.171 141.98C483.681 140.14 479.011 138.75 474.271 137.85C469.651 136.97 464.931 136.56 460.231 136.61C455.621 136.66 450.99 137.16 446.46 138.1C441.98 139.03 437.571 140.4 433.351 142.17C429.131 143.94 425.051 146.12 421.251 148.65C417.401 151.21 413.791 154.16 410.521 157.4C407.181 160.71 404.171 164.37 401.551 168.27C398.871 172.27 396.571 176.57 394.731 181.06C392.891 185.55 391.501 190.22 390.601 194.96C389.721 199.58 389.311 204.3 389.361 209C389.411 213.61 389.911 218.24 390.851 222.77C391.781 227.25 393.151 231.66 394.921 235.88C396.691 240.1 398.871 244.18 401.401 247.98C403.961 251.83 406.911 255.44 410.151 258.71C413.461 262.05 417.121 265.06 421.021 267.68C423.211 269.15 425.491 270.5 427.841 271.73L420.241 290.27L419.321 289.89C416.121 288.58 412.441 290.12 411.131 293.32L383.451 360.83C382.141 364.03 383.681 367.71 386.881 369.02L400.891 374.77C404.091 376.08 407.771 374.54 409.081 371.34L436.761 303.83C438.071 300.63 436.531 296.95 433.331 295.64L432.411 295.26L440.011 276.72C442.551 277.5 445.121 278.14 447.711 278.63C452.331 279.51 457.051 279.92 461.751 279.87C466.361 279.82 470.991 279.32 475.521 278.38C480.001 277.45 484.411 276.08 488.631 274.31C492.851 272.54 496.931 270.36 500.731 267.83C504.581 265.27 508.19 262.32 511.46 259.08C514.8 255.77 517.811 252.11 520.431 248.21C523.111 244.21 525.411 239.91 527.251 235.42C529.091 230.93 530.481 226.26 531.381 221.52ZM438.471 263.14C408.151 250.71 393.651 216.04 406.081 185.72C418.511 155.4 453.181 140.9 483.501 153.33C513.821 165.76 528.321 200.43 515.891 230.75C503.461 261.07 468.791 275.57 438.471 263.14Z" fill="black"/>
<path opacity="0.3" d="M431.661 246.88C433.981 248.49 436.401 249.85 438.881 250.99C422.951 235.18 420.151 209.77 433.381 190.69C446.611 171.61 471.401 165.33 491.781 174.71C489.841 172.79 487.721 171 485.401 169.39C464.001 154.55 434.621 159.86 419.781 181.26C404.941 202.66 410.251 232.04 431.651 246.88H431.661Z" fill="white"/>
<path d="M425.671 350.09C437.371 343.43 440.131 329.99 437.201 321.33C434.781 314.19 424.271 311.27 418.091 319.96C411.221 329.61 422.451 339.87 422.451 339.87" fill="#F99F10"/>
<path d="M425.671 350.09C437.371 343.43 440.131 329.99 437.201 321.33C434.781 314.19 424.271 311.27 418.091 319.96C411.221 329.61 422.451 339.87 422.451 339.87" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View File

@@ -0,0 +1,239 @@
# Changelog
## 1.3.2
## 1.3.1
##### Chores
* Upgrade react-router (#621) (eec1df9e)
##### Bug Fixes
* Check if usePluginFunctions is available (#616) (99112e44)
## 1.3.0
##### Chores
* **deps:**
* update dependency @babel/core to v7.28.5 (#577) (3dfd3cd5)
* update swc monorepo (#580) (8f14d360)
* update grafana/tempo:latest docker digest to 6d4f1f3 (#599) (8f747508)
* Update grafana to 12.3.0 (#609) (deb155f2)
* **config:** migrate config renovate.json (#607) (aee65df3)
##### Continuous Integration
* Update workflow permissions (#623) (0269bfc5)
##### Documentation Changes
* Minor updates to docs (#608) (af917d5d)
##### New Features
* Show favorites first in the attribute sidebar (#625) (975e40c6)
* Exceptions Tab v2 (#619) (7ee82314)
* Adaptive Traces Integration (#614) (c3c77e68)
* **links:** grafana assistant traces drilldown full query navigation (#541) (64e42e8e)
## 1.2.1
##### Chores
* Add Renovate rules (#606) (d836c42a)
* **deps:**
* update dependency nwsapi to v2.2.22 (#572) (07865f22)
* pin dependencies (#569) (f3353005)
##### Documentation Changes
* Exception tab (#585) (364fe32e)
* Doc updates for 554, 558, and 555 (#564) (68d41f9c)
##### New Features
* Mini embeddable Traces Drilldown (#592) (7aecc60e)
* Find single span errors and high latency on the root cause tab (#594) (db46387a)
* Link to Logs Drilldown instead of Explore (#563) (6ea96dd3)
## 1.2.0
##### Chores
* add annotation topic to annotation frame (#560) (e9856325)
##### New Features
* Attributes sidebar (#558) (7ed0f3c8)
* View trace by ID input (#555) (6a8d0cfe)
* Percentiles variable for duration breakdown (#554) (69e3ab05)
## 1.1.4
##### Chores
* Support quoted numeric strings (#552) (c9120937)
* Update create-plugin (#539) (b540db0e)
* updates readme to reflect GA status. (#540) (4c928873)
##### New Features
* Integrate Insights Timeline widget (#543) (8853aa3a)
##### Performance Improvements
* Use new TraceQL sampling hint for RED panels (#547) (b68d6c64)
## 1.1.3
##### Chores
* Exceptions tab improvements (#535) (7cf574e6)
* Update Grafana packages (#511) (b89ef3cb)
##### New Features
* Trace exploration improvements (#537) (a8704e8d)
* Exceptions tab (#509) (c259a96f)
##### Bug Fixes
* Fix date formatting when rounded (#529) (3593aaa7)
* Fix duplicate title and close button in drawer (#507) (6b4527be)
## 1.1.2
##### Chores
* changing input props for exposed component (#462) (0cf77202)
* isolate types imports for exposed component (#460) (fdb54e47)
* remove extension link from logs drilldown (#421) (9a8efe9e)
* update bundle-types.yml (#347) (7403a7ec)
##### Continuous Integration
* Add conventional commits workflow and improve release (#506) (81897aa4)
##### New Features
* open in explore traces button (#335) (d7d91db3)
* **explorations:** rename to `investigations` (#340) (651373d2)
##### Bug Fixes
* **500:** Use db.system.name instead of db.name attribute for the "Database calls" filter (#501) (06b298d4)
* **PanelMenu:** use `firstValueFrom()` instead of `lastValueFrom()` (#399) (e343d6a9)
* **open in drilldown button:** update tempo matcher type (#376) (78aceb98)
##### Other Changes
* create a new history item when a filter is added from the breakdown (#431) (edb3f1af)
* Do not show an empty state while streaming is still in progress (#426) (b877d479)
* update error panel y-axis labels (#424) (6236467b)
* Add "Go Queryless" hook (#404) (18319c97)
* Make extensions compatible with different Grafana versions (#395) (b045de36)
## [1.1.0](https://github.com/grafana/traces-drilldown/compare/v1.0.0...v1.1.0) (2025-06-27)
* Default to all spans when pressing Open in Traces Drilldown button ([#443](https://github.com/grafana/traces-drilldown/pull/443))
* Fix broken links in docs ([#447](https://github.com/grafana/traces-drilldown/pull/447))
* Fix zizmor detected template-injection issues ([#450](https://github.com/grafana/traces-drilldown/pull/450))
* Style error panels according to metric ([#449](https://github.com/grafana/traces-drilldown/pull/449))
* Work around ref URIs bug ([#457](https://github.com/grafana/traces-drilldown/pull/457))
* New exposed component to embed the trace exploration scene ([#407](https://github.com/grafana/traces-drilldown/pull/407))
* Fix Zizmor persist credentials issues ([#456](https://github.com/grafana/traces-drilldown/pull/456))
* Fix exposing types ([#459](https://github.com/grafana/traces-drilldown/pull/459))
* chore: isolate types imports for exposed component ([#460](https://github.com/grafana/traces-drilldown/pull/460))
* chore: changing input props for exposed component ([#462](https://github.com/grafana/traces-drilldown/pull/462))
* Embedded mode improvements ([#466](https://github.com/grafana/traces-drilldown/pull/466))
* Bring back all primary signals ([#472](https://github.com/grafana/traces-drilldown/pull/472))
* Upgrade packages ([#476](https://github.com/grafana/traces-drilldown/pull/476))
* Update policy token to use env variable from Vault ([#473](https://github.com/grafana/traces-drilldown/pull/473))
* Embedded mode improvements ([#477](https://github.com/grafana/traces-drilldown/pull/477))
* UPreserve asserts context via embedded assertions widget component ([#464](https://github.com/grafana/traces-drilldown/pull/464))
* Fix Zizmor issues ([#483](https://github.com/grafana/traces-drilldown/pull/483))
* Type string booleans as booleans unless user has put them in quotes ([#482](https://github.com/grafana/traces-drilldown/pull/482))
* Embedded mode fixes + improvements ([#484](https://github.com/grafana/traces-drilldown/pull/484))
* Explain selection vs baseline when 'Span rate' metric is chosen ([#487](https://github.com/grafana/traces-drilldown/pull/487))
* Update @grafana/scenes to 6.23.0 ([#488](https://github.com/grafana/traces-drilldown/pull/488))
* Add namespace to embedded app ([#489](https://github.com/grafana/traces-drilldown/pull/489))
## [1.0.0](https://github.com/grafana/traces-drilldown/compare/v0.2.9...v1.0.0) (2025-04-24)
* Breakdown: Do not show an empty state while streaming is still in progress. ([#426](https://github.com/grafana/traces-drilldown/pull/426))
* Add support for contextualised trace list table. ([#409](https://github.com/grafana/traces-drilldown/pull/409))
* Move version to menu and remove preview badge. ([#429](https://github.com/grafana/traces-drilldown/pull/429))
* Add fix to show empty state in the trace list. ([#430](https://github.com/grafana/traces-drilldown/pull/430))
* Fix to normalize comparison data when total fields are missing or invalid. ([#435](https://github.com/grafana/traces-drilldown/pull/435))
* Breakdown: create a new history item when a filter is added from the breakdown. ([#431](https://github.com/grafana/traces-drilldown/pull/431))
## [0.2.9](https://github.com/grafana/traces-drilldown/compare/v0.2.8...v0.2.9) (2025-04-15)
* Remove exemplars from heatmap. ([#398](https://github.com/grafana/traces-drilldown/pull/398))
* Filter out redundant attributes. ([#397](https://github.com/grafana/traces-drilldown/pull/397))
* Show warning if datasource is not configured with TraceQL metrics. ([#400](https://github.com/grafana/traces-drilldown/pull/400))
* Ensure Y-axis label matches the data for RED metrics. ([#401](https://github.com/grafana/traces-drilldown/pull/401))
* Explore: Add "Go Queryless" hook. ([#404](https://github.com/grafana/traces-drilldown/pull/404))
* Fix issue with container height. ([#422](https://github.com/grafana/traces-drilldown/pull/422))
* Use events to open traces. ([#410](https://github.com/grafana/traces-drilldown/pull/410))
* chore: remove extension link from logs drilldown. ([#421](https://github.com/grafana/traces-drilldown/pull/421))
* Fix structure tab flickering. ([#394](https://github.com/grafana/traces-drilldown/pull/394))
* Support typed query generation. ([#423](https://github.com/grafana/traces-drilldown/pull/423))
* RED Panels: update error panel y-axis labels. ([#424](https://github.com/grafana/traces-drilldown/pull/424))
* Rename plugin extension link from Explore to Drilldown. ([#425](https://github.com/grafana/traces-drilldown/pull/425))
* Add support for adding a trace to investigations. ([#408](https://github.com/grafana/traces-drilldown/pull/408))
## [0.2.6](https://github.com/grafana/traces-drilldown/compare/v0.2.4...v0.2.6) (2025-03-12)
### Enhancements
* Support for add to investigation. ([#320](https://github.com/grafana/traces-drilldown/pull/320))
* Support for metrics streaming. ([#312](https://github.com/grafana/traces-drilldown/pull/312))
* Rename plugin to Grafana Traces Drilldown. ([#329](https://github.com/grafana/traces-drilldown/pull/329))
* Add back and forward support for app actions. ([#294](https://github.com/grafana/traces-drilldown/pull/294))
* Exposes a component which takes properties and creates a LinkButton with a href to navigate to the Traces Drilldown from outside. ([#335](https://github.com/grafana/traces-drilldown/pull/335))
* Select custom columns in trace list. ([#342](https://github.com/grafana/traces-drilldown/pull/342))
## [0.2.3](https://github.com/grafana/explore-traces/compare/v0.2.2...v0.2.3) (2025-02-06)
### Enhancements
* **Open trace in drawer:** The traces now open in a drawer which should improve the experience of analysing the details of a trace. ([#325](https://github.com/grafana/explore-traces/pull/325))
### Bug Fixes
* Fixes crash on main metric panel ([#317](https://github.com/grafana/explore-traces/pull/317))
## [0.2.2](https://github.com/grafana/explore-traces/compare/v0.2.0...v0.2.2) (2025-01-13)
### Enhancements
* **Custom values in filters bar:** The filters bar now allows custom values which can be used to build regular expressions or input values missing from the dropdown options. ([#288](https://github.com/grafana/explore-traces/pull/252))
## [0.2.0](https://github.com/grafana/explore-traces/compare/v0.1.3...v0.2.0) (2025-01-10)
### Features
* **Support for exemplars:** Quickly jump to the relevant data points or logs for deeper troubleshooting with newly added support for exemplars, directly on your metrics graph. By clicking on a point of interest on the graph—like a spike or anomaly—you can quickly jump to the relevant traces for deeper troubleshooting and dramatically reduce the time it takes to root cause an issue. ([#278](https://github.com/grafana/explore-traces/pull/278)) Requires Grafana >= 11.5.0
* **Open traces in Explore:** When viewing trace spans, now you can easily open the full trace in Explore. This provides a streamlined way to pivot between trace analysis and the broader Grafana Explore experience without losing context. ([#267](https://github.com/grafana/explore-traces/pull/267))
### Enhancements
* **Trace breakdown adjusts better to smaller screens:** The **Breakdown** tab now automatically adjusts its attribute selector display based on available screen width, improving usability on smaller viewports. ([#267](https://github.com/grafana/explore-traces/pull/267))
* **Search is now case-insensitive:** Search in the **Breakdown** and **Comparison** tabs now ignores capitalization, ensuring you see all matching results. ([#252](https://github.com/grafana/explore-traces/pull/252))
* **Performance boost and reduced bundle size**: Code-splitting and lazy loading for faster loading times. Only the modules you need are fetched on demand, cutting down on initial JavaScript payload and improving app performance. ([#275](https://github.com/grafana/explore-traces/pull/275))
* **Various fixes and improvements:** Fixed loading and empty states. Fixed broken documentation link. Refined styles above filters for a more polished look. Added descriptive text to the Span List tab for added clarity. Enhanced tooltip design for RED metrics. Standardized error messages and titles, plus added helpful hints when an empty state appears. ([#263](https://github.com/grafana/explore-traces/pull/263))
## 0.1.2
Release public preview version.

View File

@@ -0,0 +1,661 @@
GNU AFFERO GENERAL PUBLIC LICENSE
Version 3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU Affero General Public License is a free, copyleft license for
software and other kinds of works, specifically designed to ensure
cooperation with the community in the case of network server software.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
our General Public Licenses are intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
Developers that use our General Public Licenses protect your rights
with two steps: (1) assert copyright on the software, and (2) offer
you this License which gives you legal permission to copy, distribute
and/or modify the software.
A secondary benefit of defending all users' freedom is that
improvements made in alternate versions of the program, if they
receive widespread use, become available for other developers to
incorporate. Many developers of free software are heartened and
encouraged by the resulting cooperation. However, in the case of
software used on network servers, this result may fail to come about.
The GNU General Public License permits making a modified version and
letting the public access it on a server without ever releasing its
source code to the public.
The GNU Affero General Public License is designed specifically to
ensure that, in such cases, the modified source code becomes available
to the community. It requires the operator of a network server to
provide the source code of the modified version running there to the
users of that server. Therefore, public use of a modified version, on
a publicly accessible server, gives the public access to the source
code of the modified version.
An older license, called the Affero General Public License and
published by Affero, was designed to accomplish similar goals. This is
a different license, not a version of the Affero GPL, but Affero has
released a new version of the Affero GPL which permits relicensing under
this license.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU Affero General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Remote Network Interaction; Use with the GNU General Public License.
Notwithstanding any other provision of this License, if you modify the
Program, your modified version must prominently offer all users
interacting with it remotely through a computer network (if your version
supports such interaction) an opportunity to receive the Corresponding
Source of your version by providing access to the Corresponding Source
from a network server at no charge, through some standard or customary
means of facilitating copying of software. This Corresponding Source
shall include the Corresponding Source for any work covered by version 3
of the GNU General Public License that is incorporated pursuant to the
following paragraph.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the work with which it is combined will remain governed by version
3 of the GNU General Public License.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU Affero General Public License from time to time. Such new versions
will be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU Affero General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU Affero General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU Affero General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer
network, you should also make sure that it provides a way for users to
get its source. For example, if your program is a web application, its
interface could display a "Source" link that leads users to an archive
of the code. There are many ways you could offer source, and different
solutions will be better for different programs; see section 13 for the
specific requirements.
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU AGPL, see
<https://www.gnu.org/licenses/>.

View File

@@ -0,0 +1,57 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
{
"manifestVersion": "2.0.0",
"signatureType": "grafana",
"signedByOrg": "grafana",
"signedByOrgName": "Grafana Labs",
"plugin": "grafana-exploretraces-app",
"version": "1.3.2",
"time": 1770220007147,
"keyId": "7e4d0c6a708866e7",
"files": {
"766.js.map": "1d78bb128b143980405ec42f3c984d2f30133c7999b3e0051899e4fd145a7666",
"e79edcfbe2068fae2364.svg": "89ea40b6dcf2dc8dfe146f8acac42b604e4d3c3dad03e539551d58a21f80654d",
"722.js": "95668798ca72332301be9f87fc960d58835a0d1110bc1da7e23c0527eb0abd99",
"LICENSE": "20b067f86de375aae6db0f283ab2e65de24d537733b89bd58432c101259d84cf",
"components/states/EmptyState/img/grot-404-light.svg": "89ea40b6dcf2dc8dfe146f8acac42b604e4d3c3dad03e539551d58a21f80654d",
"components/states/EmptyState/img/grot-404-dark.svg": "a0c8acbcf5685a8950ce1c67722579dc745585fb0d668ce965327955e5e829ff",
"200.js.map": "19f8fe696dd68fee71853f5fd50de83623677fda0999159526a56c4e38fb56c8",
"202.js": "9c8b3fafb00dbd2c90ee5155e3a421d01edccfc5dfc80cad028a123f1c44b4a5",
"module.js": "364f339f0ada35f40ce59e4ec5c429833c0086425295e1cd1997f48089d0c833",
"156.js.map": "03a9015c1be640ed12bd386ca6475ba33f315a7e63676e89adb2ba5133983d5a",
"812.js": "2781ad943326390c743c3b2bfa0cd47ff4cdd62768115671746bc999ce5066e8",
"202.js.map": "fa796298b31dee0ae7b5ffd3c0bcc6816f5bcd31d70cc585cbf33946480a00c4",
"CHANGELOG.md": "388df791b45d7d941439f5378c2e8c0d8767ad26107b1d4cf1eadee203aad0c4",
"535.js": "f0bc89e158dcbf4e52e3013f3e444da1bd815ac159b037db48dddb5e875ade46",
"plugin.json": "ec7afaef086562a2c9ae36d6abe436bcff1242bd14f0c26eb25fe86ca14e7887",
"156.js": "a6d4b91906ea0ccebb7c0225abd34f13dfad561d32e046efece85047002a102b",
"722.js.map": "cf26af0ce801b24e522fe973d79683d0259be03281cfc651c88ae4b247a0accc",
"200.js.LICENSE.txt": "7057cd8753e16cf77d35da8a293e357a1840a88d8535b4fd14056f5d3d3c189e",
"944c737f589d02ecf603.svg": "a0c8acbcf5685a8950ce1c67722579dc745585fb0d668ce965327955e5e829ff",
"module.js.map": "9c991d7fe5a1267ad8a7aafa49761e2e4192cc4abd221fe7e5e6989fde661ab4",
"782.js": "b9f741c0de23600a6f6dbfefaf3775faf2e1d380fd499b75c086c62e85fc5e14",
"200.js": "d95b8f5c6d9f535e81e1fd1a4faa699205e2b1d9169ae4cf7cb8ebcdc1d994fb",
"utils/trace-merge/test-responses/service-struct.json": "e00d31b20fec475399a0c4b18bcbb26b9c36f72c7e92283a67b032651b05c870",
"README.md": "48850d5d55ec4cf786dea095b681e712750a2bda8b33a09d8daa7c282c72dc9d",
"535.js.map": "7c931b72444bb27f8dc44ada7ff681bcf461dfef4af0b97014123394b00edea2",
"812.js.map": "266f516d293e5492c40a07a8ab17d40dc740edcd3c1eac4b9347afb155f60f31",
"782.js.map": "e281450a53112be90df3f9c0587a917e53dc5e92d9cafed25363f3121384d8a4",
"766.js": "459c6c9ff0cd6f52ff56af84f928219dc9e8152da67c97f92179e9afded69573",
"img/errors-root-cause.png": "599bf867d3411fa05a08c26c63b421c351e2a6c7689fb254bdb949b869204ad0",
"img/logo.svg": "3a23f8cdad37100716aa8a17c065afd0ee1c557b9dbeb5991482373297fe60e2",
"img/histogram-breakdown.png": "469248a97a7f029b94479c3f89231c1e921957a3b2aad98a6135949540df66a3",
"img/errors-metric-flow.png": "c10680c301dc72597b2ace18811494f1a330952b77a2e1a7344f99fe2ffd4b41"
}
}
-----BEGIN PGP SIGNATURE-----
wsA+BAETCgBtBYJpg2nnCRB+TQxqcIhm50UUAAAAAAAcACBzYWx0QG5vdGF0
aW9ucy5vcGVucGdwanMub3JnCKmOpJI/pJRpI/dIgF/7t1OhSYzvf+bYg9Hx
cTpxaz4WIQTzOyW2kQdOhGNlcPN+TQxqcIhm5wAAGiYCCQGVTyqpQCvkUgrt
m1e5+rxaLpQRxlrNYceZd+qOvFOJe5F/KgA7rvC9649OVdcMYiMZwUnAJxFK
3fpV7aDW5xD+4gII8ISJA36uMlAzbLTg+xj7JUEunhyBdGXGaVS6z+DjBD3j
tzkSQCCOltNGrsBGC2zrGC/FgfYFLjcF5IGRoDiougM=
=vK2A
-----END PGP SIGNATURE-----

View File

@@ -0,0 +1,107 @@
<!-- This README file is going to be the one displayed on the Grafana.com website for your plugin. Uncomment and replace the content here before publishing.
Remove any remaining comments before publishing as these may be displayed on Grafana.com -->
# Traces Drilldown
Distributed traces provide a way to monitor applications by tracking requests across services.
Traces record the details of a request to help understand why an issue is or was happening.
Tracing is best used for analyzing the performance of your system, identifying bottlenecks, monitoring latency, and providing a complete picture of how requests are processed.
Traces Drilldown helps you make sense of your tracing data so you can automatically visualize insights from your Tempo traces data.
Using the app, you can:
* Use Rate, Errors, and Duration (RED) metrics derived from traces to investigate issues
* Uncover related issues and monitor changes over time
* Browse automatic visualizations of your data based on its characteristics
* Do all of this without writing TraceQL queries
![Root cause latency using Duration metrics](https://grafana.com/media/docs/explore-traces/explore-traces-rate-comparison.png)
## Before you begin
To use Traces Drilldown with Grafana Cloud, you need:
- A Grafana Cloud account
- A Grafana stack in Grafana Cloud with a configured [Tempo data source](https://grafana.com/docs/grafana-cloud/connect-externally-hosted/data-sources/tempo/configure-tempo-data-source/) receiving tracing data
To use Traces Drilldown with self-hosted Grafana open source or Grafana Enterprise, you need:
- Your own Grafana instance running 11.3 or newer
- Tempo 2.6 or newer
- A configured [Tempo data source](https://grafana.com/docs/grafana/latest/datasources/tempo/configure-tempo-data-source/) receiving tracing data
## Getting started
Refer to the [Traces Drilldown](https://grafana.com/docs/grafana-cloud/visualizations/simplified-exploration/traces/) documentation.
For instructions installing, refer to the [access and installation instructions](https://grafana.com/docs/grafana-cloud/visualizations/simplified-exploration/traces/).
## Resources
- [Documentation](https://grafana.com/docs/grafana-cloud/visualizations/simplified-exploration/traces/)
- [CHANGELOG](https://github.com/grafana/traces-drilldown/releases)
- [GITHUB](https://github.com/grafana/traces-drilldown/)
## Contributing
We love accepting contributions!
If your change is minor, please feel free submit
a [pull request](https://help.github.com/articles/about-pull-requests/).
If your change is larger, or adds a feature, please file an issue beforehand so
that we can discuss the change. You're welcome to file an implementation pull
request immediately as well, although we generally lean towards discussing the
change and then reviewing the implementation separately.
### Bugs
If your issue is a bug, please open one [here](https://github.com/grafana/traces-drilldown/issues/new).
### Changes
We do not have a formal proposal process for changes or feature requests. If you have a change you would like to see in
Traces Drilldown, please [file an issue](https://github.com/grafana/traces-drilldown/issues/new) with the necessary details.
<!-- To help maximize the impact of your README and improve usability for users, we propose the following loose structure:
**BEFORE YOU BEGIN**
- Ensure all links are absolute URLs so that they will work when the README is displayed within Grafana and Grafana.com
- Be inspired ✨
- [grafana-polystat-panel](https://github.com/grafana/grafana-polystat-panel)
- [volkovlabs-variable-panel](https://github.com/volkovlabs/volkovlabs-variable-panel)
**ADD SOME BADGES**
Badges convey useful information at a glance for users whether in the Catalog or viewing the source code. You can use the generator on [Shields.io](https://shields.io/badges/dynamic-json-badge) together with the Grafana.com API
to create dynamic badges that update automatically when you publish a new version to the marketplace.
- For the logo field use 'grafana'.
- Examples (label: query)
- Downloads: $.downloads
- Catalog Version: $.version
- Grafana Dependency: $.grafanaDependency
- Signature Type: $.versionSignatureType
Full example: ![Dynamic JSON Badge](https://img.shields.io/badge/dynamic/json?logo=grafana&query=$.version&url=https://grafana.com/api/plugins/grafana-polystat-panel&label=Marketplace&prefix=v&color=F47A20)
Consider other [badges](https://shields.io/badges) as you feel appropriate for your project.
## Overview / Introduction
Provide one or more paragraphs as an introduction to your plugin to help users understand why they should use it.
Consider including screenshots:
- in [plugin.json](https://grafana.com/developers/plugin-tools/reference-plugin-json#info) include them as relative links.
- in the README ensure they are absolute URLs.
## Requirements
List any requirements or dependencies they may need to run the plugin.
## Getting Started
Provide a quick start on how to configure and use the plugin.
## Documentation
If your project has dedicated documentation available for users, provide links here. For help in following Grafana's style recommendations for technical documentation, refer to our [Writer's Toolkit](https://grafana.com/docs/writers-toolkit/).
## Contributing
Do you want folks to contribute to the plugin or provide feedback through specific means? If so, tell them how!
-->

View File

@@ -0,0 +1,67 @@
<svg viewBox="0 0 722 480" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M514.59 3.80879C447.52 -7.78121 379.51 8.58879 314.8 32.5588C275.1 47.2688 236.85 58.9488 196.11 69.7588C150.35 81.8988 102.13 94.2588 62.7402 123.959C15.7502 159.389 -0.05983 214.349 0.000170029 274.969C0.04017 319.049 7.54023 365.349 33.0602 399.379C71.8302 451.069 139.04 459.809 196.03 455.539C267.53 450.189 313.45 436.549 383.95 458.929C471.35 486.669 580.88 498.339 659.07 416.129C765.14 304.599 726.89 126.169 614.63 45.6788C598.19 33.8888 580.48 24.2188 561.98 16.9888C546.27 10.8488 530.46 6.53878 514.59 3.79878V3.80879Z" fill="#9087E9" fill-opacity="0.3"/>
<path opacity="0.3" d="M273.041 410.45C346.097 410.45 405.321 403.497 405.321 394.92C405.321 386.343 346.097 379.39 273.041 379.39C199.985 379.39 140.761 386.343 140.761 394.92C140.761 403.497 199.985 410.45 273.041 410.45Z" fill="black"/>
<g id="grot-404-arm">
<path d="M346.921 293.19C358.131 296.32 448.181 322.33 432.881 344.87C418.531 366 348.841 340.92 326.921 325.65" fill="#F99F10"/>
<path d="M346.921 293.19C358.131 296.32 448.181 322.33 432.881 344.87C418.531 366 348.841 340.92 326.921 325.65" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
</g>
<path d="M218.861 115.04C187.091 92.89 146.441 87.92 139.291 95.87C133.491 102.31 155.401 137.59 151.851 147.9C148.311 158.21 117.231 151.54 113.831 164.65C112.221 170.88 136.061 185.91 135.421 194.61C134.781 203.31 116.371 200.85 115.021 212.11C114.111 219.68 130.911 221.35 130.271 230.37C129.631 239.39 117.501 237.74 118.031 246.48C118.461 253.57 131.721 248.9 135.271 260.82C138.811 272.74 218.871 115.04 218.871 115.04H218.861Z" fill="#EF6122"/>
<path d="M77.1408 326.59C78.1108 297.43 98.4608 290.96 113.241 295.94C128.011 300.92 127.191 318.09 123.461 324.55C117.501 334.86 108.751 330.41 112.021 323.19C114.441 316.26 114.891 306.64 103.441 309.7C89.2109 313.51 93.6408 351.77 123.601 344.25C144.121 339.1 142.511 317.37 140.881 285.68C136.511 255.02 141.241 214.82 154.281 176.66C180.701 99.34 339.851 74.21 392.681 145.73C461.311 238.63 385.631 329.37 373.991 340.96C337.731 369.1 343.611 394.56 317.631 396.25C292.941 397.86 294.971 372.77 278.641 371.37C277.681 371.37 276.721 371.37 275.761 371.35C256.591 372.76 252.891 396.67 223.981 396.25C200.421 395.91 210.911 375.33 195.171 365.46C191.871 363.9 189.011 362.8 186.371 362.08C184.291 361.64 181.981 361.32 179.371 361.16C178.771 361.12 175.141 361.14 174.081 361.14C164.731 361.31 159.121 363.52 137.991 367.82C99.9208 375.56 76.3208 351.26 77.1408 326.59Z" fill="#FAC20C" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10"/>
<path d="M181.051 134.78C235.171 96.44 298.161 117.38 306.211 122.7C314.261 128.02 325.671 121.7 319.261 105.73C297.781 52.25 242.361 25.05 227.441 34.26C210.761 44.56 231.741 90.5 220.841 101.27C212.091 109.91 206.131 103.31 191.251 98.32C177.811 93.81 181.051 134.78 181.051 134.78Z" fill="#EF6122"/>
<path d="M262.101 239.52L410.381 239.52C428.197 239.52 442.641 225.077 442.641 207.26V207.25C442.641 189.433 428.197 174.99 410.381 174.99L262.101 174.99C244.284 174.99 229.841 189.433 229.841 207.25V207.26C229.841 225.077 244.284 239.52 262.101 239.52Z" fill="#5545EF" stroke="#231735" stroke-width="5" stroke-miterlimit="10"/>
<path d="M296.28 228.67L408.8 228.67C420.619 228.67 430.2 219.089 430.2 207.27C430.2 195.451 420.619 185.87 408.8 185.87H296.28C284.461 185.87 274.88 195.451 274.88 207.27C274.88 219.089 284.461 228.67 296.28 228.67Z" fill="#19052D"/>
<path d="M257.971 297.31C257.351 316.15 250.621 333.66 236.651 332.47C221.221 331.16 217.391 315.15 217.921 297.76" fill="#F99F10"/>
<path d="M257.971 297.31C257.351 316.15 250.621 333.66 236.651 332.47C221.221 331.16 217.391 315.15 217.921 297.76" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M200.23 104.32C172.95 91.48 146.34 84.67 139.29 95.87C131.67 107.98 157.65 133.7 151.85 147.9C146.43 161.18 115.82 149.78 113.83 164.65C112.24 176.55 136.06 185.91 135.42 194.61C134.78 203.31 116.14 199.76 114.78 211.03C113.87 218.6 130.91 221.35 130.26 230.37C129.62 239.39 118.02 237.73 118.02 246.48C118.02 253.6 138.81 254.21 139.4 269.02" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10"/>
<path d="M306.211 122.7C314.261 128.02 325.671 121.7 319.261 105.73C297.781 52.25 244.001 24.95 227.441 34.26C210.061 44.03 231.741 90.5 220.841 101.27C214.751 107.29 206.751 107.03 199.421 103.95" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10"/>
<path d="M306.531 122.94C277.581 105.78 226.39 104.87 180.98 138.83" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10"/>
<path d="M341.4 253.66C351.4 254.03 366.49 259.17 366.02 269.49C365.55 279.82 349.3 283.19 335.71 279.29C322.12 275.39 323.16 265.5 325.3 262.15C327.44 258.8 332.12 253.32 341.41 253.66H341.4Z" fill="black"/>
<path d="M345.16 258.45C351.6 259.28 356.39 262.63 356.39 262.63C356.39 262.63 355.45 269.62 344.22 269.4C332.99 269.18 336.07 258.72 336.07 258.72C336.07 258.72 339.03 257.66 345.15 258.44L345.16 258.45Z" fill="white"/>
<g opacity="0.6">
<path d="M621.96 318.31V332.84" stroke="#7F73F2" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M629.23 325.58H614.69" stroke="#7F73F2" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M657.411 162.86V175.25" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M663.601 169.05H651.221" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<g opacity="0.4">
<path d="M497.061 209.35V221.73" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M503.25 215.54H490.87" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
</g>
<path d="M660.051 285.01L668.811 293.76" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M668.811 285.01L660.051 293.76" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M476.391 312.83L482.341 318.78" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M482.341 312.83L476.391 318.78" stroke="#5545EF" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M519 113.2H527.41" stroke="#7F73F2" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M523.21 109V117.41" stroke="#7F73F2" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M609.581 239.16L616.861 231.87C617.721 231.01 617.721 229.61 616.861 228.74C616.001 227.88 614.601 227.88 613.731 228.74L606.451 236.03L599.161 228.75C598.301 227.89 596.901 227.89 596.031 228.75C595.171 229.61 595.171 231.01 596.031 231.88L603.321 239.16L596.041 246.45C595.181 247.31 595.181 248.71 596.041 249.58C596.471 250.01 597.041 250.23 597.601 250.23C598.161 250.23 598.731 250.01 599.161 249.58L606.441 242.29L613.731 249.57C614.161 250 614.731 250.22 615.291 250.22C615.851 250.22 616.421 250 616.851 249.57C617.711 248.71 617.711 247.31 616.851 246.44L609.561 239.16H609.581Z" fill="#B4ADF8"/>
<path d="M557.84 280.71V267.77C557.83 266.23 556.581 264.99 555.051 264.99C553.521 264.99 552.271 266.23 552.271 267.77V280.71C552.281 282.25 553.531 283.49 555.061 283.49C556.591 283.49 557.84 282.25 557.84 280.71Z" fill="#A59DF7"/>
<path d="M648.21 244.27V257.21C648.22 258.75 649.47 259.99 651 259.99C652.53 259.99 653.78 258.75 653.78 257.21V244.27C653.77 242.73 652.52 241.49 650.99 241.49C649.46 241.49 648.21 242.73 648.21 244.27Z" fill="#402EED"/>
<path d="M561.34 181.68H548.4C546.86 181.69 545.62 182.94 545.62 184.47C545.62 186 546.86 187.25 548.4 187.25H561.34C562.88 187.24 564.12 185.99 564.12 184.46C564.12 182.93 562.88 181.68 561.34 181.68Z" fill="#5041E4"/>
<path d="M568.931 247.36L568.951 280.7C568.951 282.24 570.191 283.48 571.731 283.48C573.271 283.48 574.511 282.24 574.511 280.7L574.491 247.36C574.491 245.82 573.251 244.58 571.711 244.58C570.171 244.58 568.931 245.82 568.931 247.36Z" fill="#A59DF7"/>
<path d="M574.791 321.8L541.451 321.82C539.911 321.82 538.671 323.06 538.671 324.6C538.671 326.14 539.911 327.38 541.451 327.38L574.791 327.36C576.331 327.36 577.571 326.12 577.571 324.58C577.571 323.04 576.331 321.8 574.791 321.8Z" fill="#5041E4"/>
<path d="M601.3 192.84H588.12C586.46 192.84 585.11 194.2 585.11 195.86V209.04C585.11 210.71 586.47 212.05 588.13 212.05H601.31C602.97 212.05 604.32 210.7 604.32 209.03V195.85C604.32 194.19 602.96 192.84 601.3 192.84ZM599.82 207.55H589.61V197.35H599.82V207.55Z" fill="#7C6FFD"/>
<path d="M541.171 280.72V258.49C541.161 256.95 539.911 255.71 538.381 255.71C536.851 255.71 535.601 256.95 535.601 258.49V280.72C535.611 282.26 536.861 283.5 538.391 283.5C539.921 283.5 541.171 282.26 541.171 280.72Z" fill="#A59DF7"/>
<path d="M524.981 318.59C528.361 318.59 531.111 321.34 531.111 324.72C531.111 328.1 528.361 330.85 524.981 330.85C521.601 330.85 518.851 328.1 518.851 324.72C518.851 321.34 521.601 318.59 524.981 318.59ZM524.981 326.76C526.111 326.76 527.021 325.84 527.021 324.72C527.021 323.6 526.101 322.68 524.981 322.68C523.861 322.68 522.941 323.6 522.941 324.72C522.941 325.84 523.861 326.76 524.981 326.76Z" fill="#5545EF"/>
<path d="M656.781 228.23C656.781 231.6 654.041 234.34 650.671 234.34C647.301 234.34 644.561 231.6 644.561 228.23C644.561 224.86 647.301 222.12 650.671 222.12C654.041 222.12 656.781 224.86 656.781 228.23ZM648.641 228.23C648.641 229.35 649.551 230.27 650.681 230.27C651.811 230.27 652.72 229.36 652.72 228.23C652.72 227.1 651.811 226.19 650.681 226.19C649.551 226.19 648.641 227.1 648.641 228.23Z" fill="#402EED"/>
<path d="M607.45 279.74C607.04 279.74 606.56 279.67 606.15 279.47C605.74 279.33 605.33 279.06 605.06 278.72C604.72 278.45 604.45 278.04 604.31 277.63C604.1 277.22 604.04 276.81 604.04 276.33C604.04 275.44 604.38 274.55 605.06 273.94C605.33 273.6 605.74 273.33 606.15 273.19C606.97 272.85 607.93 272.85 608.75 273.19C609.16 273.33 609.57 273.6 609.84 273.94C610.52 274.55 610.87 275.44 610.87 276.33C610.87 276.81 610.8 277.22 610.6 277.63C610.46 278.04 610.19 278.45 609.85 278.72C609.58 279.06 609.17 279.34 608.76 279.47C608.35 279.67 607.94 279.74 607.46 279.74H607.45Z" fill="#7F73F2"/>
<path d="M560.38 219.83C559.24 219.83 558.111 219.4 557.331 218.52C556.461 217.74 556.021 216.61 556.021 215.47C556.021 214.33 556.451 213.21 557.331 212.42C558.901 210.77 561.861 210.77 563.421 212.42C563.861 212.77 564.21 213.3 564.38 213.82C564.64 214.35 564.73 214.95 564.73 215.48C564.73 216.08 564.64 216.61 564.38 217.13C564.21 217.66 563.861 218.18 563.421 218.53C562.641 219.41 561.51 219.84 560.37 219.84L560.38 219.83Z" fill="#5545EF"/>
<path d="M678.98 214.927C678.2 214.927 677.43 214.627 676.89 214.027C676.29 213.487 676 212.717 676 211.937C676 211.157 676.3 210.387 676.89 209.847C677.96 208.717 679.99 208.717 681.06 209.847C681.36 210.087 681.6 210.447 681.72 210.807C681.9 211.167 681.96 211.578 681.96 211.948C681.96 212.358 681.9 212.717 681.72 213.077C681.6 213.437 681.36 213.798 681.06 214.038C680.52 214.638 679.75 214.937 678.97 214.937L678.98 214.927Z" fill="#B4ADF8"/>
<path d="M614.5 106.948C614.08 106.948 613.59 106.878 613.17 106.668C612.75 106.528 612.33 106.247 612.05 105.897C611.35 105.267 611 104.358 611 103.448C611 102.958 611.07 102.537 611.28 102.117C611.42 101.697 611.7 101.278 612.05 100.998C613.31 99.6675 615.69 99.6675 616.95 100.998C617.3 101.278 617.58 101.697 617.72 102.117C617.93 102.537 618 102.958 618 103.448C618 104.358 617.65 105.267 616.95 105.897C616.67 106.247 616.25 106.528 615.83 106.668C615.41 106.878 614.92 106.948 614.5 106.948Z" fill="#5545EF"/>
<path d="M614.231 301.93H493.311C485.081 301.93 477.641 296.42 475.231 288.53C474.831 287.21 475.571 285.81 476.891 285.41C478.211 285.01 479.611 285.75 480.011 287.07C481.791 292.88 487.261 296.93 493.311 296.93H614.231C621.901 296.93 628.131 290.69 628.131 283.03V192.28C628.131 184.62 621.891 178.38 614.231 178.38H575.251C573.871 178.38 572.751 177.26 572.751 175.88C572.751 174.5 573.871 173.38 575.251 173.38H614.231C624.651 173.38 633.131 181.86 633.131 192.28V283.03C633.131 293.45 624.651 301.93 614.231 301.93Z" fill="#5A49FA"/>
<g id="grot-404-text">
<path d="M564.94 154.74V131.41L549.33 148.14H569.88" stroke="#A69DF7" stroke-width="5.18" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M624.88 154.74V131.41L609.271 148.14H629.831" stroke="#A69DF7" stroke-width="5.18" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M589.431 152.79C595.202 152.79 599.88 148.402 599.88 142.99C599.88 137.578 595.202 133.19 589.431 133.19C583.659 133.19 578.98 137.578 578.98 142.99C578.98 148.402 583.659 152.79 589.431 152.79Z" stroke="#A69DF7" stroke-width="5.18" stroke-linecap="round" stroke-linejoin="round"/>
</g>
</g>
<path d="M364.23 218.6L394.26 198.12" stroke="white" stroke-width="5.18" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M394.26 218.6L364.23 198.12" stroke="white" stroke-width="5.18" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M319.95 218.6L349.99 198.12" stroke="white" stroke-width="5.18" stroke-miterlimit="10" stroke-linecap="round"/>
<path d="M349.99 218.6L319.95 198.12" stroke="white" stroke-width="5.18" stroke-miterlimit="10" stroke-linecap="round"/>
<g id="grot-404-magnifier">
<path opacity="0.15" d="M459.55 269.6C493.527 269.6 521.07 242.057 521.07 208.08C521.07 174.103 493.527 146.56 459.55 146.56C425.574 146.56 398.03 174.103 398.03 208.08C398.03 242.057 425.574 269.6 459.55 269.6Z" fill="white"/>
<path d="M531.381 221.52C532.261 216.9 532.671 212.18 532.621 207.48C532.571 202.87 532.071 198.24 531.131 193.71C530.201 189.23 528.831 184.82 527.061 180.6C525.291 176.38 523.111 172.3 520.581 168.5C518.021 164.65 515.071 161.04 511.831 157.77C508.521 154.43 504.861 151.42 500.961 148.8C496.961 146.12 492.661 143.82 488.171 141.98C483.681 140.14 479.011 138.75 474.271 137.85C469.651 136.97 464.931 136.56 460.231 136.61C455.621 136.66 450.99 137.16 446.46 138.1C441.98 139.03 437.571 140.4 433.351 142.17C429.131 143.94 425.051 146.12 421.251 148.65C417.401 151.21 413.791 154.16 410.521 157.4C407.181 160.71 404.171 164.37 401.551 168.27C398.871 172.27 396.571 176.57 394.731 181.06C392.891 185.55 391.501 190.22 390.601 194.96C389.721 199.58 389.311 204.3 389.361 209C389.411 213.61 389.911 218.24 390.851 222.77C391.781 227.25 393.151 231.66 394.921 235.88C396.691 240.1 398.871 244.18 401.401 247.98C403.961 251.83 406.911 255.44 410.151 258.71C413.461 262.05 417.121 265.06 421.021 267.68C423.211 269.15 425.491 270.5 427.841 271.73L420.241 290.27L419.321 289.89C416.121 288.58 412.441 290.12 411.131 293.32L383.451 360.83C382.141 364.03 383.681 367.71 386.881 369.02L400.891 374.77C404.091 376.08 407.771 374.54 409.081 371.34L436.761 303.83C438.071 300.63 436.531 296.95 433.331 295.64L432.411 295.26L440.011 276.72C442.551 277.5 445.121 278.14 447.711 278.63C452.331 279.51 457.051 279.92 461.751 279.87C466.361 279.82 470.991 279.32 475.521 278.38C480.001 277.45 484.411 276.08 488.631 274.31C492.851 272.54 496.931 270.36 500.731 267.83C504.581 265.27 508.19 262.32 511.46 259.08C514.8 255.77 517.811 252.11 520.431 248.21C523.111 244.21 525.411 239.91 527.251 235.42C529.091 230.93 530.481 226.26 531.381 221.52ZM438.471 263.14C408.151 250.71 393.651 216.04 406.081 185.72C418.511 155.4 453.181 140.9 483.501 153.33C513.821 165.76 528.321 200.43 515.891 230.75C503.461 261.07 468.791 275.57 438.471 263.14Z" fill="black"/>
<path opacity="0.3" d="M431.661 246.88C433.981 248.49 436.401 249.85 438.881 250.99C422.951 235.18 420.151 209.77 433.381 190.69C446.611 171.61 471.401 165.33 491.781 174.71C489.841 172.79 487.721 171 485.401 169.39C464.001 154.55 434.621 159.86 419.781 181.26C404.941 202.66 410.251 232.04 431.651 246.88H431.661Z" fill="white"/>
<path d="M425.671 350.09C437.371 343.43 440.131 329.99 437.201 321.33C434.781 314.19 424.271 311.27 418.091 319.96C411.221 329.61 422.451 339.87 422.451 339.87" fill="#F99F10"/>
<path d="M425.671 350.09C437.371 343.43 440.131 329.99 437.201 321.33C434.781 314.19 424.271 311.27 418.091 319.96C411.221 329.61 422.451 339.87 422.451 339.87" stroke="#3A1103" stroke-width="5" stroke-miterlimit="10" stroke-linecap="round"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Some files were not shown because too many files have changed in this diff Show More