Documentation
¶
Index ¶
- func BuildArgs(flags map[string]string) []string
- func BuildKingpinArgs(flags map[string]string) []string
- func EmptyFlags() map[string]string
- func EqualsAmongTwo(sums ...float64) bool
- func EqualsSingle(expected float64) func(float64) bool
- func GreaterAmongTwo(sums ...float64) bool
- func LessAmongTwo(sums ...float64) bool
- func MergeFlags(inputs ...map[string]string) map[string]string
- func MergeFlagsWithoutRemovingEmpty(inputs ...map[string]string) map[string]string
- func StartAndWaitReady(runnables ...Runnable) error
- func SumValues(values []float64) float64
- type CmdReadinessProbe
- type Command
- type CompositeInstrumentedRunnable
- func (r *CompositeInstrumentedRunnable) Instances() []InstrumentedRunnable
- func (r *CompositeInstrumentedRunnable) MetricTargets() (ret []MetricTarget)
- func (r *CompositeInstrumentedRunnable) SumMetrics(metricNames []string, opts ...MetricsOption) ([]float64, error)
- func (r *CompositeInstrumentedRunnable) WaitSumMetrics(expected MetricValueExpectation, metricNames ...string) error
- func (r *CompositeInstrumentedRunnable) WaitSumMetricsWithOptions(expected MetricValueExpectation, metricNames []string, opts ...MetricsOption) error
- type DockerEnvironment
- func (e *DockerEnvironment) AddCloser(f func())
- func (e *DockerEnvironment) AddListener(listener EnvironmentListener)
- func (e *DockerEnvironment) Close()
- func (e *DockerEnvironment) HostAddr() string
- func (e *DockerEnvironment) Name() string
- func (e *DockerEnvironment) Runnable(name string) RunnableBuilder
- func (e *DockerEnvironment) SharedDir() string
- type Environment
- type EnvironmentListener
- type EnvironmentOption
- type Errorer
- func (Errorer) Dir() string
- func (Errorer) Endpoint(string) string
- func (e Errorer) Exec(Command) (string, string, error)
- func (e Errorer) Future() FutureRunnable
- func (e Errorer) Init(StartOptions) Runnable
- func (Errorer) InternalDir() string
- func (Errorer) InternalEndpoint(string) string
- func (Errorer) IsRunning() bool
- func (e Errorer) Kill() error
- func (e Errorer) Name() string
- func (e Errorer) RunOnce(context.Context) (string, error)
- func (e Errorer) Start() error
- func (e Errorer) Stop() error
- func (e Errorer) WaitReady() error
- func (e Errorer) WithConcreteType(Runnable) RunnableBuilder
- func (e Errorer) WithPorts(map[string]int) RunnableBuilder
- type FutureInstrumentedRunnable
- type FutureRunnable
- type HTTPReadinessProbe
- type InstrumentedRunnable
- type InstrumentedRunnableBuilder
- type LinePrefixLogger
- type Linkable
- type Logger
- type MetricTarget
- type MetricValueExpectation
- type MetricsOption
- type ReadinessProbe
- type Runnable
- type RunnableBuilder
- type RunnableCapabilities
- type SimpleLogger
- type StartOptions
- type TCPReadinessProbe
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BuildKingpinArgs ¶ added in v0.10.0
BuildKingpinArgs is like BuildArgs but with special handling of slice args. NOTE(bwplotka): flags with values as comma but not indented to be slice will cause issues.
func EmptyFlags ¶
func EqualsAmongTwo ¶
EqualsAmongTwo is an isExpected function for WaitSumMetrics that returns true if first sum is equal to the second. NOTE: Be careful on scrapes in between of process that changes two metrics. Those are usually not atomic.
func EqualsSingle ¶
func GreaterAmongTwo ¶
GreaterAmongTwo is an isExpected function for WaitSumMetrics that returns true if first sum is greater than second. NOTE: Be careful on scrapes in between of process that changes two metrics. Those are usually not atomic.
func LessAmongTwo ¶
LessAmongTwo is an isExpected function for WaitSumMetrics that returns true if first sum is smaller than second. NOTE: Be careful on scrapes in between of process that changes two metrics. Those are usually not atomic.
func StartAndWaitReady ¶
Types ¶
type CmdReadinessProbe ¶
type CmdReadinessProbe struct {
// contains filtered or unexported fields
}
CmdReadinessProbe checks readiness by `Exec`ing a command (within container) which returns 0 to consider status being ready.
func NewCmdReadinessProbe ¶
func NewCmdReadinessProbe(cmd Command) *CmdReadinessProbe
func (*CmdReadinessProbe) Ready ¶
func (p *CmdReadinessProbe) Ready(runnable Runnable) error
type CompositeInstrumentedRunnable ¶
type CompositeInstrumentedRunnable struct {
// contains filtered or unexported fields
}
CompositeInstrumentedRunnable abstract an higher-level service composed by more than one InstrumentedRunnable.
func NewCompositeInstrumentedRunnable ¶
func NewCompositeInstrumentedRunnable(runnables ...InstrumentedRunnable) *CompositeInstrumentedRunnable
func (*CompositeInstrumentedRunnable) Instances ¶
func (r *CompositeInstrumentedRunnable) Instances() []InstrumentedRunnable
func (*CompositeInstrumentedRunnable) MetricTargets ¶ added in v0.10.0
func (r *CompositeInstrumentedRunnable) MetricTargets() (ret []MetricTarget)
func (*CompositeInstrumentedRunnable) SumMetrics ¶
func (r *CompositeInstrumentedRunnable) SumMetrics(metricNames []string, opts ...MetricsOption) ([]float64, error)
SumMetrics returns the sum of the values of each given metric names.
func (*CompositeInstrumentedRunnable) WaitSumMetrics ¶
func (r *CompositeInstrumentedRunnable) WaitSumMetrics(expected MetricValueExpectation, metricNames ...string) error
WaitSumMetrics waits for at least one instance of each given metric names to be present and their sums, returning true when passed to given expected(...).
func (*CompositeInstrumentedRunnable) WaitSumMetricsWithOptions ¶
func (r *CompositeInstrumentedRunnable) WaitSumMetricsWithOptions(expected MetricValueExpectation, metricNames []string, opts ...MetricsOption) error
type DockerEnvironment ¶
type DockerEnvironment struct {
// contains filtered or unexported fields
}
DockerEnvironment defines single node docker engine that allows to run Services.
func NewDockerEnvironment ¶
func NewDockerEnvironment(name string, opts ...EnvironmentOption) (*DockerEnvironment, error)
NewDockerEnvironment creates new, isolated docker environment.
func (*DockerEnvironment) AddCloser ¶ added in v0.11.0
func (e *DockerEnvironment) AddCloser(f func())
func (*DockerEnvironment) AddListener ¶ added in v0.10.0
func (e *DockerEnvironment) AddListener(listener EnvironmentListener)
AddListener registers given listener to be notified on environment runnable changes.
func (*DockerEnvironment) Close ¶
func (e *DockerEnvironment) Close()
func (*DockerEnvironment) HostAddr ¶ added in v0.11.0
func (e *DockerEnvironment) HostAddr() string
func (*DockerEnvironment) Name ¶ added in v0.11.0
func (e *DockerEnvironment) Name() string
func (*DockerEnvironment) Runnable ¶
func (e *DockerEnvironment) Runnable(name string) RunnableBuilder
func (*DockerEnvironment) SharedDir ¶
func (e *DockerEnvironment) SharedDir() string
type Environment ¶
type Environment interface {
// Name returns environment name.
Name() string
SharedDir() string
// HostAddr returns host address that is available from runnables.
HostAddr() string
// Runnable returns runnable builder which can build runnables that can be started and stopped within this environment.
Runnable(name string) RunnableBuilder
// AddListener registers given listener to be notified on environment runnable changes.
AddListener(listener EnvironmentListener)
// AddCloser registers function to be invoked on close, before all containers are sent kill signal.
AddCloser(func())
// Close shutdowns isolated environment and cleans its resources.
Close()
}
Environment defines how to run Runnable in isolated area e.g via docker in isolated docker network.
type EnvironmentListener ¶ added in v0.10.0
type EnvironmentOption ¶
type EnvironmentOption func(*environmentOptions)
EnvironmentOption defined the signature of a function used to manipulate options.
func WithLogger ¶
func WithLogger(logger Logger) EnvironmentOption
WithLogger tells environment to use custom logger to default one (stdout).
func WithVerbose ¶
func WithVerbose() EnvironmentOption
WithVerbose tells environment to be verbose i.e print all commands it executes.
type Errorer ¶ added in v0.10.0
type Errorer struct {
// contains filtered or unexported fields
}
func NewErrorer ¶ added in v0.10.0
func (Errorer) Future ¶ added in v0.10.0
func (e Errorer) Future() FutureRunnable
func (Errorer) Init ¶ added in v0.10.0
func (e Errorer) Init(StartOptions) Runnable
func (Errorer) InternalDir ¶ added in v0.10.0
func (Errorer) InternalEndpoint ¶ added in v0.10.0
func (Errorer) WithConcreteType ¶ added in v0.10.0
func (e Errorer) WithConcreteType(Runnable) RunnableBuilder
type FutureInstrumentedRunnable ¶
type FutureInstrumentedRunnable interface {
Linkable
// Init transforms future into runnable.
Init(opts StartOptions) InstrumentedRunnable
}
type FutureRunnable ¶
type FutureRunnable interface {
Linkable
// Init transforms future into runnable.
Init(opts StartOptions) Runnable
}
type HTTPReadinessProbe ¶
type HTTPReadinessProbe struct {
// contains filtered or unexported fields
}
HTTPReadinessProbe checks readiness by making HTTP or HTTPS call and checking for expected HTTP/HTTPS status code.
func NewHTTPReadinessProbe ¶
func NewHTTPReadinessProbe(portName string, path string, expectedStatusRangeStart, expectedStatusRangeEnd int, expectedContent ...string) *HTTPReadinessProbe
func NewHTTPSReadinessProbe ¶ added in v0.12.0
func NewHTTPSReadinessProbe(portName, path string, expectedStatusRangeStart, expectedStatusRangeEnd int, expectedContent ...string) *HTTPReadinessProbe
func (*HTTPReadinessProbe) Ready ¶
func (p *HTTPReadinessProbe) Ready(runnable Runnable) (err error)
type InstrumentedRunnable ¶
type InstrumentedRunnable interface {
Runnable
MetricTargets() []MetricTarget
Metrics() (string, error)
WaitSumMetrics(expected MetricValueExpectation, metricNames ...string) error
WaitSumMetricsWithOptions(expected MetricValueExpectation, metricNames []string, opts ...MetricsOption) error
SumMetrics(metricNames []string, opts ...MetricsOption) ([]float64, error)
WaitRemovedMetric(metricName string, opts ...MetricsOption) error
}
InstrumentedRunnable represents opinionated microservice with one port marked as HTTP port with metric endpoint.
func NewErrInstrumentedRunnable ¶ added in v0.10.0
func NewErrInstrumentedRunnable(name string, err error) InstrumentedRunnable
type InstrumentedRunnableBuilder ¶ added in v0.12.0
type InstrumentedRunnableBuilder interface {
// WithPorts adds ports to runnable, allowing caller to
// use `InternalEndpoint` and `Endpoint` methods by referencing port by name.
WithPorts(ports map[string]int, instrumentedPortName string) InstrumentedRunnableBuilder
// WithMetricPath allows adding customized metric path. "/metrics" by default.
WithMetricPath(path string) InstrumentedRunnableBuilder
// WithMetricScheme allows adding customized scheme. "http" or "https" values allowed. "http" by default.
// If "https" is specified, insecure TLS will be performed.
WithMetricScheme(scheme string) InstrumentedRunnableBuilder
// Future returns future runnable
Future() FutureInstrumentedRunnable
// Init returns runnable.
Init(opts StartOptions) InstrumentedRunnable
}
InstrumentedRunnableBuilder represents options that can be build into runnable and if you want Future or Initiated InstrumentedRunnableBuilder from it.
func NewInstrumentedRunnable ¶
func NewInstrumentedRunnable(env Environment, name string) InstrumentedRunnableBuilder
type LinePrefixLogger ¶
type LinePrefixLogger struct {
// contains filtered or unexported fields
}
type Linkable ¶
type Linkable interface {
// Name returns unique name for the Runnable instance.
Name() string
// Dir returns host working directory path for this runnable.
Dir() string
// InternalDir returns local, environment working directory path for this runnable.
InternalDir() string
// InternalEndpoint returns internal runnable endpoint (host:port) for given internal port.
// Internal means that it will be accessible only from runnable context.
InternalEndpoint(portName string) string
}
Linkable is the entity that one can use to link runnable to other runnables before started.
type Logger ¶
type Logger interface {
Log(keyvals ...interface{}) error
}
Logger is the fundamental interface for all log operations. Log creates a log event from keyvals, a variadic sequence of alternating keys and values. Implementations must be safe for concurrent use by multiple goroutines. In particular, any implementation of Logger that appends to keyvals or modifies or retains any of its elements must make a copy first. This is 1:1 copy of "github.com/go-kit/kit/log" interface.
type MetricTarget ¶ added in v0.10.0
type MetricValueExpectation ¶
func Equals ¶
func Equals(value float64) MetricValueExpectation
Equals is an MetricValueExpectation function for WaitSumMetrics that returns true if given single sum is equals to given value.
func Greater ¶
func Greater(value float64) MetricValueExpectation
Greater is an isExpected function for WaitSumMetrics that returns true if given single sum is greater than given value.
func GreaterOrEqual ¶
func GreaterOrEqual(value float64) MetricValueExpectation
GreaterOrEqual is an isExpected function for WaitSumMetrics that returns true if given single sum is greater or equal than given value.
func Less ¶
func Less(value float64) MetricValueExpectation
Less is an isExpected function for WaitSumMetrics that returns true if given single sum is less than given value.
type MetricsOption ¶
type MetricsOption func(*metricsOptions)
MetricsOption defined the signature of a function used to manipulate options.
func SkipMissingMetrics ¶
func SkipMissingMetrics() MetricsOption
SkipMissingMetrics is an option to skip/ignore whenever an expected metric is missing.
func WaitMissingMetrics ¶
func WaitMissingMetrics() MetricsOption
WaitMissingMetrics is an option to wait whenever an expected metric is missing. If this option is not enabled, will return error on missing metrics.
func WithLabelMatchers ¶
func WithLabelMatchers(matchers ...*matchers.Matcher) MetricsOption
WithLabelMatchers is an option to filter only matching series.
func WithMetricCount ¶
func WithMetricCount() MetricsOption
WithMetricCount is an option to get the histogram/summary count as metric value.
func WithWaitBackoff ¶ added in v0.12.0
func WithWaitBackoff(backoffConfig *backoff.Config) MetricsOption
WithWaitBackoff is an option to configure a backoff when waiting on a metric value.
type ReadinessProbe ¶
type Runnable ¶
type Runnable interface {
Linkable
// contains filtered or unexported methods
}
Runnable is the entity that environment returns to manage single instance.
func Containerize ¶ added in v0.12.0
func Containerize(e Environment, name string, startFn func(context.Context) error) (Runnable, error)
Containerize inspects startFn and builds Go shim with local process endpoint that imports given `startFn` function. Binary is then put in adhoc container and returned as runnable ready to be started.
type RunnableBuilder ¶ added in v0.10.0
type RunnableBuilder interface {
// WithPorts adds ports to runnable, allowing caller to
// use `InternalEndpoint` and `Endpoint` methods by referencing port by name.
WithPorts(map[string]int) RunnableBuilder
// WithConcreteType allows to use different type for registration in environment,
// so environment listeners listening to `OnRunnableChange` can have different
// concrete type (e.g InstrumentedRunnable).
WithConcreteType(r Runnable) RunnableBuilder
// Future returns future runnable
Future() FutureRunnable
// Init returns runnable.
Init(opts StartOptions) Runnable
}
RunnableBuilder represents options that can be build into runnable and if you want Future or Initiated Runnable from it.
type RunnableCapabilities ¶ added in v0.12.0
type RunnableCapabilities string
const (
RunnableCapabilitiesSysAdmin RunnableCapabilities = "SYS_ADMIN"
)
type SimpleLogger ¶
type SimpleLogger struct {
// contains filtered or unexported fields
}
func NewLogger ¶
func NewLogger(w io.Writer) *SimpleLogger
func (*SimpleLogger) Log ¶
func (l *SimpleLogger) Log(keyvals ...interface{}) error
type StartOptions ¶
type StartOptions struct {
Image string
EnvVars map[string]string
User string
Command Command
Readiness ReadinessProbe
// WaitReadyBackofff represents backoff used for WaitReady.
WaitReadyBackoff *backoff.Config
Volumes []string
UserNs string
Privileged bool
Capabilities []RunnableCapabilities
}
StartOptions represents starting option of runnable in the environment.
type TCPReadinessProbe ¶
type TCPReadinessProbe struct {
// contains filtered or unexported fields
}
TCPReadinessProbe checks readiness by ensure a TCP connection can be established.
func NewTCPReadinessProbe ¶
func NewTCPReadinessProbe(portName string) *TCPReadinessProbe
func (*TCPReadinessProbe) Ready ¶
func (p *TCPReadinessProbe) Ready(runnable Runnable) (err error)
Source Files
¶
Directories
¶
| Path | Synopsis |
|---|---|
|
Package e2edb is a reference, instrumented runnables that are running various popular databases one could run in their tests or benchmarks.
|
Package e2edb is a reference, instrumented runnables that are running various popular databases one could run in their tests or benchmarks. |
|
examples
|
|
|
thanos
module
|
|
