grafana fixes

This commit is contained in:
Snazzah 2024-06-22 17:02:19 -05:00
parent dda2eb921a
commit 697c814648
Signed by: Snazzah
GPG Key ID: EA479766A94CEB61
3 changed files with 31 additions and 1 deletions

View File

@ -22,3 +22,7 @@ bun start
The provided docker-compose file sets up a PostgreSQL server and a Grafana instance.
There is also a Grafana dashboard JSON file for an example use of the data.
Make sure to import the `server/schema.sql` into PostgreSQL before using it.
You can import the datasource into grafana with the command:
```sh
curl -X "POST" "http://localhost:3000/api/datasources" -H "Content-Type: application/json" --user admin:admin --data-binary @grafana-datasource.json
```

View File

@ -846,7 +846,7 @@
"timepicker": {},
"timezone": "browser",
"title": "Field Day Contest",
"uid": "fdpbhdsbrhs74f",
"uid": "arrlfielddaycontest",
"version": 11,
"weekStart": ""
}

26
grafana-datasource.json Normal file
View File

@ -0,0 +1,26 @@
{
"id": 1,
"uid": "edpbbm8hqv9j4e",
"orgId": 1,
"name": "PostgreSQL",
"type": "grafana-postgresql-datasource",
"typeName": "PostgreSQL",
"typeLogoUrl": "public/app/plugins/datasource/grafana-postgresql-datasource/img/postgresql_logo.svg",
"access": "proxy",
"url": "postgres:5432",
"user": "fdlogup",
"secureJsonData": {"password": "fdlogup"},
"database": "",
"basicAuth": false,
"isDefault": true,
"jsonData": {
"connMaxLifetime": 14400,
"database": "fdlogup",
"maxIdleConns": 100,
"maxIdleConnsAuto": true,
"maxOpenConns": 100,
"postgresVersion": 1600,
"sslmode": "disable"
},
"readOnly": false
}