使用 Google 云警报监控 HTTPS 请求和响应
Monitor HTTPS requests and responses using Google Cloud Alerts
我正在尝试在 Google 云监控中创建一个 uptime check
警报。
TARGET
是一个 HTTPS URL
。此 URL
需要一些 headers 和 body 数据。
HEADER data
添加在 "MORE TARGET OPTIONS"
下。
但是 Body data
应该添加到哪里呢?
请求的curl命令如
curl --location --request POST 'https://<url>' \
--header 'TOKEN': 'token' \
--header 'Content-Type: application/json' \
--data-raw '[ {<test-json-data>} ]'
如何在 google 正常运行时间检查中发送 --data-raw(body 数据)?
从这个Document:
To issue an HTTP POST request for an uptime check, you must create the uptime check by using the Cloud Monitoring API.
UI不会让你这么做的。
我正在尝试在 Google 云监控中创建一个 uptime check
警报。
TARGET
是一个 HTTPS URL
。此 URL
需要一些 headers 和 body 数据。
HEADER data
添加在 "MORE TARGET OPTIONS"
下。
但是 Body data
应该添加到哪里呢?
请求的curl命令如
curl --location --request POST 'https://<url>' \
--header 'TOKEN': 'token' \
--header 'Content-Type: application/json' \
--data-raw '[ {<test-json-data>} ]'
如何在 google 正常运行时间检查中发送 --data-raw(body 数据)?
从这个Document:
To issue an HTTP POST request for an uptime check, you must create the uptime check by using the Cloud Monitoring API.
UI不会让你这么做的。