feat: add GitHub Billing plugin#80
Open
LZG3530606141 wants to merge 1 commit into
Open
Conversation
- Implement GitHubBillingCostSource for ingesting GitHub billing data - Fetch usage billing via GitHub Billing REST API - Fetch premium request usage (Copilot) via Premium Request API - Support Bearer token authentication with GitHub API - Map GitHub billing fields to FOCUS spec including product, SKU, repository name, organization, unit type, price per unit - Include both gross and net amounts with discount tracking - Add rate limiting for GitHub API (5000 req/hr) - Add unit tests for JSON unmarshalling - Add config validator - Follow OpenCost plugin architecture (hashicorp go-plugin) References: - GitHub Billing API: https://docs.github.com/en/rest/billing/usage - Issue: opencost#42 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 GitHub Billing plugin for OpenCost Plugins, as requested in #42.
What
Features
/organizations/{org}/settings/billing/usage/organizations/{org}/settings/billing/premium_request/usageImplementation Details
cmd/main/main.go- Main plugin implementationcmd/main/main_test.go- Unit testscmd/validator/main/main.go- Config validatorconfig/githubbillingconfig.go- Configuration structgithubbillingplugin/githubbilling.go- API response typesgithub_api_token(required),github_organization(required),github_billing_plugin_log_level(optional)Testing
Unit tests cover:
References
Closes #42
Signed-off-by: LZG3530606141 3530606141@qq.com