Skip to content

Commit

Permalink
feat: update images (#50)
Browse files Browse the repository at this point in the history
* chore: update greptime images

* feat: update to latest greptime nightly and h3 function

* chore: use same version of grafana image
  • Loading branch information
sunng87 authored Oct 1, 2024
1 parent 5cd2447 commit 6924b59
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion flight-data-ingester/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
greptimedb:
image: docker.io/greptime/greptimedb-dev:dev-20240901-1725202129-e56709b5
image: docker.io/greptime/greptimedb:v0.10.0-nightly-20240930
command: standalone start --http-addr=0.0.0.0:4000 --rpc-addr=0.0.0.0:4001 --mysql-addr=0.0.0.0:4002 --postgres-addr 0.0.0.0:4003
ports:
- 4000:4000
Expand Down
6 changes: 3 additions & 3 deletions flight-data-ingester/grafana_provisioning/dashboards/map.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
"editorMode": "code",
"format": "table",
"rawQuery": true,
"rawSql": "select icao24, longitude, latitude, baro_altitude, geo_altitude, velocity, geohash(latitude, longitude, 7) as geohash, h3(latitude, longitude, 7) as h3 from icao24_state where icao24 = '$icao24' and $__timeFilter(ts) order by ts desc limit 500;",
"rawSql": "select icao24, longitude, latitude, baro_altitude, geo_altitude, velocity, geohash(latitude, longitude, 7) as geohash, h3_latlng_to_cell(latitude, longitude, 7) as h3 from icao24_state where icao24 = '$icao24' and $__timeFilter(ts) order by ts desc limit 500;",
"refId": "A",
"sql": {
"columns": [
Expand Down Expand Up @@ -375,7 +375,7 @@
"editorMode": "code",
"format": "table",
"rawQuery": true,
"rawSql": "select\n ts,\n velocity as value\nfrom\n icao24_state\nwhere\n icao24 = '$icao24'\n and $__timeFilter(ts)\n and h3(latitude, longitude, $h3_resolution) = h3($lat, $lon, $h3_resolution)\norder by ts desc;",
"rawSql": "select\n ts,\n velocity as value\nfrom\n icao24_state\nwhere\n icao24 = '$icao24'\n and $__timeFilter(ts)\n and h3_latlng_to_cell(latitude, longitude, $h3_resolution) = h3_latlng_to_cell($lat, $lon, $h3_resolution)\norder by ts desc;",
"refId": "A",
"sql": {
"columns": [
Expand Down Expand Up @@ -531,7 +531,7 @@
"editorMode": "code",
"format": "table",
"rawQuery": true,
"rawSql": "select\n ts,\n baro_altitude as value\nfrom\n icao24_state\nwhere\n icao24 = '$icao24'\n and $__timeFilter(ts)\n and h3(latitude, longitude, $h3_resolution) = h3($lat, $lon, $h3_resolution)\norder by\n ts desc;",
"rawSql": "select\n ts,\n baro_altitude as value\nfrom\n icao24_state\nwhere\n icao24 = '$icao24'\n and $__timeFilter(ts)\n and h3_latlng_to_cell(latitude, longitude, $h3_resolution) = h3_latlng_to_cell($lat, $lon, $h3_resolution)\norder by\n ts desc;",
"refId": "A",
"sql": {
"columns": [
Expand Down
2 changes: 1 addition & 1 deletion kafka-ingestion/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ services:
command: "-c /config_data/vector.toml"

greptimedb:
image: docker.io/greptime/greptimedb:v0.9.2
image: docker.io/greptime/greptimedb:v0.9.3
command: standalone start --http-addr=0.0.0.0:4000 --rpc-addr=0.0.0.0:4001 --mysql-addr=0.0.0.0:4002 --postgres-addr 0.0.0.0:4003
ports:
- 4000:4000
Expand Down
2 changes: 1 addition & 1 deletion nginx-log-metrics/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
greptimedb:
image: docker.io/greptime/greptimedb:v0.10.0-nightly-20240805
image: docker.io/greptime/greptimedb:v0.9.3
command: standalone start --http-addr=0.0.0.0:4000 --rpc-addr=0.0.0.0:4001 --mysql-addr=0.0.0.0:4002 --postgres-addr 0.0.0.0:4003
ports:
- 4000:4000
Expand Down
2 changes: 1 addition & 1 deletion nginx-log-metrics/grafana/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/grafana/grafana:11.1.0
FROM docker.io/grafana/grafana:11.2.0

RUN grafana cli --pluginUrl https://github.com/GreptimeTeam/greptimedb-grafana-datasource/releases/latest/download/info8fcc-greptimedb-datasource.zip plugins install info8fcc

Expand Down

0 comments on commit 6924b59

Please sign in to comment.