Documentation ¶
Overview ¶
Package docker contains a monitor for getting metrics about containers running in a docker engine.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { config.MonitorConfig `acceptsEndpoints:"false"` // The URL of the docker server DockerURL string `yaml:"dockerURL" default:"unix:///var/run/docker.sock"` // The maximum amount of time to wait for docker API requests TimeoutSeconds int `yaml:"timeoutSeconds" default:"5"` // A mapping of container label names to dimension names. The corresponding // label values will become the dimension value for the mapped name. E.g. // `io.kubernetes.container.name: container_spec_name` would result in a // dimension called `container_spec_name` that has the value of the // `io.kubernetes.container.name` container label. LabelsToDimensions map[string]string `yaml:"labelsToDimensions"` // A mapping of container environment variable names to dimension // names. The corresponding env var values become the dimension values on // the emitted metrics. E.g. `APP_VERSION: version` would result in // datapoints having a dimension called `version` whose value is the value // of the `APP_VERSION` envvar configured for that particular container, if // present. EnvToDimensions map[string]string `yaml:"envToDimensions"` // A list of filters of images to exclude. Supports literals, globs, and // regex. ExcludedImages []string `yaml:"excludedImages"` }
Config for this monitor
Click to show internal directories.
Click to hide internal directories.