mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-26 13:43:47 +03:00
b183aec83c
* Allow log sampling configuration from Caddyfile * Add log sampling adapt tests
23 lines
No EOL
230 B
Text
23 lines
No EOL
230 B
Text
{
|
|
log {
|
|
sampling {
|
|
interval 300
|
|
first 50
|
|
thereafter 40
|
|
}
|
|
}
|
|
}
|
|
----------
|
|
{
|
|
"logging": {
|
|
"logs": {
|
|
"default": {
|
|
"sampling": {
|
|
"interval": 300,
|
|
"first": 50,
|
|
"thereafter": 40
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |