1
1

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.

Splunk: テスト用データを用意せずにダミーイベントを作りたい

Posted at

Splunk のサーチコマンドの動作確認で時々使うのでメモ。

実施環境: Splunk Free 8.2.2

Splunk のサーチコマンドの動作確認を行う際に、テスト用のデータを用意せずサーチ内だけでさくっとダミーイベントを作成したい時があります。
そのような時は、 makeresults コマンドを使用します。

Splunk
| makeresults

上記を実行すると、コマンドを実行したサーバ日時を値に持つ _time フィールドのみのイベントが1つだけ生成されます。

スクリーンショット 2021-09-26 13.30.28.png

複数のイベントを生成したい場合は、 count オプションに作成したいイベント数を指定します。

Splunk
| makeresults count=5

スクリーンショット 2021-09-26 13.30.46.png

複数作成しても、 _time フィールドの値は全て同じです。
現在時刻を起点として一定間隔のデータを作成したい場合は、 streamstats コマンドを利用して生成した数列を _time に加算 / 減算することで作成できます。

Splunk
| makeresults count=5 
| streamstats count AS Serial
| eval _time = _time - Serial * 60 * 5 
| fields - Serial

スクリーンショット 2021-09-26 13.37.30.png

起点時刻を指定したい場合は、 eval コマンドの strptime 関数を使用します。

Splunk
| makeresults count=5 
| streamstats count AS Serial
| eval Date = strptime("2021-09-20 12:30:45", "%Y-%m-%d %H:%M:%S")
| eval _time = Date + ( Serial - 1 ) * 60 * 60 * 24 
| fields - Serial, Date

スクリーンショット 2021-09-26 13.48.39.png

_time 以外のフィールドを追加する場合は、 eval コマンドを使用します。

Splunk
| makeresults count=5 
| eval Field = "test"

スクリーンショット 2021-09-26 13.49.14.png

ランダムな値が必要な場合は、 eval コマンドの random 関数を使用します。
なお、 random 関数は「0から2の31乗-1の間の任意の整数を返す」関数の為、数値の範囲を指定したい場合は%で割り算の余りを取ります。

Splunk
| makeresults count=5 
| eval Number = random() % 100
| fields - _time

スクリーンショット 2021-09-26 13.56.13.png

文字列等数値以外の値にしたい場合は、 if 関数や case 関数を併用もできます。

Splunk
| makeresults count=5 
| eval Judge = if( random() % 2 > 0, "OK", "NG")
| fields - _time

スクリーンショット 2021-09-26 13.58.57.png

Splunk
| makeresults count=5 
| eval Rand = random() % 3
| eval Judge = case( Rand == 0, "Red", Rand == 1, "Yellow", Rand == 2, "Green")
| fields - _time, Rand

スクリーンショット 2021-09-26 14.07.11.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?