1
0
Fork 0

Let prometheus scrape temperature values from iot data

This commit is contained in:
clerie 2021-06-20 16:05:37 +02:00
parent 4707c565b1
commit 1cb3143096
1 changed files with 26 additions and 0 deletions

View File

@ -91,6 +91,32 @@ in {
}
];
}
{
job_name = "zimmer-temp";
scrape_interval = "20s";
scheme = "https";
metrics_path = "/data/zimmer-temp/";
static_configs = [
{
targets = [
"iot-data.clerie.de"
];
}
];
}
{
job_name = "outdoor-temp";
scrape_interval = "20s";
scheme = "https";
metrics_path = "/data/outdoor-temp/";
static_configs = [
{
targets = [
"iot-data.clerie.de"
];
}
];
}
];
};