linter

package
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 5, 2019 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ToPerc

func ToPerc(v1, v2 float64) float64

ToPerc computes the percentage from one number over another.

Types

type Client

type Client interface {
	Config

	ClusterHasMetrics() bool
	FetchNodesMetrics() ([]mv1beta1.NodeMetrics, error)
	FetchPodsMetrics(ns string) ([]mv1beta1.PodMetrics, error)
	ListServices() ([]v1.Service, error)
	ListNodes() ([]v1.Node, error)
	ListEndpoints() (map[string]v1.Endpoints, error)
	GetEndpoints(fqn string) (*v1.Endpoints, error)
	GetPod(map[string]string) (*v1.Pod, error)
	ListPods() (map[string]v1.Pod, error)
	ListNS() ([]v1.Namespace, error)
	InUseNamespaces(used []string)
}

Client represents a Kubernetes Client.

type Config

type Config interface {
	PodCPULimit() float64
	PodMEMLimit() float64
	NodeCPULimit() float64
	NodeMEMLimit() float64

	RestartsLimit() int
	ActiveNamespace() string
}

Config represents a Popeye configuration.

type Container

type Container struct {
	*Linter
}

Container represents a Container linter.

func NewContainer

func NewContainer(c Client, l *zerolog.Logger) *Container

NewContainer returns a new container linter.

type Error

type Error struct {
	// contains filtered or unexported fields
}

Error tracks a linter issue.

func NewError

func NewError(level Level, description string) Error

NewError returns a new lint issue.

func NewErrorf

func NewErrorf(level Level, format string, args ...interface{}) Error

NewErrorf returns a new lint issue using a formatter.

func (Error) Description

func (e Error) Description() string

Description returns the lint description.

func (Error) Severity

func (e Error) Severity() Level

Severity returns the severity of the message.

type Issue

type Issue interface {
	Severity() Level
	Description() string
}

Issue indicates a potential linter issue.

type Issues

type Issues map[string][]Issue

Issues a collection of linter issues.

type Level

type Level int

Level tracks lint check level.

const (
	// OkLevel denotes no linting issues.
	OkLevel Level = iota
	// InfoLevel denotes FIY linting issues.
	InfoLevel
	// WarnLevel denotes a warning issue.
	WarnLevel
	// ErrorLevel denotes a serious issue.
	ErrorLevel

	// Delimiter indicates a sub section.
	Delimiter = "||"
)

type Linter

type Linter struct {
	// contains filtered or unexported fields
}

Linter describes a lint resource.

func (*Linter) Issues

func (l *Linter) Issues() Issues

Issues returns a collection of linter issues.

func (*Linter) MaxSeverity

func (l *Linter) MaxSeverity(res string) Level

MaxSeverity scans the lint messages and return the highest severity.

func (*Linter) NoIssues

func (l *Linter) NoIssues(res string) bool

NoIssues return true if not lint errors were detected. False otherwize

type Namespace

type Namespace struct {
	*Linter
}

Namespace represents a Namespace linter.

func NewNamespace

func NewNamespace(c Client, l *zerolog.Logger) *Namespace

NewNamespace returns a new namespace linter.

func (*Namespace) Lint

func (n *Namespace) Lint(ctx context.Context) error

Lint a namespace

type Node

type Node struct {
	*Linter
}

Node represents a Node linter.

func NewNode

func NewNode(c Client, l *zerolog.Logger) *Node

NewNode returns a new Node linter.

func (*Node) Lint

func (n *Node) Lint(ctx context.Context) error

Lint a Node.

type Pod

type Pod struct {
	*Linter
}

Pod represents a Pod linter.

func NewPod

func NewPod(c Client, l *zerolog.Logger) *Pod

NewPod returns a new pod linter.

func (*Pod) Lint

func (p *Pod) Lint(ctx context.Context) error

Lint a Pod.

type PodMetric

type PodMetric interface {
	CurrentCPU() int64
	CurrentMEM() int64
	Empty() bool
}

PodMetric tracks node metrics available and current range.

type Service

type Service struct {
	*Linter
}

Service represents a service linter.

func NewService

func NewService(c Client, l *zerolog.Logger) *Service

NewService returns a new service linter.

func (*Service) Lint

func (s *Service) Lint(ctx context.Context) error

Lint a service.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL
JackTT - Gopher 🇻🇳