mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 07:55:32 +02:00
aws-cloudwatch: add page (#10614)
This commit is contained in:
parent
560ec3972f
commit
580ab5eaeb
1 changed files with 32 additions and 0 deletions
32
pages/common/aws-cloudwatch.md
Normal file
32
pages/common/aws-cloudwatch.md
Normal file
|
@ -0,0 +1,32 @@
|
|||
# aws cloudwatch
|
||||
|
||||
> Monitor AWS resources to gain system-wide visibility into resource utilization, application performance, and operational health.
|
||||
> More information: <https://awscli.amazonaws.com/v2/documentation/api/latest/reference/cloudwatch/index.html>.
|
||||
|
||||
- List dashboards for your account:
|
||||
|
||||
`aws cloudwatch list-dashboards`
|
||||
|
||||
- Display details for the specified dashboard:
|
||||
|
||||
`aws cloudwatch get-dashboard --dashboard-name {{dashboard_name}}`
|
||||
|
||||
- List metrics:
|
||||
|
||||
`aws cloudwatch list-metrics`
|
||||
|
||||
- List alarms:
|
||||
|
||||
`aws cloudwatch describe-alarms`
|
||||
|
||||
- Create or update an alarm and associate it with a metric:
|
||||
|
||||
`aws cloudwatch put-metric-alarm --alarm-name {{alarm_name}} --evaluation-periods {{evaluation_periods}} --comparison-operator {{comparison_operator}}`
|
||||
|
||||
- Delete the specified alarms:
|
||||
|
||||
`aws cloudwatch delete-alarms --alarm_names {{alarm_names}}`
|
||||
|
||||
- Delete the specified dashboards:
|
||||
|
||||
`aws cloudwatch delete-dashboards --dashboard-names {{dashboard_names}}`
|
Loading…
Add table
Reference in a new issue