add corytech/php-monitoring reciepe (#1598)

* add corytech/php-monitoring

* fix statsd-exporter ports
This commit is contained in:
qconer
2024-03-30 10:52:57 +02:00
committed by GitHub
parent 511e963ca7
commit 3aaf36855c

View File

@@ -0,0 +1,22 @@
{
"bundles": {
"Corytech\\Monitoring\\CorytechMonitoringBundle": ["all"]
},
"env": {
"STATSD_HOST": "statsd_exporter",
"STATSD_PORT": "9125",
"STATSD_NAMESPACE": ""
},
"docker-compose": {
"docker-compose.yml": {
"services": [
"statsd_exporter:",
" image: prom/statsd-exporter:v0.26.0",
" profiles:",
" - monitoring",
" ports:",
" - ${STATSD_EXPORTER_WEB_MACHINE_PORT:-9102}:9102"
]
}
}
}