# AWS S3 bucket by HTTP ## Overview The template to monitor AWS S3 bucket by HTTP via Zabbix that works without any external scripts. Most of the metrics are collected in one go, thanks to Zabbix bulk data collection. *NOTE* This template uses the GetMetricData CloudWatch API calls to list and retrieve metrics. For more information, please refer to the (CloudWatch pricing)[https://aws.amazon.com/cloudwatch/pricing/] page. Additional information about metrics and used API methods: * Full metrics list related to S3: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metrics-dimensions.html ## Requirements Zabbix version: 7.0 and higher. ## Tested versions This template has been tested on: - AWS S3 bucket by HTTP ## Configuration > Zabbix should be configured according to the instructions in the [Templates out of the box](https://www.zabbix.com/documentation/7.0/manual/config/templates_out_of_the_box) section. ## Setup The template gets AWS S3 metrics and uses the script item to make HTTP requests to the CloudWatch API. Before using the template, you need to create an IAM policy for the Zabbix role in your AWS account with the necessary permissions. Add the following required permissions to your Zabbix IAM policy in order to collect Amazon S3 metrics. ```json { "Version":"2012-10-17", "Statement":[ { "Action":[ "cloudwatch:Describe*", "cloudwatch:Get*", "cloudwatch:List*" ], "Effect":"Allow", "Resource":"*" } ] } ``` To gather Request metrics, [enable Requests metrics](https://docs.aws.amazon.com/AmazonS3/latest/userguide/cloudwatch-monitoring.html) on your Amazon S3 buckets from the AWS console. Set the macros "{$AWS.ACCESS.KEY.ID}", "{$AWS.SECRET.ACCESS.KEY}", "{$AWS.REGION}", "{$AWS.S3.FILTER.ID}", "{$AWS.S3.BUCKET.NAME}" For more information about manage access keys, see [official documentation](https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys) Also, see the Macros section for a list of macros used for LLD filters. Additional information about metrics and used API methods: * Full metrics list related to S3: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metrics-dimensions.html ### Macros used |Name|Description|Default| |----|-----------|-------| |{$AWS.PROXY}|
Sets HTTP proxy value. If this macro is empty then no proxy is used.
|| |{$AWS.ACCESS.KEY.ID}|Access key ID.
|| |{$AWS.SECRET.ACCESS.KEY}|Secret access key.
|| |{$AWS.REGION}|Amazon S3 Region code.
|`us-west-1`| |{$AWS.S3.FILTER.ID}|S3 bucket requests filter identifier.
|| |{$AWS.S3.BUCKET.NAME}|S3 bucket name.
|| |{$AWS.S3.LLD.FILTER.ALARM_NAME.MATCHES}|Filter of discoverable alarms by name.
|`.*`| |{$AWS.S3.LLD.FILTER.ALARM_NAME.NOT_MATCHES}|Filter to exclude discovered alarms by name.
|`CHANGE_IF_NEEDED`| ### Items |Name|Description|Type|Key and additional info| |----|-----------|----|-----------------------| |AWS S3: Get metrics data|Get bucket metrics.
Full metrics list related to S3: https://docs.aws.amazon.com/AmazonS3/latest/userguide/metrics-dimensions.html
|Script|aws.s3.get_metrics**Preprocessing**
Check for not supported value
⛔️Custom on fail: Discard value
Get alarms data.
DescribeAlarms API method: https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/API_DescribeAlarms.html
|Script|aws.s3.get_alarms**Preprocessing**
Check for not supported value
⛔️Custom on fail: Discard value
Data collection check.
|Dependent item|aws.s3.metrics.check**Preprocessing**
JSON Path: `$.error`
⛔️Custom on fail: Set value to
Discard unchanged with heartbeat: `3h`
Data collection check.
|Dependent item|aws.s3.alarms.check**Preprocessing**
JSON Path: `$.error`
⛔️Custom on fail: Set value to
Discard unchanged with heartbeat: `3h`
This a daily metric for the bucket.
The amount of data in bytes stored in a bucket in the STANDARD storage class, INTELLIGENT_TIERING storage class, Standard-Infrequent Access (STANDARD_IA) storage class, OneZone-Infrequent Access (ONEZONE_IA), Reduced Redundancy Storage (RRS) class, S3 Glacier Instant Retrieval storage class, Deep Archive Storage (S3 Glacier Deep Archive) class or, S3 Glacier Flexible Retrieval (GLACIER) storage class. This value is calculated by summing the size of all objects and metadata in the bucket (both current and noncurrent objects), including the size of all parts for all incomplete multipart uploads to the bucket.
|Dependent item|aws.s3.bucket_size_bytes**Preprocessing**
JSON Path: `$.[?(@.Label == "BucketSizeBytes")].Values.first().first()`
⛔️Custom on fail: Discard value
This a daily metric for the bucket.
The total number of objects stored in a bucket for all storage classes.
This value is calculated by counting all objects in the bucket (both current and noncurrent objects) and the total number of parts for all incomplete multipart uploads to the bucket.
|Dependent item|aws.s3.number_of_objects**Preprocessing**
JSON Path: `$.[?(@.Label == "NumberOfObjects")].Values.first().first()`
⛔️Custom on fail: Discard value
The total number of HTTP requests made to an Amazon S3 bucket, regardless of type.
If you're using a metrics configuration with a filter, then this metric only returns the HTTP requests that meet the filter's requirements.
|Dependent item|aws.s3.all_requests**Preprocessing**
JSON Path: `$.[?(@.Label == "AllRequests")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of HTTP GET requests made for objects in an Amazon S3 bucket. This doesn't include list operations.
Paginated list-oriented requests, like List Multipart Uploads, List Parts, Get Bucket Object versions, and others, are not included in this metric.
|Dependent item|aws.s3.get_requests**Preprocessing**
JSON Path: `$.[?(@.Label == "GetRequests")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of HTTP PUT requests made for objects in an Amazon S3 bucket.
|Dependent item|aws.s3.put_requests**Preprocessing**
JSON Path: `$.[?(@.Label == "PutRequests")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of HTTP DELETE requests made for objects in an Amazon S3 bucket.
This also includes Delete Multiple Objects requests. This metric shows the number of requests, not the number of objects deleted.
|Dependent item|aws.s3.delete_requests**Preprocessing**
JSON Path: `$.[?(@.Label == "DeleteRequests")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of HTTP HEAD requests made to an Amazon S3 bucket.
|Dependent item|aws.s3.head_requests**Preprocessing**
JSON Path: `$.[?(@.Label == "HeadRequests")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of HTTP POST requests made to an Amazon S3 bucket.
Delete Multiple Objects and SELECT Object Content requests are not included in this metric.
|Dependent item|aws.s3.post_requests**Preprocessing**
JSON Path: `$.[?(@.Label == "PostRequests")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of Amazon S3 SELECT Object Content requests made for objects in an Amazon S3 bucket.
|Dependent item|aws.s3.select_requests**Preprocessing**
JSON Path: `$.[?(@.Label == "SelectRequests")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of bytes of data scanned with Amazon S3 SELECT Object Content requests in an Amazon S3 bucket.
Statistic: Average (bytes per request).
|Dependent item|aws.s3.select_bytes_scanned**Preprocessing**
JSON Path: `The text is too long. Please see the template.`
⛔️Custom on fail: Discard value
The number of bytes of data returned with Amazon S3 SELECT Object Content requests in an Amazon S3 buckets.
Statistic: Average (bytes per request).
|Dependent item|aws.s3.select_bytes_returned**Preprocessing**
JSON Path: `The text is too long. Please see the template.`
⛔️Custom on fail: Discard value
The number of HTTP requests that list the contents of a bucket.
|Dependent item|aws.s3.list_requests**Preprocessing**
JSON Path: `$.[?(@.Label == "ListRequests")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of bytes downloaded for requests made to an Amazon S3 bucket, where the response includes a body.
Statistic: Average (bytes per request).
|Dependent item|aws.s3.bytes_downloaded**Preprocessing**
JSON Path: `$.[?(@.Label == "BytesDownloaded")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of bytes uploaded that contain a request body, made to an Amazon S3 bucket.
Statistic: Average (bytes per request).
|Dependent item|aws.s3.bytes_uploaded**Preprocessing**
JSON Path: `$.[?(@.Label == "BytesUploaded")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of HTTP 4xx client error status code requests made to an Amazon S3 bucket with a value of either 0 or 1.
The average statistic shows the error rate, and the sum statistic shows the count of that type of error, during each period.
Statistic: Average (reports per request).
|Dependent item|aws.s3.4xx_errors**Preprocessing**
JSON Path: `$.[?(@.Label == "4xxErrors")].Values.first().first()`
⛔️Custom on fail: Discard value
The number of HTTP 5xx server error status code requests made to an Amazon S3 bucket with a value of either 0 or 1.
The average statistic shows the error rate, and the sum statistic shows the count of that type of error, during each period.
Statistic: Average (reports per request).
|Dependent item|aws.s3.5xx_errors**Preprocessing**
JSON Path: `$.[?(@.Label == "5xxErrors")].Values.first().first()`
⛔️Custom on fail: Discard value
The per-request time from the complete request being received by an Amazon S3 bucket to when the response starts to be returned.
Statistic: Average.
|Dependent item|aws.s3.first_byte_latency.avg**Preprocessing**
JSON Path: `$.[?(@.Label == "FirstByteLatency")].Values.first().first()`
⛔️Custom on fail: Discard value
The per-request time from the complete request being received by an Amazon S3 bucket to when the response starts to be returned.
Statistic: 90 percentile.
|Dependent item|aws.s3.first_byte_latency.p90**Preprocessing**
JSON Path: `$.[?(@.Label == "FirstByteLatency")].Values.first().first()`
⛔️Custom on fail: Discard value
The elapsed per-request time from the first byte received to the last byte sent to an Amazon S3 bucket.
This includes the time taken to receive the request body and send the response body, which is not included in FirstByteLatency.
Statistic: Average.
|Dependent item|aws.s3.total_request_latency.avg**Preprocessing**
JSON Path: `The text is too long. Please see the template.`
⛔️Custom on fail: Discard value
The elapsed per-request time from the first byte received to the last byte sent to an Amazon S3 bucket.
This includes the time taken to receive the request body and send the response body, which is not included in FirstByteLatency.
Statistic: 90 percentile.
|Dependent item|aws.s3.total_request_latency.p90**Preprocessing**
JSON Path: `The text is too long. Please see the template.`
⛔️Custom on fail: Discard value
The maximum number of seconds by which the replication destination Region is behind the source Region for a given replication rule.
|Dependent item|aws.s3.replication_latency**Preprocessing**
JSON Path: `The text is too long. Please see the template.`
⛔️Custom on fail: Discard value
The total number of bytes of objects pending replication for a given replication rule.
|Dependent item|aws.s3.bytes_pending_replication**Preprocessing**
JSON Path: `The text is too long. Please see the template.`
⛔️Custom on fail: Discard value
The number of operations pending replication for a given replication rule.
|Dependent item|aws.s3.operations_pending_replication**Preprocessing**
JSON Path: `The text is too long. Please see the template.`
⛔️Custom on fail: Discard value
Discovery bucket alarms.
|Dependent item|aws.s3.alarms.discovery**Preprocessing**
JavaScript: `The text is too long. Please see the template.`
Discard unchanged with heartbeat: `3h`
An explanation for the alarm state, in text format.
Alarm description:
{#ALARM_DESCRIPTION}
|Dependent item|aws.s3.alarm.state_reason["{#ALARM_NAME}"]**Preprocessing**
JSON Path: `$.[?(@.AlarmName == "{#ALARM_NAME}")].StateReason.first()`
⛔️Custom on fail: Discard value
Discard unchanged with heartbeat: `3h`
The state value for the alarm. Possible values: 0 (OK), 1 (INSUFFICIENT_DATA), 2 (ALARM).
Alarm description:
{#ALARM_DESCRIPTION}
|Dependent item|aws.s3.alarm.state["{#ALARM_NAME}"]**Preprocessing**
JSON Path: `$.[?(@.AlarmName == "{#ALARM_NAME}")].StateValue.first()`
⛔️Custom on fail: Set value to: `3`
JavaScript: `The text is too long. Please see the template.`
Alarm "{#ALARM_NAME}" has 'Alarm' state.
Reason: {ITEM.LASTVALUE2}