feat: migrate logs to system location
✅ Log Migration - Moved repository logs to /var/log/aitbc/repository-logs - Moved production logs to /var/log/aitbc/production - Updated all code references to use /var/log/aitbc - Updated systemd services to use system logs - Removed logs from git tracking - Updated .gitignore for log files - Created proper system log structure - Set proper permissions for system logs ✅ System Compliance - All logs now in /var/log/aitbc (FHS compliant) - No log files in repository - Proper system-wide log location - Centralized log management ✅ Service Updates - Production services use /var/log/aitbc/production - SystemD services use /var/log/aitbc - All code references updated to system paths - Services restart and test successfully 🚀 AITBC logging now follows proper system standards!
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -323,3 +323,7 @@ config/
|
||||
api_keys.txt
|
||||
*.yaml
|
||||
!*.example
|
||||
logs/
|
||||
production/logs/
|
||||
*.log
|
||||
*.log.*
|
||||
|
||||
@@ -23,7 +23,7 @@ logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s [%(levelname)s] %(name)s: %(message)s',
|
||||
handlers=[
|
||||
logging.FileHandler('/opt/aitbc/production/logs/blockchain/blockchain.log'),
|
||||
logging.FileHandler('/var/log/aitbc/production/blockchain/blockchain.log'),
|
||||
logging.StreamHandler()
|
||||
]
|
||||
)
|
||||
|
||||
@@ -18,7 +18,7 @@ logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s [%(levelname)s] %(name)s: %(message)s',
|
||||
handlers=[
|
||||
logging.FileHandler('/opt/aitbc/production/logs/blockchain/blockchain.log'),
|
||||
logging.FileHandler('/var/log/aitbc/production/blockchain/blockchain.log'),
|
||||
logging.StreamHandler()
|
||||
]
|
||||
)
|
||||
|
||||
@@ -25,7 +25,7 @@ logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s [%(levelname)s] %(name)s: %(message)s',
|
||||
handlers=[
|
||||
logging.FileHandler('/opt/aitbc/production/logs/marketplace/marketplace.log'),
|
||||
logging.FileHandler('/var/log/aitbc/production/marketplace/marketplace.log'),
|
||||
logging.StreamHandler()
|
||||
]
|
||||
)
|
||||
|
||||
@@ -25,7 +25,7 @@ logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s [%(levelname)s] %(name)s: %(message)s',
|
||||
handlers=[
|
||||
logging.FileHandler('/opt/aitbc/production/logs/marketplace/marketplace.log'),
|
||||
logging.FileHandler('/var/log/aitbc/production/marketplace/marketplace.log'),
|
||||
logging.StreamHandler()
|
||||
]
|
||||
)
|
||||
|
||||
@@ -19,7 +19,7 @@ logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s [%(levelname)s] %(name)s: %(message)s',
|
||||
handlers=[
|
||||
logging.FileHandler('/opt/aitbc/production/logs/blockchain/mining.log'),
|
||||
logging.FileHandler('/var/log/aitbc/production/blockchain/mining.log'),
|
||||
logging.StreamHandler()
|
||||
]
|
||||
)
|
||||
|
||||
@@ -24,7 +24,7 @@ logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s [%(levelname)s] %(name)s: %(message)s',
|
||||
handlers=[
|
||||
logging.FileHandler('/opt/aitbc/production/logs/marketplace/real_marketplace.log'),
|
||||
logging.FileHandler('/var/log/aitbc/production/marketplace/real_marketplace.log'),
|
||||
logging.StreamHandler()
|
||||
]
|
||||
)
|
||||
|
||||
@@ -34,7 +34,7 @@ logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format='%(asctime)s [%(levelname)s] %(name)s: %(message)s',
|
||||
handlers=[
|
||||
logging.FileHandler('/opt/aitbc/production/logs/marketplace/unified_marketplace.log'),
|
||||
logging.FileHandler('/var/log/aitbc/production/marketplace/unified_marketplace.log'),
|
||||
logging.StreamHandler()
|
||||
]
|
||||
)
|
||||
|
||||
@@ -34,7 +34,7 @@ SyslogIdentifier=aitbc-blockchain-http
|
||||
NoNewPrivileges=true
|
||||
ProtectSystem=strict
|
||||
ProtectHome=true
|
||||
ReadWritePaths=/var/lib/aitbc/data/blockchain /opt/aitbc/production/logs/blockchain
|
||||
ReadWritePaths=/var/lib/aitbc/data/blockchain /var/log/aitbc/production/blockchain
|
||||
|
||||
# Production performance
|
||||
LimitNOFILE=65536
|
||||
|
||||
@@ -34,7 +34,7 @@ SyslogIdentifier=aitbc-blockchain-production
|
||||
NoNewPrivileges=true
|
||||
ProtectSystem=strict
|
||||
ProtectHome=true
|
||||
ReadWritePaths=/var/lib/aitbc/data/blockchain /opt/aitbc/production/logs/blockchain
|
||||
ReadWritePaths=/var/lib/aitbc/data/blockchain /var/log/aitbc/production/blockchain
|
||||
|
||||
# Production performance
|
||||
LimitNOFILE=65536
|
||||
|
||||
@@ -34,7 +34,7 @@ SyslogIdentifier=aitbc-gpu-marketplace-production
|
||||
NoNewPrivileges=true
|
||||
ProtectSystem=strict
|
||||
ProtectHome=true
|
||||
ReadWritePaths=/var/lib/aitbc/data/marketplace /opt/aitbc/production/logs/marketplace
|
||||
ReadWritePaths=/var/lib/aitbc/data/marketplace /var/log/aitbc/production/marketplace
|
||||
|
||||
# Production performance
|
||||
LimitNOFILE=65536
|
||||
|
||||
@@ -36,7 +36,7 @@ SyslogIdentifier=aitbc-marketplace-production
|
||||
NoNewPrivileges=true
|
||||
ProtectSystem=strict
|
||||
ProtectHome=true
|
||||
ReadWritePaths=/var/lib/aitbc/data/marketplace /opt/aitbc/production/logs/marketplace
|
||||
ReadWritePaths=/var/lib/aitbc/data/marketplace /var/log/aitbc/production/marketplace
|
||||
|
||||
# Production performance
|
||||
LimitNOFILE=65536
|
||||
|
||||
@@ -33,7 +33,7 @@ SyslogIdentifier=aitbc-mining-blockchain
|
||||
NoNewPrivileges=true
|
||||
ProtectSystem=strict
|
||||
ProtectHome=true
|
||||
ReadWritePaths=/var/lib/aitbc/data/blockchain /opt/aitbc/production/logs/blockchain
|
||||
ReadWritePaths=/var/lib/aitbc/data/blockchain /var/log/aitbc/production/blockchain
|
||||
|
||||
# Mining performance
|
||||
LimitNOFILE=65536
|
||||
|
||||
@@ -33,7 +33,7 @@ SyslogIdentifier=aitbc-openclaw-ai
|
||||
NoNewPrivileges=true
|
||||
ProtectSystem=strict
|
||||
ProtectHome=true
|
||||
ReadWritePaths=/var/lib/aitbc/data/openclaw /opt/aitbc/production/logs/openclaw
|
||||
ReadWritePaths=/var/lib/aitbc/data/openclaw /var/log/aitbc/production/openclaw
|
||||
|
||||
# AI performance
|
||||
LimitNOFILE=65536
|
||||
|
||||
@@ -28,7 +28,7 @@ SyslogIdentifier=aitbc-production-monitor
|
||||
NoNewPrivileges=true
|
||||
ProtectSystem=strict
|
||||
ProtectHome=true
|
||||
ReadWritePaths=/var/lib/aitbc/data /opt/aitbc/production/logs
|
||||
ReadWritePaths=/var/lib/aitbc/data /var/log/aitbc/production
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
||||
@@ -34,7 +34,7 @@ SyslogIdentifier=aitbc-real-marketplace
|
||||
NoNewPrivileges=true
|
||||
ProtectSystem=strict
|
||||
ProtectHome=true
|
||||
ReadWritePaths=/var/lib/aitbc/data/marketplace /opt/aitbc/production/logs/marketplace
|
||||
ReadWritePaths=/var/lib/aitbc/data/marketplace /var/log/aitbc/production/marketplace
|
||||
|
||||
# Marketplace performance
|
||||
LimitNOFILE=65536
|
||||
|
||||
Reference in New Issue
Block a user