Skip to main content

Custom Providers

With the Custom Provider integration option in Vantage, you can upload costs from providers that don’t expose billing APIs, aren’t yet supported by Vantage, or originate from custom systems. You can import costs by providing any CSV that adheres to the schema described below or through the Vantage API. If Vantage eventually provides support for one of your Custom Providers, you will be able to set up the official provider integration alongside your Custom Provider.

FinOps FOCUS Schema

FOCUS is an open-source schema that standardizes cost and usage billing data across different cloud providers. When you add a Custom Provider in Vantage, you use a CSV template format that is a subset of the FOCUS schema. The fields in this template provide enough detail for Vantage to correctly render costs and perform cost allocation. With just the minimum required fields, Custom Provider costs are available with other Vantage features, such as anomaly alerts, report notifications, and forecasting. See the explainer video below for an introduction to this feature and how FinOps FOCUS is used.

Review CSV Format

To create a Custom Provider in Vantage, create a CSV file for your data that uses the following format. Add your provider’s cost and usage data to the file. Note that there is a maximum of 10,000 rows and a file size of 2MB allowed. Each time that you upload additional cost data, you will need to create a separate CSV file for that new dataset.

ChargePeriodStart,ChargeCategory,BilledCost,ResourceId,ResourceType,RegionId,ServiceCategory,ServiceName,Tags
2021-01-01,Usage,1.23,resource-id-1,cost_sub_category-1,us-east-1,service-category-1,service-name-1,"{""tag1"":""value1"",""tag2"":""value2""}"

Only the following fields are required:

  • ChargeCategory
  • ChargePeriodStart
  • BilledCost
  • ServiceName
note

If you want to upload amortized costs, then ChargePeriodEnd is also required.

Data Format

The following table provides details for each field within the template, as well as their Vantage representation on reports.

Column NameRequiredVantage RepresentationData TypeFOCUS Column ID & LinkExamples
ChargeCategoryNoCharge Type filter and grouping optionValid values are case-sensitive and include:
  • Credit
  • Refund
  • Discount
  • Tax
  • Usage
ChargeCategoryUsage
ChargePeriodStartYesStart date of cost periodDate in YYYY-MM-DD or ISO 8601 formatChargePeriodStart2024-08-25
ChargePeriodEndOnly for amortized costsEnd date of cost periodDate in YYYY-MM-DD or ISO 8601 formatChargePeriodEnd2024-08-25
BilledCostYesCost that’s displayedPositive or negative number values accepted; dollar signs and decimal values are also acceptable

All costs are considered to be in USD
BilledCost1245 or -456 or $1.23 or -$1.23
RegionIdNoRegion filter and grouping optionAlphanumericRegionIdus-east-1
ResourceIdNoResource filter and grouping optionAlphanumericResourceIdtask/3 or 123456
ResourceTypeNoSubcategory filter and grouping optionAlphanumericResourceTypeLarge
ServiceCategoryNoCategory filter and grouping optionAlphanumericServiceCategoryTask
ServiceNameYesService filter and grouping optionAlphanumericServiceNameCompute
TagsNoTags filter and grouping optionValid JSON object; array of key/value pairsTags"{""env"":""production""}" for one tag

"{""env"":""prod"",""env"":""dev""}" for multiple tags

Upload Custom Provider File

Custom Provider files can be uploaded at any time in the console. The above schema adds a timestamp based on the ChargePeriodStart column, so Vantage can place the data in the correct relationship to other costs under a Custom Provider.

note

Users must have Owner permissions to upload Custom Provider files. If you prefer to use the API rather than the Vantage console, see the API section below.

  1. Navigate to the Integrations page in Vantage.

  2. Select Custom Provider. (If you have already added a Custom Provider and are adding another one, ensure you are on the Connect tab.)

  3. Click Select a File and upload your formatted CSV file.

  4. Click Upload Costs.

    1. If your CSV file contains any errors, the Review pop-up window is displayed and indicates where the error occurred. See the Troubleshooting section for details on specific errors.
      Click to view example image
      Error screen for Custom Provider
    2. For error-free files, a message is displayed that indicates your file is okay. Click Review to see the first 25 rows of uploaded data.
      Click to view example image
      Error-free Custom Provider upload
    tip

    You can click Select a File again if you accidentally uploaded the wrong file.

  5. Enter a Name for your Custom Provider. This is the name that will be displayed in report filters. Optionally, enter a Description.

  6. Click Create Custom Provider Integration.

  7. The Manage integration screen is displayed. Initially, the message Importing and Processing will be displayed on this screen. You can click the Import Costs tab if you want to upload additional cost files.

    Click to view example image
    File is processing to be uploaded
  8. Once your Custom Provider is processed, in the Workspace Access section of this screen, select which workspaces this integration is associated with. See the Workspaces documentation for more information.

Costs will be ingested and processed as soon as you add the integration. It usually takes less than 15 minutes to ingest Custom Provider costs. Once costs are processed, they will be available on your All Resources Cost Report. Vantage aggregates uploaded Custom Provider costs to a daily level.

Troubleshoot Custom Provider Uploads

When you upload a file that contains errors, the Review window displayed and shows the rows where errors were identified. The first 25 rows are displayed. If you have an error in a row that’s not one of the first 25 rows, that row will be displayed at the top, along with all other errors. Some common errors are noted below.

