Skip to content

Commit

Permalink
feat(tag-filtering): enable tag filtering metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel committed Nov 9, 2024
1 parent 2a34ea2 commit 83de97e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions app/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@

class MetricExporter:
def __init__(
self,
polling_interval_seconds,
metric_name,
aws_access_key,
aws_access_secret,
aws_assumed_role_name,
group_by,
targets,
metric_type,
tag_filters=None, # Added tag_filters parameter
self,
polling_interval_seconds,
metric_name,
aws_access_key,
aws_access_secret,
aws_assumed_role_name,
group_by,
targets,
metric_type,
tag_filters=None, # Added tag_filters parameter
):
self.polling_interval_seconds = polling_interval_seconds
self.metric_name = metric_name
Expand Down

0 comments on commit 83de97e

Please sign in to comment.