| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 |
- package main
- import (
- "context"
- "encoding/json"
- "flag"
- "net/http"
- "os"
- "strconv"
- "time"
- "k8s.io/klog"
- "github.com/julienschmidt/httprouter"
- costAnalyzerCloud "github.com/kubecost/cost-model/cloud"
- costModel "github.com/kubecost/cost-model/costmodel"
- prometheusClient "github.com/prometheus/client_golang/api"
- prometheusAPI "github.com/prometheus/client_golang/api/prometheus/v1"
- "github.com/prometheus/client_golang/prometheus"
- "github.com/prometheus/client_golang/prometheus/promhttp"
- "k8s.io/client-go/kubernetes"
- "k8s.io/client-go/rest"
- )
- type Accesses struct {
- PrometheusClient prometheusClient.Client
- KubeClientSet kubernetes.Interface
- Cloud costAnalyzerCloud.Provider
- CPUPriceRecorder *prometheus.GaugeVec
- RAMPriceRecorder *prometheus.GaugeVec
- NodeTotalPriceRecorder *prometheus.GaugeVec
- RAMAllocationRecorder *prometheus.GaugeVec
- CPUAllocationRecorder *prometheus.GaugeVec
- }
- type DataEnvelope struct {
- Code int `json:"code"`
- Status string `json:"status"`
- Data interface{} `json:"data"`
- Message string `json:"message,omitempty"`
- }
- func wrapData(data interface{}, err error) []byte {
- var resp []byte
- if err != nil {
- resp, _ = json.Marshal(&DataEnvelope{
- Code: 500,
- Status: "error",
- Message: err.Error(),
- Data: data,
- })
- } else {
- resp, _ = json.Marshal(&DataEnvelope{
- Code: 200,
- Status: "success",
- Data: data,
- })
- }
- return resp
- }
- // RefreshPricingData needs to be called when a new node joins the fleet, since we cache the relevant subsets of pricing data to avoid storing the whole thing.
- func (a *Accesses) RefreshPricingData(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
- w.Header().Set("Content-Type", "application/json")
- w.Header().Set("Access-Control-Allow-Origin", "*")
- err := a.Cloud.DownloadPricingData()
- w.Write(wrapData(nil, err))
- }
- func (a *Accesses) CostDataModel(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
- w.Header().Set("Content-Type", "application/json")
- w.Header().Set("Access-Control-Allow-Origin", "*")
- window := r.URL.Query().Get("timeWindow")
- data, err := costModel.ComputeCostData(a.PrometheusClient, a.KubeClientSet, a.Cloud, window)
- w.Write(wrapData(data, err))
- }
- func (a *Accesses) CostDataModelRange(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
- w.Header().Set("Content-Type", "application/json")
- w.Header().Set("Access-Control-Allow-Origin", "*")
- start := r.URL.Query().Get("start")
- end := r.URL.Query().Get("end")
- window := r.URL.Query().Get("window")
- data, err := costModel.ComputeCostDataRange(a.PrometheusClient, a.KubeClientSet, a.Cloud, start, end, window)
- w.Write(wrapData(data, err))
- }
- func (p *Accesses) GetAllNodePricing(w http.ResponseWriter, r *http.Request, ps httprouter.Params) {
- w.Header().Set("Content-Type", "application/json")
- w.Header().Set("Access-Control-Allow-Origin", "*")
- data, err := p.Cloud.AllNodePricing()
- w.Write(wrapData(data, err))
- }
- func Healthz(w http.ResponseWriter, _ *http.Request, _ httprouter.Params) {
- w.WriteHeader(200)
- w.Header().Set("Content-Length", "0")
- w.Header().Set("Content-Type", "text/plain")
- }
- func (a *Accesses) recordPrices() {
- go func() {
- for {
- klog.V(3).Info("Recording prices...")
- data, err := costModel.ComputeCostData(a.PrometheusClient, a.KubeClientSet, a.Cloud, "1m")
- if err != nil {
- klog.V(1).Info("Error in price recording: " + err.Error())
- // zero the for loop so the time.Sleep will still work
- data = map[string]*costModel.CostData{}
- }
- for _, costs := range data {
- nodeName := costs.NodeName
- node := costs.NodeData
- if node == nil {
- klog.V(3).Infof("Skipping Node \"%s\" due to missing Node Data costs", nodeName)
- continue
- }
- cpuCost, _ := strconv.ParseFloat(node.VCPUCost, 64)
- cpu, _ := strconv.ParseFloat(node.VCPU, 64)
- ramCost, _ := strconv.ParseFloat(node.RAMCost, 64)
- ram, _ := strconv.ParseFloat(node.RAMBytes, 64)
- totalCost := cpu*cpuCost + ramCost*(ram/1024/1024/1024)
- a.CPUPriceRecorder.WithLabelValues(nodeName).Set(cpuCost)
- a.RAMPriceRecorder.WithLabelValues(nodeName).Set(ramCost)
- a.NodeTotalPriceRecorder.WithLabelValues(nodeName).Set(totalCost)
- namespace := costs.Namespace
- podName := costs.PodName
- containerName := costs.Name
- if len(costs.RAMAllocation) > 0 {
- a.RAMAllocationRecorder.WithLabelValues(namespace, podName, containerName, nodeName).Set(costs.RAMAllocation[0].Value)
- }
- if len(costs.CPUAllocation) > 0 {
- a.CPUAllocationRecorder.WithLabelValues(namespace, podName, containerName, nodeName).Set(costs.CPUAllocation[0].Value)
- }
- }
- time.Sleep(time.Minute)
- }
- }()
- }
- func main() {
- klog.InitFlags(nil)
- flag.Set("v", "3")
- flag.Parse()
- address := os.Getenv("PROMETHEUS_SERVER_ENDPOINT")
- if address == "" {
- klog.Fatal("No address for prometheus set. Aborting.")
- }
- pc := prometheusClient.Config{
- Address: address,
- }
- promCli, _ := prometheusClient.NewClient(pc)
- api := prometheusAPI.NewAPI(promCli)
- _, err := api.Config(context.Background())
- if err != nil {
- klog.Fatal("Failed to use Prometheus at " + address + " Error: " + err.Error())
- }
- klog.V(1).Info("Checked prometheus endpoint: " + address)
- // Kubernetes API setup
- kc, err := rest.InClusterConfig()
- if err != nil {
- panic(err.Error())
- }
- kubeClientset, err := kubernetes.NewForConfig(kc)
- if err != nil {
- panic(err.Error())
- }
- cloudProviderKey := os.Getenv("CLOUD_PROVIDER_API_KEY")
- cloudProvider, err := costAnalyzerCloud.NewProvider(kubeClientset, cloudProviderKey)
- if err != nil {
- panic(err.Error())
- }
- cpuGv := prometheus.NewGaugeVec(prometheus.GaugeOpts{
- Name: "node_cpu_hourly_cost",
- Help: "node_cpu_hourly_cost cost for each cpu on this node",
- }, []string{"instance"})
- ramGv := prometheus.NewGaugeVec(prometheus.GaugeOpts{
- Name: "node_ram_hourly_cost",
- Help: "node_ram_hourly_cost cost for each gb of ram on this node",
- }, []string{"instance"})
- totalGv := prometheus.NewGaugeVec(prometheus.GaugeOpts{
- Name: "node_total_hourly_cost",
- Help: "node_total_hourly_cost Total node cost per hour",
- }, []string{"instance"})
- RAMAllocation := prometheus.NewGaugeVec(prometheus.GaugeOpts{
- Name: "container_memory_allocation_bytes",
- Help: "container_memory_allocation_bytes Bytes of RAM used",
- }, []string{"namespace", "pod", "container", "instance"})
- CPUAllocation := prometheus.NewGaugeVec(prometheus.GaugeOpts{
- Name: "container_cpu_allocation",
- Help: "container_cpu_allocation Percent of a single CPU used in a minute",
- }, []string{"namespace", "pod", "container", "instance"})
- prometheus.MustRegister(cpuGv)
- prometheus.MustRegister(ramGv)
- prometheus.MustRegister(totalGv)
- prometheus.MustRegister(RAMAllocation)
- prometheus.MustRegister(CPUAllocation)
- a := Accesses{
- PrometheusClient: promCli,
- KubeClientSet: kubeClientset,
- Cloud: cloudProvider,
- CPUPriceRecorder: cpuGv,
- RAMPriceRecorder: ramGv,
- NodeTotalPriceRecorder: totalGv,
- RAMAllocationRecorder: RAMAllocation,
- CPUAllocationRecorder: CPUAllocation,
- }
- err = a.Cloud.DownloadPricingData()
- if err != nil {
- klog.V(1).Info("Failed to download pricing data: " + err.Error())
- }
- a.recordPrices()
- router := httprouter.New()
- router.GET("/costDataModel", a.CostDataModel)
- router.GET("/costDataModelRange", a.CostDataModelRange)
- router.GET("/allNodePricing", a.GetAllNodePricing)
- router.GET("/healthz", Healthz)
- router.POST("/refreshPricing", a.RefreshPricingData)
- rootMux := http.NewServeMux()
- rootMux.Handle("/", router)
- rootMux.Handle("/metrics", promhttp.Handler())
- klog.Fatal(http.ListenAndServe(":9003", rootMux))
- }
|