opencost / opencost-plugins

Plugins for extending OpenCost with new Custom Cost Sources
Apache License 2.0
10 stars 7 forks source link

OpenCost Plugins

OpenCost plugins make extending OpenCost’s coverage into new external cost sources (e.g. monitoring, data platforms, cloud services, and other SaaS solutions) available to the open source community. They allow for the ingestion of arbitrary cost data into OpenCost through conformance to the FOCUS spec.

How plugins work

Any plugin released within this repository can be deployed alongside OpenCost. When deployed, OpenCost will query all installed plugins with a request for the following:

The plugins are expected to return a response that conforms to the aforementioned FOCUS spec for the given window and resolution. OpenCost will then store the response, and continue to request data for further time ranges.

The FOCUS spec is broken up into two parts:

See this ExcaliDraw diagram for a more details overview of the plugin system

Creating a new plugin

At the most basic level, all a plugin needs to do is gather cost data given a time window and resolution. The logistics of this are straightforward, but the complexity of the implementation will depend on the data source in question.

Plugin setup

Design the configuration

All plugins require a configuration. For example, the Datadog plugin configuration takes in some information required to authenticate with the Datadog API. This configuration will be defined by a struct inside <repo>/<plugin>/<plugin>plugin/.

Implement the plugin

Once the configuration is designed, it's time to write the plugin. Within <repo>/<plugin>/cmd/main/>, create main.go:

Implement tests (highly recommended)

Write some unit tests to validate the functionality of your new plugin. See the Datadog unit tests for reference.

Add your plugin to the manifest

Add a new line to the opencost-plugins manifest containing the name of your new plugin. This manifest is used to automatically retrieve the list of available OpenCost plugins.

Submit it!

Now that your plugin is implemented and tested, all that's left is to get it submitted for review. Create a PR based off your branch and submit it, and an OpenCost developer will review it for you.

Plugin system limitations