The new `go fmt` adds `//go:build` lines (https://golang.org/doc/go1.17#tools). Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
		
			
				
	
	
		
			188 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			188 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build linux
 | 
						|
// +build linux
 | 
						|
 | 
						|
/*
 | 
						|
   Copyright The containerd Authors.
 | 
						|
 | 
						|
   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 v1
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"fmt"
 | 
						|
	"sync"
 | 
						|
 | 
						|
	"github.com/containerd/cgroups"
 | 
						|
	"github.com/containerd/containerd/log"
 | 
						|
	v1 "github.com/containerd/containerd/metrics/types/v1"
 | 
						|
	"github.com/containerd/containerd/namespaces"
 | 
						|
	"github.com/containerd/typeurl"
 | 
						|
	"github.com/docker/go-metrics"
 | 
						|
	"github.com/gogo/protobuf/types"
 | 
						|
	"github.com/prometheus/client_golang/prometheus"
 | 
						|
)
 | 
						|
 | 
						|
// Statable type that returns cgroup metrics
 | 
						|
type Statable interface {
 | 
						|
	ID() string
 | 
						|
	Namespace() string
 | 
						|
	Stats(context.Context) (*types.Any, error)
 | 
						|
}
 | 
						|
 | 
						|
// Trigger will be called when an event happens and provides the cgroup
 | 
						|
// where the event originated from
 | 
						|
type Trigger func(string, string, cgroups.Cgroup)
 | 
						|
 | 
						|
// NewCollector registers the collector with the provided namespace and returns it so
 | 
						|
// that cgroups can be added for collection
 | 
						|
func NewCollector(ns *metrics.Namespace) *Collector {
 | 
						|
	if ns == nil {
 | 
						|
		return &Collector{}
 | 
						|
	}
 | 
						|
	// add machine cpus and memory info
 | 
						|
	c := &Collector{
 | 
						|
		ns:    ns,
 | 
						|
		tasks: make(map[string]entry),
 | 
						|
	}
 | 
						|
	c.metrics = append(c.metrics, pidMetrics...)
 | 
						|
	c.metrics = append(c.metrics, cpuMetrics...)
 | 
						|
	c.metrics = append(c.metrics, memoryMetrics...)
 | 
						|
	c.metrics = append(c.metrics, hugetlbMetrics...)
 | 
						|
	c.metrics = append(c.metrics, blkioMetrics...)
 | 
						|
	c.storedMetrics = make(chan prometheus.Metric, 100*len(c.metrics))
 | 
						|
	ns.Add(c)
 | 
						|
	return c
 | 
						|
}
 | 
						|
 | 
						|
func taskID(id, namespace string) string {
 | 
						|
	return fmt.Sprintf("%s-%s", id, namespace)
 | 
						|
}
 | 
						|
 | 
						|
type entry struct {
 | 
						|
	task Statable
 | 
						|
	// ns is an optional child namespace that contains additional to parent labels.
 | 
						|
	// This can be used to append task specific labels to be able to differentiate the different containerd metrics.
 | 
						|
	ns *metrics.Namespace
 | 
						|
}
 | 
						|
 | 
						|
// Collector provides the ability to collect container stats and export
 | 
						|
// them in the prometheus format
 | 
						|
type Collector struct {
 | 
						|
	mu sync.RWMutex
 | 
						|
 | 
						|
	tasks         map[string]entry
 | 
						|
	ns            *metrics.Namespace
 | 
						|
	metrics       []*metric
 | 
						|
	storedMetrics chan prometheus.Metric
 | 
						|
}
 | 
						|
 | 
						|
// Describe prometheus metrics
 | 
						|
func (c *Collector) Describe(ch chan<- *prometheus.Desc) {
 | 
						|
	for _, m := range c.metrics {
 | 
						|
		ch <- m.desc(c.ns)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Collect prometheus metrics
 | 
						|
func (c *Collector) Collect(ch chan<- prometheus.Metric) {
 | 
						|
	c.mu.RLock()
 | 
						|
	wg := &sync.WaitGroup{}
 | 
						|
	for _, t := range c.tasks {
 | 
						|
		wg.Add(1)
 | 
						|
		go c.collect(t, ch, true, wg)
 | 
						|
	}
 | 
						|
storedLoop:
 | 
						|
	for {
 | 
						|
		// read stored metrics until the channel is flushed
 | 
						|
		select {
 | 
						|
		case m := <-c.storedMetrics:
 | 
						|
			ch <- m
 | 
						|
		default:
 | 
						|
			break storedLoop
 | 
						|
		}
 | 
						|
	}
 | 
						|
	c.mu.RUnlock()
 | 
						|
	wg.Wait()
 | 
						|
}
 | 
						|
 | 
						|
func (c *Collector) collect(entry entry, ch chan<- prometheus.Metric, block bool, wg *sync.WaitGroup) {
 | 
						|
	if wg != nil {
 | 
						|
		defer wg.Done()
 | 
						|
	}
 | 
						|
	t := entry.task
 | 
						|
	ctx := namespaces.WithNamespace(context.Background(), t.Namespace())
 | 
						|
	stats, err := t.Stats(ctx)
 | 
						|
	if err != nil {
 | 
						|
		log.L.WithError(err).Errorf("stat task %s", t.ID())
 | 
						|
		return
 | 
						|
	}
 | 
						|
	data, err := typeurl.UnmarshalAny(stats)
 | 
						|
	if err != nil {
 | 
						|
		log.L.WithError(err).Errorf("unmarshal stats for %s", t.ID())
 | 
						|
		return
 | 
						|
	}
 | 
						|
	s, ok := data.(*v1.Metrics)
 | 
						|
	if !ok {
 | 
						|
		log.L.WithError(err).Errorf("invalid metric type for %s", t.ID())
 | 
						|
		return
 | 
						|
	}
 | 
						|
	ns := entry.ns
 | 
						|
	if ns == nil {
 | 
						|
		ns = c.ns
 | 
						|
	}
 | 
						|
	for _, m := range c.metrics {
 | 
						|
		m.collect(t.ID(), t.Namespace(), s, ns, ch, block)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
// Add adds the provided cgroup and id so that metrics are collected and exported
 | 
						|
func (c *Collector) Add(t Statable, labels map[string]string) error {
 | 
						|
	if c.ns == nil {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
	c.mu.Lock()
 | 
						|
	defer c.mu.Unlock()
 | 
						|
	id := taskID(t.ID(), t.Namespace())
 | 
						|
	if _, ok := c.tasks[id]; ok {
 | 
						|
		return nil // requests to collect metrics should be idempotent
 | 
						|
	}
 | 
						|
	entry := entry{task: t}
 | 
						|
	if labels != nil {
 | 
						|
		entry.ns = c.ns.WithConstLabels(labels)
 | 
						|
	}
 | 
						|
	c.tasks[id] = entry
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// Remove removes the provided cgroup by id from the collector
 | 
						|
func (c *Collector) Remove(t Statable) {
 | 
						|
	if c.ns == nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	c.mu.Lock()
 | 
						|
	delete(c.tasks, taskID(t.ID(), t.Namespace()))
 | 
						|
	c.mu.Unlock()
 | 
						|
}
 | 
						|
 | 
						|
// RemoveAll statable items from the collector
 | 
						|
func (c *Collector) RemoveAll() {
 | 
						|
	if c.ns == nil {
 | 
						|
		return
 | 
						|
	}
 | 
						|
	c.mu.Lock()
 | 
						|
	c.tasks = make(map[string]entry)
 | 
						|
	c.mu.Unlock()
 | 
						|
}
 |