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 5 years have passed since last update.

HTTPエージェントによるAWS監視(手探り)

Posted at

Zabbix 4.0 ではHTTPエージェント機能がリリースされました。
この機能によりAPIにアクセスして値を取得する事が可能になります。
JSONやXML、RAW形式のリクエストを投げることができます。
また、GETだけでなく、POSTリクエストにも対応することができます。
2018-12-09_18h38_57.png

#手探り
ひとまずMaking API Requestsのドキュメントに従って、APIリクエストを組み立ててみます。

POSTリクエストでHOSTはmonitoring.<リージョン>.amazonaws.comとなっているので
そのように設定します。
image.png

APIリクエストを投げる場合は
x-amz-targetと書かれているので、ヘッダー設定に加えてみます。
image.png

サンプルリクエストに載っているサンプルリクエストをそのままコピペしてみます。

image.png

どのようなデータが取れてくるかを見たいので、ボディーとヘッダーを取得します。
2018-12-09_18h48_18.png

#レスポンス
2018-12-09_18h49_07.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?