SAS Viya Monitoring for Kubernetes でログを検索したい場合に以下のようにクエリを投入できる。結果はJSONなので、これを加工して欲しい情報を見やすく成型する。この curl のコマンドは OpenSearch の DEV Toolからコマンドを生成して、必要最小限のオプションまで削りました。
- curl 'https://viya4.example.com/dashboards/api/console/proxy?path=_search&method=GET' \
- -H 'osd-xsrf: opensearchDashboards' \
- --data-raw '{ "query": { "simple_query_string": { "query": "setinit", "fields": [ "message" ], "default_operator": "and" }}}' \
- --insecure -u 'admin:password'