This commit is contained in:
Waloshi6
2026-01-27 17:34:16 +01:00
parent 4c3bd195b7
commit c8204829e9
237 changed files with 3542 additions and 1737 deletions

View File

@@ -0,0 +1,9 @@
filebeat.inputs:
- type: container
paths:
- /var/lib/docker/containers/*/*.log
processors:
- add_docker_metadata: ~
output.elasticsearch:
hosts: ["elasticsearch:9200"]

View File

@@ -0,0 +1,6 @@
-Xms1g
-Xmx1g
-Djava.awt.headless=true
-Dfile.encoding=UTF-8
-XX:+HeapDumpOnOutOfMemoryError
-Djava.security.egd=file:/dev/urandom

View File

@@ -0,0 +1,23 @@
{
"dashboard": {
"title": "DevOps Windows Dashboard",
"panels": [
{
"title": "Requêtes HTTP",
"type": "graph",
"targets": [{
"expr": "rate(http_requests_total[5m])",
"legendFormat": "{{method}} {{endpoint}}"
}]
},
{
"title": "Latence",
"type": "graph",
"targets": [{
"expr": "histogram_quantile(0.95, rate(http_request_duration_seconds_bucket[5m]))",
"legendFormat": "p95"
}]
}
]
}
}