createtable
createtable
コマンドを使用して、link
コマンドの結果から1つ以上のフィールドを集計します。
構文:
createtable name = <name> [limit = <limit>] select <field_selects> [, <field_selects>]*
パラメータ
次の表に、このコマンドで使用されるパラメータとその説明を示します。
パラメータ | 説明 |
---|---|
name |
表の表示名 |
limit |
表の行の最大数。デフォルトは、最大制限である500です。 |
field_selects |
構文: <output_fields> [from <table>]
|
次のコマンドは、link
コマンドの結果をsequence
コマンドの結果と結合します。
* | link Entity
| sequence name = 'Security Event' span = 5min [ 'Security Result' = failure ]{5,} then [ 'Security Result' = success ]{1,} select 'Source IP Address'
| createtable name = Events select Entity, literal(High) as 'Risk Level' select 'Start Time', Count from 'Security Event'
次のコマンドは、eventstats
コマンドの結果の概要を示します。
* | link Entity, Severity
| eventstats avg('Content Size') as 'Avg Content Size' by Severity
| createtable name = 'Size By Severity' select Severity, 'Avg Content Size'