Monitoring data照会
- 印刷する
- PDF
Monitoring data照会
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
設定したMonitoring dataを表示します。
- document_upload : アップロードしたDocumentのサイズを表示します。 / uploaded documnet byte
- reindex : 再インデックス(セクション、インデックス追加時に発生)されたDocumentサイズを表示します。 / reindexed document byte
- autocomplete_reindex : 自動完成が適用されたDocumentの数を表示します。 / reindexed document count for autocomplete
- search_response : Search Queryネットワーク使用量を表示します。/ response size of searching, unit is byte
GET https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/{name}/monitoring/apicall_count
リクエスト
リクエストパラメータ
パラメータ名 | 必須 | タイプ | 制約事項 | 説明 |
---|---|---|---|---|
name | Yes | string | 作成されているDomain名 | |
monitoring_item | Yes | enum, string | Monitoring項目 : document_upload, reindex, autocomplete_reindex, search_response | |
interval | Yes | number | 60, 300, 1800, 7200, 86400 | 照会間隔 : 60s, 300s, 1800s, 7200s, 86400s |
from | Yes | string | ISO_8601 | 開始時間(UTC, ex: 20161027T171340Z ) |
to | Yes | string | ISO_8601 | 終了時間(UTC, ex: 20161027T171340Z ) |
レスポンス
フィールド名 | タイプ | 説明 | 備考 |
---|---|---|---|
- | Array[number] | index 0 : unixtime, index 1 : 値 |
レスポンスStatus
HTTP Status | Desc |
---|---|
200 | OK(照会完了) |
400 | Bad Request |
401 | Unauthorized |
403 | Forbidden |
404 | Not Found |
500 | Internal Server Error |
例示
リクエスト例示 - 日別のデータ照会
GET https://cloudsearch.apigw.ntruss.com/CloudSearch/real/v1/domain/car_dev/monitoring/document_upload?interval=60&from=2019-02-28T00%3A00%3A00Z&to=2019-02-28T00%3A00%3A00Z
GET /CloudSearch/real/v1/domain/car_dev/monitoring/apicall_count?from=2019-02-28T00:00:00Z&interval=60&to=2019-02-28T00:00:00Z HTTP/1.1
Host:cloudsearch.apigw.ntruss.com
accept:application/json
x-ncp-apigw-signature-v2: cDwtHuQeGmwWyNmwlN6XIGA66zge4iMXvfoDQNna05g=
x-ncp-apigw-timestamp: 1545817618751
x-ncp-iam-access-key: teGTwtcSEGA7fu28BGGi
レスポンス例示
[
[
1551312000,
200
],
[
1551312060,
3
],
[
1551312120,
20
],
]
この記事は役に立ちましたか?