You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This uses the rs/cors package, which has been added to go.mod and
go.sum.
Updated the kubecost-exporter.md doc to explain that the prometheus URI
must be manually supplied.
Added the CLUSTER_ID env var to exporter.yaml.
Copy file name to clipboardexpand all lines: kubecost-exporter.md
+26-9
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Running Kubecost as a Prometheus metric exporter
2
2
3
-
Running Kubecost as a Prometheus metric exporter allows you to export various cost metrics to Prometheus without setting up any other Kubecost dependencies. Doing so lets you write PromQL queries to calculate the cost and efficiency of any Kubernetes concept, e.g. namespace, service, label, deployment, etc. You can also calculate the cost of different Kubernetes resources, e.g. nodes, PVs, LoadBalancers, and more. Finally, you can do other interesting things like create custom alerts via AlertManager and custom dashboards via Grafana.
3
+
Running Kubecost as a Prometheus metric exporter allows you to export various cost metrics to Prometheus without setting up any other Kubecost dependencies. Doing so lets you write PromQL queries to calculate the cost and efficiency of any Kubernetes concept, e.g. namespace, service, label, deployment, etc. You can also calculate the cost of different Kubernetes resources, e.g. nodes, PVs, LoadBalancers, and more. Finally, you can do other interesting things like create custom alerts via AlertManager and custom dashboards via Grafana.
4
4
5
5
## Installing
6
6
@@ -11,9 +11,26 @@ If you would prefer to not use the recommended install option and just deploy th
> If you want to use a namespace other than `cost-model`, you will have to edit the `ClusterRoleBinding` after applying the YAML to change `subjects[0].namespace`. You can do this with `kubectl edit clusterrolebinding cost-model`.
@@ -51,13 +68,13 @@ Done! Kubecost is now exporting cost metrics. See the following sections for dif
51
68
| container_cpu_allocation | Average number of CPUs requested over last 1m |
52
69
| container_memory_allocation_bytes | Average bytes of RAM requested over last 1m |
53
70
54
-
By default, all cost metrics are based on public billing APIs. See the Limitations section below about reflecting your precise billing information. Supported platforms are AWS, Azure, and GCP. For on-prem clusters, prices are based on configurable defaults.
71
+
By default, all cost metrics are based on public billing APIs. See the Limitations section below about reflecting your precise billing information. Supported platforms are AWS, Azure, and GCP. For on-prem clusters, prices are based on configurable defaults.
55
72
56
73
More metrics are available in the recommended install path and are described in [PROMETHEUS.md](PROMETHEUS.md).
57
74
58
75
## Dashboard examples
59
76
60
-
Here’s an example dashboard using Kubecost Prometheus metrics:
77
+
Here’s an example dashboard using Kubecost Prometheus metrics:
@@ -98,7 +115,7 @@ avg(avg_over_time(node_ram_hourly_cost[1d] )) by (node)
98
115
99
116
## Setting Cost Alerts
100
117
101
-
Custom cost alerts can be implemented with a set of Prometheus queries and can be used for alerting with AlertManager or Grafana alerts. Below are example alerting rules.
118
+
Custom cost alerts can be implemented with a set of Prometheus queries and can be used for alerting with AlertManager or Grafana alerts. Below are example alerting rules.
102
119
103
120
#### Determine in real-time if the monthly cost of all nodes is > $1000
104
121
@@ -114,4 +131,4 @@ Running Kubecost in exporter-only mode by definition limits functionality. The f
114
131
- For large clusters, these Prometheus queries might not scale well over large time windows. We recommend using [Kubecost APIs](https://github.com/kubecost/docs/blob/master/apis.md) for these scenarios.
115
132
- Allocation metrics, like `container_cpu_allocation` only contain _requests_ and do not take usage into account.
116
133
- Related to the previous point, efficiency metrics are not available.
117
-
- Public billing costs on default. The standard Kubecost install and a cloud integration gives you accurate pricing based on your bill.
134
+
- Public billing costs on default. The standard Kubecost install and a cloud integration gives you accurate pricing based on your bill.
0 commit comments