nerdswords / yet-another-cloudwatch-exporter

Prometheus exporter for AWS CloudWatch - Discovers services through AWS tags, gets CloudWatch metrics data and provides them as Prometheus metrics with AWS tags as labels
Apache License 2.0
953 stars 328 forks source link

feat: add AWS/AppRunner as supported service #1433

Closed fabiiw05 closed 2 months ago

fabiiw05 commented 2 months ago

I have confirmed that it can be retrieved using the following configuration.

apiVersion: v1alpha1
discovery:
  jobs:
  - regions:
    - us-east-1
    period: 300
    length: 300
    type: AWS/AppRunner
    metrics:
      - name: MemoryUtilization
        statistics: [Average, Maximum]
      - name: CPUUtilization
        statistics: [Average, Maximum]
      - name: 2xxStatusResponses
        statistics: [Sum]
      - name: Requests
        statistics: [Sum]
      - name: RequestLatency
        statistics: [Average]
      - name: ActiveInstances
        statistics: [Maximum]
      - name: 4xxStatusResponses
        statistics: [Sum]
      - name: Concurrency
        statistics: [Maximum]

スクリーンショット 2024-06-05 15 10 04