geostats

このコマンドを使用して、「クライアント・ホスト座標」フィールドでグループ化されたサマリー統計を提供します。オプションで、追加のフィールド別にグループ化できます。この問合せの出力には、関連する地理フィールドと、集計ごとに1つのフィールドが含まれます。

構文

geostats [ include = client | server | client,server ] <stats_function> (<field_name>) [as new_field_name] [, <stats_function> (<field_name>) [as new_field_name]]* [by <field_name> [, <field_name>]*]

OR

geostats include = custom [ city = <field_name> ] [ region = <field_name> ] [ country = <field_name> ] [ continent = <field_name> ] [ coordinates = <field_name> ] <stats_function> (<field_name>) [as new_field_name] [, <stats_function> (<field_name>) [as new_field_name]]* by <field_name> [, <field_name>]*

パラメータ

次の表に、このコマンドで使用されるパラメータとその説明を示します。

パラメータ 説明

field_name

このパラメータを使用して、結果をグループ化する際の基準にするフィールドを指定します。

new_field_name

この値を使用して、フィールドにstats関数を適用した後に結果を表示する新しいフィールド名を指定します。

ノート

statsコマンドに関連付けられているファンクションは、geostatsコマンドでも使用できます。ファンクションの詳細およびコマンドでファンクションを使用する例は、statsを参照してください。

このコマンドの使用例は、次を参照してください。

次の問合せは、ターゲット名、タイプおよびクライアント・ホスト座標でグループ化された致命的なログの数を返します。

severity='fatal' | geostats count by target, 'target type'

次の問合せは、クライアント・ホスト座標でグループ化されたログの合計数を返します。

* | geostats count

次の問合せは、ターゲット名、重大度およびサーバー・ホスト座標でグループ化されたデータベース・ログの数を返します。

'target type' = 'Database Instance' | geostats include=server count by target, severity

次の問合せは、クライアント・ホスト座標およびサーバー・ホスト座標でグループ化されたログの合計数を返します。

* | geostats include=client,server count

次の問合せは、ルックアップ表のフィールドを使用して座標でグループ化されたログの合計数を返します。

* | lookup table = geomap select city, country, coordinates using 'Client Coordinates' = coordinates | geostats include = custom city = city country = country by coordinates count