22 lines
497 B
JSON
22 lines
497 B
JSON
{
|
|
"imagePath": "background.png",
|
|
"influxdbUrl": "http://localhost:8086",
|
|
"influxdbToken": "your-token-here",
|
|
"influxdbOrg": "your-org",
|
|
"influxdbBucket": "your-bucket",
|
|
"query": "from(bucket: \"your-bucket\")\n |> range(start: -1m)\n |> filter(fn: (r) => r[\"_measurement\"] == \"temperature\")\n |> last()",
|
|
"showConfig": true,
|
|
"textItems": [
|
|
{
|
|
"fieldName": "temperature",
|
|
"x": 100,
|
|
"y": 100,
|
|
"fontSize": 24,
|
|
"color": "#FFFFFF"
|
|
}
|
|
]
|
|
}
|
|
|
|
|
|
|