Files
HomeAudit/configs/monitoring/prometheus-service-names.yml
admin 45363040f3 feat: Complete infrastructure cleanup phase documentation and status updates
## Major Infrastructure Milestones Achieved

###  Service Migrations Completed
- Jellyfin: Successfully migrated to Docker Swarm with latest version
- Vaultwarden: Running in Docker Swarm on OMV800 (eliminated duplicate)
- Nextcloud: Operational with database optimization and cron setup
- Paperless services: Both NGX and AI running successfully

### 🚨 Duplicate Service Analysis Complete
- Identified MariaDB conflict (OMV800 Swarm vs lenovo410 standalone)
- Identified Vaultwarden duplication (now resolved)
- Documented PostgreSQL and Redis consolidation opportunities
- Mapped monitoring stack optimization needs

### 🏗️ Infrastructure Status Documentation
- Updated README with current cleanup phase status
- Enhanced Service Analysis with duplicate service inventory
- Updated Quick Start guide with immediate action items
- Documented current container distribution across 6 nodes

### 📋 Action Plan Documentation
- Phase 1: Immediate service conflict resolution (this week)
- Phase 2: Service migration and load balancing (next 2 weeks)
- Phase 3: Database consolidation and optimization (future)

### 🔧 Current Infrastructure Health
- Docker Swarm: All 6 nodes operational and healthy
- Caddy Reverse Proxy: Fully operational with SSL certificates
- Storage: MergerFS healthy, local storage for databases
- Monitoring: Prometheus + Grafana + Uptime Kuma operational

### 📊 Container Distribution Status
- OMV800: 25+ containers (needs load balancing)
- lenovo410: 9 containers (cleanup in progress)
- fedora: 1 container (ready for additional services)
- audrey: 4 containers (well-balanced, monitoring hub)
- lenovo420: 7 containers (balanced, can assist)
- surface: 9 containers (specialized, reverse proxy)

### 🎯 Next Steps
1. Remove lenovo410 MariaDB (eliminate port 3306 conflict)
2. Clean up lenovo410 Vaultwarden (256MB space savings)
3. Verify no service conflicts exist
4. Begin service migration from OMV800 to fedora/audrey

Status: Infrastructure 99% complete, entering cleanup and optimization phase
2025-09-01 16:50:37 -04:00

75 lines
2.5 KiB
YAML

# Service Name Mappings for User-Friendly Monitoring
# This file maps IP addresses and ports to friendly service names
service_mappings:
# HTTP Services
"http://192.168.50.229:8000": "📄 Paperless-NGX"
"http://192.168.50.229:3000": "🤖 Paperless-AI"
"http://192.168.50.229:8081": "☁️ Nextcloud"
"http://192.168.50.229:8088": "🔐 Vaultwarden (Internal)"
"http://192.168.50.181:8123": "🏠 Home Assistant"
"http://192.168.50.181:9000": "🐳 Portainer"
"http://192.168.50.66:9080": "📱 AppFlowy"
# External Services
"https://vaultwarden.pressmess.duckdns.org": "🔐 Vaultwarden (External)"
"https://grafana.pressmess.duckdns.org": "📊 Grafana"
"https://prometheus.pressmess.duckdns.org": "📈 Prometheus"
# TCP Services
"192.168.50.229:6379": "🔴 Redis"
"192.168.50.229:5432": "🐘 PostgreSQL"
"192.168.50.229:3306": "🐬 MariaDB"
"192.168.50.229:1883": "📡 Mosquitto MQTT"
# Monitoring Services
"192.168.50.229:9091": "📈 Prometheus"
"192.168.50.229:3002": "📊 Grafana"
"192.168.50.229:9100": "🖥️ Node Exporter"
"192.168.50.229:9115": "🔍 Blackbox Exporter"
# Container Names
"vaultwarden_vaultwarden": "🔐 Vaultwarden"
"monitoring_prometheus": "📈 Prometheus"
"monitoring_grafana": "📊 Grafana"
"monitoring_node-exporter": "🖥️ Node Exporter"
"monitoring_blackbox-exporter": "🔍 Blackbox Exporter"
# Job Name Mappings
job_mappings:
"http-service-health": "🌐 Web Services"
"tcp-service-health": "🔌 Database Services"
"node-exporter": "🖥️ System Metrics"
"prometheus": "📈 Monitoring"
"blackbox": "🔍 Health Checks"
"docker-swarm-metrics": "🐳 Container Orchestration"
"vaultwarden-monitoring": "🔐 Password Manager"
# Instance Name Transformations
instance_transformations:
# Remove protocol prefixes
- pattern: "^https?://"
replacement: ""
# Remove port numbers for common services
- pattern: ":80$"
replacement: ""
- pattern: ":443$"
replacement: ""
# Add friendly names
- pattern: "^192\\.168\\.50\\.229:8000$"
replacement: "Paperless-NGX"
- pattern: "^192\\.168\\.50\\.229:3000$"
replacement: "Paperless-AI"
- pattern: "^192\\.168\\.50\\.229:8081$"
replacement: "Nextcloud"
- pattern: "^192\\.168\\.50\\.229:8088$"
replacement: "Vaultwarden"
- pattern: "^192\\.168\\.50\\.181:8123$"
replacement: "Home Assistant"
- pattern: "^192\\.168\\.50\\.181:9000$"
replacement: "Portainer"
- pattern: "^192\\.168\\.50\\.66:9080$"
replacement: "AppFlowy"