-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.windows.example.json
More file actions
95 lines (87 loc) · 2.24 KB
/
config.windows.example.json
File metadata and controls
95 lines (87 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"listen_address": ":9110",
"tls": {
"cert_file": "C:/Program Files/limiz/certs/server.crt",
"key_file": "C:/Program Files/limiz/certs/server.key",
"store_name": "Limiz"
},
"basic_auth": {
"username": "prometheus",
"password": "secret"
},
"local_write": {
"enabled": true,
"interval": "5m",
"db_path": "C:/Program Files/limiz/metrics.db",
"rotate": "24h",
"max_files": 5
},
"metrics": {
"path": "/metrics",
"cache": {
"enabled": false,
"interval": "5m"
},
"plugins": {
"enabled": true,
"dir": "C:/Program Files/limiz/plugins/metric",
"default_timeout": "10s",
"items": [
{
"name": "dir-size",
"exec": "dir-size",
"args": ["--path", "C:/inetpub/wwwroot", "--path", "C:/logs"],
"timeout": "30s",
"enabled": true
},
{
"name": "gpu-info",
"exec": "gpu-info",
"args": [],
"timeout": "15s",
"enabled": false
},
{
"name": "services",
"exec": "services",
"args": ["--state", "running"],
"timeout": "10s",
"enabled": false
}
]
}
},
"datas": {
"enabled": true,
"path": "/datas",
"basic_auth": false,
"tls": false,
"cache": {
"enabled": true,
"interval": "30s"
},
"categories": {
"services": true,
"packages": { "enabled": true, "cache_interval": "10m" },
"updates": { "enabled": true, "cache_interval": "30m" },
"disk_health": { "enabled": true, "cache_interval": "5m" },
"hardware": { "enabled": true, "cache_interval": "1h" },
"os": true,
"ports": true
},
"plugins": {
"enabled": true,
"dir": "C:/Program Files/limiz/plugins/data",
"default_timeout": "15s",
"items": [
{
"name": "folder-size",
"exec": "folder-size",
"args": ["--path", "C:/Logs", "--path", "C:/Temp"],
"cache_interval": "10m",
"enabled": true
}
]
}
}
}