Repair Kubecost ETLs
Kubecost's extract, transform, load (ETL) files are a computed cache built upon Prometheus metrics and cloud billing data, from which nearly all API requests made by the user and the Kubecost frontend currently rely upon. The ETL data is stored in a PersistentVolume
mounted to the kubecost-cost-analyzer
pod. In most multicluster environments, the ETL data is also pushed to object storage.
When should you repair ETL data
There are numerous reasons why you may need to repair ETL data. Please reach out to Kubecost Support for further guidance. The following conditions are cases in which repairing ETL data may help, but may not be the root cause of the issue:
If Kubecost is not showing data for a specific time window
If Kubecost's Assets data for a specific cluster is incorrect
If Kubecost's Allocation data for a specific cluster is incorrect
In an enterprise multi-cluster environment, each individual Kubecost deployment builds its own ETL data before pushing it to the bucket. Therefore to repair data from an affected cluster, you must port-forward to that cluster's Kubecost deployment then run the repair command. After a repair has been completed on any cluster in your environment, the Kubecost Aggregator will detect that the ETL file has been recently modified, and ingest the new data into its database.
Remember that ETL files are computed based on Prometheus metrics. Before repairing ETL files, please confirm that your Prometheus server is still retaining metrics for the dates you are aiming to repair. .Values.prometheus.server.retention
.
1. Repair Asset ETL
The Asset ETL builds upon the Prometheus metrics listed here. It's important to ensure that you are able to query for Prometheus data for the specified window
you use. Otherwise, an absence of metrics will result in an empty ETL.
If the window
parameter is within .Values.kubecostModel.etlHourlyStoreDurationHours
, this endpoint will repair both the daily [1d]
and hourly [1h]
Asset ETL.
2. Repair Allocation ETL
The Allocation ETL builds upon all previous Asset data to compute cost and resource allocations for Kubernetes entities. Read our Kubecost Diagnostics doc for more info.
If the window
parameter is within .Values.kubecostModel.etlHourlyStoreDurationHours
, this endpoint will repair both the daily [1d]
and hourly [1h]
Allocation ETL.
3. Repair CloudCost ETL
The CloudCost ETL pulls information from your cloud billing integration. Ensure it's been configured properly, otherwise, no data will be retrieved. Review our Cloud Billing Integrations doc for more info.
Troubleshooting
Repairing ETL by port-forwarding
In this doc, we reference repairs using the https://kubecost.your.com
URL. If that is not accessible to you, you can instead port-forward to the kubecost-cost-analyzer
pod and use localhost
.
Method 1:
Method 2:
Error messages
If the ETL data looks incorrect, or you see one of the following error messages, there are several things to check:
Verify that Prometheus metrics exist consistently during the time window you wish to repair
For installs using Prometheus verify retention is long enough to meet the requested repair window.
.Values.prometheus.server.retention
.
Last updated