Monitoring is for real understanding of infrastructure — capacity planning, trend analysis, debugging.
Monitoring stratification
- Infrastructure (Prometheus, Zabbix)
- Network (SNMP, NetFlow)
- Application (latency P50/P95/P99)
- Business metrics
- Centralized logs
- Distributed tracing (Jaeger)
What we deliver
Complete Prometheus + Grafana + Zabbix + Loki stack, dashboards per audience, alerting with severity calibration.
Example: Prometheus scrape
A scrape config for node_exporter and a disk alert:
# prometheus.yml — scrape node_exporter
scrape_configs:
- job_name: 'nodes'
static_configs:
- targets: ['10.0.0.11:9100','10.0.0.12:9100']
# alerta simpla (rules.yml): disk > 85%
# expr: 100-(node_filesystem_avail_bytes/node_filesystem_size_bytes*100) > 85