-
Notifications
You must be signed in to change notification settings - Fork 13
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
Add accounting #5
Comments
This comment was marked as outdated.
This comment was marked as outdated.
@nitilpoddar JS will not be necessary for this project. FaaSKeeper cost is based on three components: Lambda runtimes, queue operations, and database access cost. What we want to is to be able to run a program using FaaSKeeper, and then estimate their costs. In all functions, we already gather storage use statistics, and we use it in functions to count how often we update the storage. We also use this structure in What we want to do is to implement a method in the client library that would parse Lambda logs, extract storage logs, add this to the data accesses done on the client side, and export it. I think the best way to start is to deploy FaasKeeper, run few updates, look at Lambda logs and see what data needs to be extracted. Then, you can look into |
Hello, @mcopik I tried making an AWS account specifically to learn about this project but failed because my debit card provider is not yet accepted by AWS. I am sorry I wasted your time. If possible can you point me to a beginner-friendly project to which I could contribute? |
@nitilpoddar No worries :-) I'm sad to hear that the free account will not work for you. So there's another opportunity that we explored in the past, but it didn't work as expected - I opened issue #25. You can start working with the serverless offline framework and report progress there. |
We need an accounting system to easily conduct benchmarks.
The text was updated successfully, but these errors were encountered: