Skip to content

Commit 4dfe2cf

Browse files
committed
Added CORS headers to cmd/costmodel/main.go.
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.
1 parent 5e37d2f commit 4dfe2cf

File tree

5 files changed

+35
-11
lines changed

5 files changed

+35
-11
lines changed

cmd/costmodel/main.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"github.com/kubecost/cost-model/pkg/costmodel"
88
"github.com/kubecost/cost-model/pkg/errors"
99
"github.com/prometheus/client_golang/prometheus/promhttp"
10+
"github.com/rs/cors"
1011
"k8s.io/klog"
1112
)
1213

@@ -23,5 +24,6 @@ func main() {
2324
a.Router.GET("/healthz", Healthz)
2425
rootMux.Handle("/", a.Router)
2526
rootMux.Handle("/metrics", promhttp.Handler())
26-
klog.Fatal(http.ListenAndServe(":9003", errors.PanicHandlerMiddleware(rootMux)))
27+
handler := cors.AllowAll().Handler(rootMux)
28+
klog.Fatal(http.ListenAndServe(":9003", errors.PanicHandlerMiddleware(handler)))
2729
}

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ require (
2626
github.com/patrickmn/go-cache v2.1.0+incompatible
2727
github.com/prometheus/client_golang v1.0.0
2828
github.com/prometheus/client_model v0.2.0
29+
github.com/rs/cors v1.7.0 // indirect
2930
github.com/satori/go.uuid v1.2.0 // indirect
3031
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 // indirect
3132
go.etcd.io/bbolt v1.3.5

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -397,6 +397,8 @@ github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R
397397
github.com/prometheus/procfs v0.0.2 h1:6LJUbpNm42llc4HRCuvApCSWB/WfhuNo9K98Q9sNGfs=
398398
github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
399399
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
400+
github.com/rs/cors v1.7.0 h1:+88SsELBHx5r+hZ8TCkggzSstaWNbDvThkVK8H6f9ik=
401+
github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU=
400402
github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g=
401403
github.com/ryanuber/columnize v2.1.0+incompatible/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts=
402404
github.com/satori/go.uuid v1.2.0 h1:0uYX9dsZ2yD7q2RtLRtPSdGDWzjeM3TbMJP9utgA0ww=

kubecost-exporter.md

+26-9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Running Kubecost as a Prometheus metric exporter
22

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.
44

55
## Installing
66

@@ -11,9 +11,26 @@ If you would prefer to not use the recommended install option and just deploy th
1111

1212
1. Apply the combined YAML:
1313

14-
```
15-
kubectl apply -f https://raw.githubusercontent.com/kubecost/cost-model/develop/kubernetes/exporter/exporter.yaml --namespace cost-model
16-
```
14+
1.a.
15+
16+
```
17+
wget https://raw.githubusercontent.com/kubecost/cost-model/develop/kubernetes/exporter/exporter.yaml
18+
```
19+
20+
1.b.
21+
On the line
22+
23+
```
24+
value: "{{prometheusEndpoint}}" # The endpoint should have the form http://<service-name>.<namespace-name>.svc
25+
```
26+
27+
of `exporter.yaml`, substitute your own Prometheus URI for `{{prometheusEndpoint}}`
28+
29+
1.c.
30+
31+
```
32+
kubectl apply -f exporter.yaml --namespace cost-model
33+
```
1734
1835
> 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`.
1936
@@ -38,7 +55,7 @@ Add Kubecost scrape config to Prom ([more info](https://prometheus.io/docs/intro
3855
3956
Done! Kubecost is now exporting cost metrics. See the following sections for different metrics available and query examples.
4057
41-
## Available Prometheus Metrics
58+
## Available Prometheus Metrics
4259
4360
| Metric | Description |
4461
| ------------ | ------------------------------------------------------------------------------------------------------ |
@@ -51,13 +68,13 @@ Done! Kubecost is now exporting cost metrics. See the following sections for dif
5168
| container_cpu_allocation | Average number of CPUs requested over last 1m |
5269
| container_memory_allocation_bytes | Average bytes of RAM requested over last 1m |
5370
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.
5572
5673
More metrics are available in the recommended install path and are described in [PROMETHEUS.md](PROMETHEUS.md).
5774
5875
## Dashboard examples
5976
60-
Here’s an example dashboard using Kubecost Prometheus metrics:
77+
Here’s an example dashboard using Kubecost Prometheus metrics:
6178
6279
![sample dashboard](https://grafana.com/api/dashboards/8670/images/5480/image)
6380
@@ -98,7 +115,7 @@ avg(avg_over_time(node_ram_hourly_cost[1d] )) by (node)
98115
99116
## Setting Cost Alerts
100117
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.
102119
103120
#### Determine in real-time if the monthly cost of all nodes is > $1000
104121
@@ -114,4 +131,4 @@ Running Kubecost in exporter-only mode by definition limits functionality. The f
114131
- 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.
115132
- Allocation metrics, like `container_cpu_allocation` only contain _requests_ and do not take usage into account.
116133
- 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.

kubernetes/exporter/exporter.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -152,9 +152,11 @@ spec:
152152
memory: "55M"
153153
env:
154154
- name: PROMETHEUS_SERVER_ENDPOINT
155-
value: "{{prometheusEndpoint}}" #The endpoint should have the form http://<service-name>.<namespace-name>.svc
155+
value: "{{prometheusEndpoint}}" # The endpoint should have the form http://<service-name>.<namespace-name>.svc
156156
- name: CLOUD_PROVIDER_API_KEY
157157
value: "AIzaSyD29bGxmHAVEOBYtgd8sYM2gM2ekfxQX4U" # The GCP Pricing API requires a key. This is supplied just for evaluation.
158+
- name: CLUSTER_ID
159+
value: "cluster-one" # Default cluster ID to use if cluster_id is not set in Prometheus metrics.
158160
imagePullPolicy: Always
159161

160162
---

0 commit comments

Comments
 (0)