IssueDescriptionSolution
Improper CSV formatThe file format is not a valid CSV or exceeds the 10,000-row limit or 2MB file size max.Ensure the file is a properly formatted CSV, with no more than 10,000 rows or 2MB in size.
Missing required fieldsOne or more required fields (ChargeCategory, ChargePeriodStart, BilledCost, ServiceName) are missing or improperly formatted.

An error message noting which rows are missing required field values will be displayed in the Review window.
Verify that all required fields are present and correctly formatted. See the CSV Format section for details.
Invalid valuesThe file contains invalid values, such as incorrect date formats, invalid numbers, tags that are not formatted as JSON or have missing quotes, or incorrect case-sensitive values for ChargeCategory.

An error message noting which rows contain invalid values will be displayed in the Review window.
Double-check the data in your CSV to ensure dates are in YYYY-MM-DD format, numbers are valid, and ChargeCategory values match the allowed case-sensitive options (e.g., Usage, Credit). See the Data Format table for details.
Improper Vantage permissionsThe user attempting the upload does not have the proper permissions.Ensure you have Owner permissions to upload Custom Provider files. See the Role-Based Access Control documentation for details.
Duplicate file namesYou attempt to upload a new costs import file that has the same name as a previous costs upload file. An error message is displayed indicating you already have a file uploaded with the same name. The new file will overwrite the old file.Ensure each CSV file that you upload is named something different (e.g., cloudflare_costs_8_2024, cloudflare_costs_9_2024).

Steps to Resolve File Issues

  1. After you’ve identified the issues, reopen your CSV file, correct the errors, and save.
  2. On the Custom Provider upload screen, close the Review window, click Select a File, and upload the corrected version of your CSV file.
  3. After a successful upload, a confirmation message is displayed. You can click Review to verify the first 25 rows of your uploaded data to ensure accuracy.
  4. Follow steps 5–8 in the Upload Custom Provider File section to complete the upload process.

View Custom Provider Costs in Vantage

Once you have uploaded Custom Provider costs, you can query these costs in other Vantage tools. Your Custom Provider will be included in the Providers list of filters on Cost Reports, Segment Reports, and Saved Filters.

Cost Report for custom provider

If you did not provide any information for a particular filter (e.g., RegionId), then those filters will be displayed as empty.

Cost Report for custom provider with no region filter

Add Additional Imports

After the initial costs import, you can add additional cost imports.

Important

If you upload a file with the same name as an existing import, your new file will overwrite the original file. Ensure you have different names for each file upload (e.g., cloudflare_costs_8_2024, cloudflare_costs_9_2024).

  1. Navigate to the Integrations page.
  2. Select your Custom Provider.
    Click to view example image
    Manage screen for custom provider
  3. Click the Import Costs tab. Import your new cost file. Review any errors and correct as needed. Once uploaded, your file will be displayed within the Imports section of the Manage tab.

Delete Imported Files

If you want to delete an imported file, the costs will be removed from your Custom Provider.

  1. Navigate to the Integrations page.
  2. Select your Custom Provider.
  3. In the Imports section of the Manage tab, you can view existing imports along with the date the file was imported and who imported the file. Click the trashcan icon next to an import to remove it. If you delete a CSV, the corresponding data will be deleted from the provider.
    Click to view example image
    Import section for custom provider

Use the API to Add a Custom Provider

tip

To reference a Custom Provider in VQL queries, navigate to the Integrations page. Use the displayed Provider ID (e.g., custom_provider:accss_crdntl_123a45bfdaf38765).

You can also use the API to create and upload costs for a Custom Provider.

  1. Send a POST request to the /integrations/custom_provider endpoint to create the Custom Provider.

    curl --request POST \
    --url https://api.vantage.sh/v2/integrations/custom_provider \
    --header 'accept: application/json' \
    --header 'authorization: Bearer AUTH_TOKEN' \
    --header 'content-type: application/json' \
    --data '
    {
    "name": "My Custom Provider",
    "description": "Costs for this provider"
    }
    '
  2. On a successful 200 response, a Custom Provider token is returned.

    {
    "token": "<CUSTOM_PROVIDER_TOKEN>",
    "provider": "custom_costs",
    "account_identifier": "My Custom Provider from the API",
    "status": "connected",
    "workspace_tokens": [],
    "created_at": "2024-08-26T14:04:17Z"
    }
  3. Use the token to upload a CSV file via the /integrations/{integration_token}/costs.csv endpoint.

    curl --request POST \
    --url https://api.vantage.sh/v2/integrations/<CUSTOM_PROVIDER_TOKEN>/costs.csv \
    --header 'accept: application/json' \
    --header 'authorization: Bearer TOKEN' \
    --header 'content-type: multipart/form-data' \
    --form csv='@vendor_costs.csv'
  4. If there are any errors, the following 422 response is returned. Fix the errors in your CSV, and upload a new file.

    {
    "errors": [
    "Row 1: ChargeCategory must be one of the following: Credit, Discount, Fee, Refund, Tax, or Usage",
    "Row 22: Tags must be a valid JSON object",
    "Row 27: BilledCost must be a valid number",
    "Row 31: ChargePeriodStart must be a valid date"
    ]
    }