kubelet-to-gcm/monitor/kubelet/source.go (72 lines of code) (raw):

/* Copyright 2017 Google Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package kubelet import ( "crypto/tls" "crypto/x509" "fmt" "io/ioutil" "net/http" v3 "google.golang.org/api/monitoring/v3" "github.com/GoogleCloudPlatform/k8s-stackdriver/kubelet-to-gcm/monitor" ) // Source pulls data from the controller source, and translates it for GCMv3. type Source struct { translator *Translator client *Client projectPath string } // NewSource creates a new Source for a kubelet. func NewSource(cfg *monitor.SourceConfig) (*Source, error) { // Create objects for kubelet monitoring. trans := NewTranslator(cfg.Zone, cfg.Project, cfg.Cluster, cfg.ClusterLocation, cfg.Instance, cfg.InstanceID, cfg.SchemaPrefix, cfg.MonitoredResourceLabels, cfg.Resolution) // NewClient validates its own inputs. httpClient := &http.Client{} var err error useAuthPort := false if cfg.CertificateLocation != "" { httpClient, err = getSecuredHttpClient(cfg.CertificateLocation) if err != nil { return nil, fmt.Errorf("failed to create secure http client: %s", err) } useAuthPort = true } client, err := NewClient(cfg.Host, cfg.Port, httpClient, useAuthPort) if err != nil { return nil, fmt.Errorf("Failed to create a kubelet client with config %v: %v", cfg, err) } return &Source{ translator: trans, client: client, projectPath: fmt.Sprintf("projects/%s", cfg.Project), }, nil } // GetTimeSeriesReq returns the GCM v3 TimeSeries data. func (s *Source) GetTimeSeriesReq() (*v3.CreateTimeSeriesRequest, error) { // Get the latest summary. summary, err := s.client.GetSummary() if err != nil { return nil, fmt.Errorf("Failed to get summary from kubelet: %v", err) } // Translate kubelet's data to GCM v3's format. tsReq, err := s.translator.Translate(summary) if err != nil { return nil, fmt.Errorf("Failed to translate data from summary %v: %v", summary, err) } return tsReq, nil } // Name returns the name of the component being monitored. func (s *Source) Name() string { return "kubelet" } // ProjectPath returns the project's path in a way Stackdriver understands. func (s *Source) ProjectPath() string { return s.projectPath } func getSecuredHttpClient(certLocation string) (*http.Client, error) { cert, err := ioutil.ReadFile(certLocation) if err != nil { return nil, fmt.Errorf("failed to read file with kubelet certificate: %s", err) } certPool := x509.NewCertPool() ok := certPool.AppendCertsFromPEM(cert) if !ok { return nil, fmt.Errorf("failed to parse kubelet certificate") } return &http.Client{ Transport: &http.Transport{ TLSClientConfig: &tls.Config{ RootCAs: certPool, }, }, }, nil }