feat: add Fastly billing plugin#78
Open
LZG3530606141 wants to merge 1 commit into
Open
Conversation
- Implement FastlyCostSource for ingesting Fastly CDN billing data - Fetch invoices via Fastly Billing v3 API with pagination support - Support detailed line items including product group, product line, usage type, region, units, and rate - Include API key authentication and rate limiting - Add unit tests for JSON unmarshalling and API response parsing - Add config validator - Follow OpenCost plugin architecture (hashicorp go-plugin) References: - Fastly Billing API: https://www.fastly.com/documentation/reference/api/account/billing/ - Issue: opencost#48 Signed-off-by: LZG3530606141 <3530606141@qq.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements Fastly billing plugin for OpenCost Plugins, as requested in #48.
What
Features
Fastly-Keyheader for authenticationImplementation Details
cmd/main/main.go- Main plugin implementationcmd/main/main_test.go- Unit testscmd/validator/main/main.go- Config validatorconfig/fastlyconfig.go- Configuration structfastlyplugin/fastlybilling.go- API response typesfastly_api_key(required),fastly_plugin_log_level(optional)Testing
Unit tests cover:
References
Closes #48
Signed-off-by: LZG3530606141 3530606141@qq.com