LoginSignup
2
1

More than 3 years have passed since last update.

Splunkのダッシュボード内にフリーコメント用のメモパネルを作る

Posted at

ダッシュボード内にフリーコメント欄を作成したくなったら

  • simpleXMLのままパネルにてフリーコメントを作成
  • htmlコンバートしなくても良い→簡単

How to

以下のようなxmlをダッシュボードに記述して保存

sample.xml
<dashboard>
  <label>test</label>
    <row>
    <panel>
        <html>
        <p>フリーコメント</p>
        <ul>
          <li>パネルの中に"<html>、</html>"で囲ってあげれば、html codeで記載ができる</li>
          <li>簡単なメモ程度にもってこい</li>
          <li>Splunk標準のsimpleXMLからhtmlコンバートしなくても書けて楽</li>
        </ul>
      </html>
    </panel>
  </row>
</dashboard>

こうなる

スクリーンショット 2019-09-10 11.05.01.png

サーチ結果のパネルと並べるとこんな感じ

スクリーンショット 2019-09-10 11.09.34.png

2
1
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
2
1