cc-backend/configs/config-demo.json

68 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2022-09-19 17:36:00 +02:00
{
2024-11-14 19:10:55 +01:00
"addr": "127.0.0.1:8080",
"short-running-jobs-duration": 300,
"archive": {
"kind": "file",
"path": "./var/job-archive"
},
"jwts": {
"max-age": "2000h"
},
"enable-resampling": {
"trigger": 30,
"resolutions": [
600,
300,
120,
60
]
},
"emission-constant": 317,
"clusters": [
{
"name": "fritz",
"metricDataRepository": {
"kind": "cc-metric-store",
"url": "http://localhost:8082",
"token": ""
},
"filterRanges": {
"numNodes": {
"from": 1,
"to": 64
},
"duration": {
"from": 0,
"to": 86400
},
"startTime": {
"from": "2022-01-01T00:00:00Z",
"to": null
}
}
2023-08-18 09:31:57 +02:00
},
2024-11-14 19:10:55 +01:00
{
"name": "alex",
"metricDataRepository": {
"kind": "cc-metric-store",
"url": "http://localhost:8082",
"token": ""
},
"filterRanges": {
"numNodes": {
"from": 1,
"to": 64
},
"duration": {
"from": 0,
"to": 86400
2022-09-19 17:36:00 +02:00
},
2024-11-14 19:10:55 +01:00
"startTime": {
"from": "2022-01-01T00:00:00Z",
"to": null
2022-09-19 17:36:00 +02:00
}
2024-11-14 19:10:55 +01:00
}
}
]
2022-09-19 17:36:00 +02:00
}