Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[QUESTION] How does this save cost? #1

Open
Jks08 opened this issue Sep 4, 2023 · 1 comment
Open

[QUESTION] How does this save cost? #1

Jks08 opened this issue Sep 4, 2023 · 1 comment

Comments

@Jks08
Copy link

Jks08 commented Sep 4, 2023

I want to understand how your solution is more cost effective compared to exporters like YACE and CloudWatch Exporter because if I have over a million metrics per day, the cost of Kinesis data firehose and that of Lambda will be a lot. I ask this because I am currently having issues managing my cost when I use YACE and CloudWatch Exporter.

Any and all help is appreciated.
Thank you.

@evilr00t
Copy link
Member

Hi @Jks08,

Sorry for no reply for a long time - didn't see it.

We've made another revision of this lambda service. Now you can specify what metrics you're interested in.

i.e:

included_filters = [
    # specific metrics
	{
      namespace    = "AWS/SQS",
      metric_names = ["ApproximateNumberOfMessagesVisible", "AgeOfOldestMessage", "NumberOfMessagesDeleted"],
    }
	# all metrics
    {
      namespace    = "AWS/Kinesis",
      metric_names = []
    }

With this approach we've noticed a drop in the cost with previous revision of around 30-40%.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants