Skip to content

Commit 2b2a560

Browse files
feat: add AWS/QuickSight as supported service (#1477)
Co-authored-by: Cristian Greco <[email protected]>
1 parent a1cc092 commit 2b2a560

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ Only the latest version gets security updates. We won't support older versions.
108108
* `AWS/PrivateLinkServices` - VPC Endpoint Service
109109
* `AWS/Prometheus` - Managed Service for Prometheus
110110
* `AWS/QLDB` - Quantum Ledger Database
111+
* `AWS/QuickSight` - QuickSight (Business Intelligence)
111112
* `AWS/RDS` - Relational Database Service
112113
* `AWS/Redshift` - Redshift Database
113114
* `AWS/Route53` - Route53 Health Checks

examples/quicksight.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
apiVersion: v1alpha1
2+
discovery:
3+
jobs:
4+
- type: AWS/QuickSight
5+
regions:
6+
- eu-west-2
7+
period: 30000
8+
length: 30000
9+
metrics:
10+
- name: IngestionErrorCount
11+
statistics: [Sum]
12+
- name: IngestionRowCount
13+
statistics: [Sum]
14+
- name: IngestionInvocationCount
15+
statistics: [Sum]

pkg/config/services.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -719,6 +719,10 @@ var SupportedServices = serviceConfigs{
719719
regexp.MustCompile(":ledger/(?P<LedgerName>[^/]+)"),
720720
},
721721
},
722+
{
723+
Namespace: "AWS/QuickSight",
724+
Alias: "quicksight",
725+
},
722726
{
723727
Namespace: "AWS/RDS",
724728
Alias: "rds",

0 commit comments

Comments
 (0)