Files
varnish_exporter/config.example.json
T
Mateusz Gruszczyński 7ed796f12c first commit
2026-06-26 11:01:55 +02:00

20 lines
486 B
JSON

{
"site_rules": [
{
"match": "(^|\\.)example\\.com$",
"site": "example_com"
},
{
"match": "(^|\\.)static\\.example\\.com$",
"site": "static_example_com"
},
{
"match": "(^|\\.)api\\.example\\.com$",
"site": "api_example_com"
}
],
"default_site": "other",
"allowed_methods": ["GET", "HEAD", "POST", "PUT", "PATCH", "DELETE", "OPTIONS"],
"histogram_buckets": [0.005, 0.01, 0.025, 0.05, 0.1, 0.25, 0.5, 1, 2.5, 5, 10]
}