aboutsummaryrefslogtreecommitdiffhomepage
path: root/caddytest/integration/caddyfile_adapt/global_options_log_sampling.caddyfiletest
blob: 12b73b2b7a4c6ea6951e9419e9208c62a006f917 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
	log {
		sampling {
			interval 300
			first 50
			thereafter 40
		}
	}
}
----------
{
	"logging": {
		"logs": {
			"default": {
				"sampling": {
					"interval": 300,
					"first": 50,
					"thereafter": 40
				}
			}
		}
	}
}