Skip to content

Commit

Permalink
feat: add AWS/QuickSight as supported service (#1477)
Browse files Browse the repository at this point in the history
Co-authored-by: Cristian Greco <[email protected]>
  • Loading branch information
choppedpork and cristiangreco authored Aug 30, 2024
1 parent a1cc092 commit 2b2a560
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ Only the latest version gets security updates. We won't support older versions.
* `AWS/PrivateLinkServices` - VPC Endpoint Service
* `AWS/Prometheus` - Managed Service for Prometheus
* `AWS/QLDB` - Quantum Ledger Database
* `AWS/QuickSight` - QuickSight (Business Intelligence)
* `AWS/RDS` - Relational Database Service
* `AWS/Redshift` - Redshift Database
* `AWS/Route53` - Route53 Health Checks
Expand Down
15 changes: 15 additions & 0 deletions examples/quicksight.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
apiVersion: v1alpha1
discovery:
jobs:
- type: AWS/QuickSight
regions:
- eu-west-2
period: 30000
length: 30000
metrics:
- name: IngestionErrorCount
statistics: [Sum]
- name: IngestionRowCount
statistics: [Sum]
- name: IngestionInvocationCount
statistics: [Sum]
4 changes: 4 additions & 0 deletions pkg/config/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -719,6 +719,10 @@ var SupportedServices = serviceConfigs{
regexp.MustCompile(":ledger/(?P<LedgerName>[^/]+)"),
},
},
{
Namespace: "AWS/QuickSight",
Alias: "quicksight",
},
{
Namespace: "AWS/RDS",
Alias: "rds",
Expand Down

0 comments on commit 2b2a560

Please sign in to comment.