4
7

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のグラフをhtml文書に埋め込む

Posted at

前回記事のおまけ。Grafanaのグラフをhtml文書に埋め込む。

Grafanaでanonymousログイン、embeddingを有効にする

1.viで「/etc/grafana/grafana.ini」を編集する。
→ 205行目くらいにある「;allow_embedding = false」を
「allow_embedding = true」に、
→ 336行目くらいにある、[auth.anonymous]セクションの「;enabled = false」を「enabled = true」に

2.Grafanaを再起動する。

GrafanaのパネルのURLを取得する

1.Grafanaにadminユーザーでログインする。

2.埋め込みたいダッシュボード/パネルを開く。

3.パネルのタイトルをクリックし、「Share」をクリックする。
※下記の画像だと、パネルのタイトルは空文字。
image.png

4.「Embed」で「Current time range」のチェックを外し、表示される「<iframe~」の文字列をコピーする。
image.png

グラフを埋め込んだhtmlを作成する

1.とりあえず、グラフを画像内に埋め込んだhtmlの例として、以下ファイルを作成して手元のPCに保存する。
iframeのwidthやheightは埋め込む先の画像に合わせて調整。

graf.html
<!DOCTYPE html>
<head><link rel="stylesheet" href="graf.css"></head>
<div class="relative">
    <div class="absolute">
        <iframe src="http://54.150.214.19:3000/d-solo/Dnrs741Mz/data1?orgId=1&refresh=1s&theme=dark&panelId=2" width="100" height="100" frameborder="0"></iframe>
    </div>
</div>
graf.css
.relative {
    position: relative;
    width: 409px;
    height: 700px;
    background-image: url("https://publicdomainq.net/images/202008/10s/publicdomainq-0047735ngo.jpg");
}

.absolute {
    position: absolute;
    top: 490px;
    left: 155px;
}

埋め込み結果

ハートの真ん中で脈打っているのが埋め込んだグラフ。
image.png

4
7
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
4
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?