0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

grafanaとpostgresを連携してみた【docker-compose】

Posted at

起動方法

git clone https://github.com/guedim/grafana-postgres.git
docker-compose up -d

grafanaへログイン

ブラウザから http://localhost:3000/ へアクセス
user : admin
password: foobar
でログインする。
(grafana-postgres/grafana/dashboard/post.sh にて設定してある)

grafanaのGUIでの設定方法

Add data sourceを押して、postgresを設定する
一番難しいところが以下の設定場所。Host名がlocalhost:5432ではなくて、postgres:5432に設定する

grafana_postres_setting.png
入力後、Save & Testを押してDatabase Connection OKが出れば連携完了。

テーブルを可視化

dashboard > table > edit でsql文を書ける画面が出てくる。
https://github.com/guedim/grafana-postgres.git には元々データが入っているので、そのデータを表示した。
tableのeditを選んでsql文を書いた.png

postgres のデータをみる

docker-compose exec postgres bash
su postgres
psql
\d #テーブル一覧表示
\l #database一覧を表示
\d account_metrics #カラム一覧を表示 カラムなのでデータベースを指定してから 
\q #exit
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?