monitoring

package
v0.0.0-...-23fd86d Latest Latest
Warning

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

Go to latest
Published: Sep 3, 2020 License: MIT Imports: 6 Imported by: 0

Documentation

Overview

Package monitoring provides a monitoring endpoint and Continuous Profiling for Go service processes.

- The monitoring endpoint will expose OpenMetrics at `/metrics`.

- Support the gitlab_build_info metric for exposing application version information

This package includes optional support for continuous profiling, which is responsible for heap and cpu profiling of the Go process. Currently, the only supported driver is Google Cloud Platform's Stackdriver Profiler (see https://cloud.google.com/profiler/).

The profiler is initialized upon `monitoring.Start` call.

*Compiling applications with Profiler support*

For compiling binaries with Stackdriver Profiler support (including its dependencies), build your binary with the `continuous_profiler_stackdriver` compilation tag:

* `go build -tags="continuous_profiler_stackdriver"“

*Initializing the Profiler*

Use the following pattern in the `GITLAB_CONTINUOUS_PROFILING` environment variable for getting it started:

* `GITLAB_CONTINUOUS_PROFILING="stackdriver?service=gitaly&service_version=1.0.1&project_id=test-123"`

For more information about each argument see https://godoc.org/cloud.google.com/go/profiler#Config. Most of these shouldn't be required in GCP environments, so a simpler version could be used:

* `GITLAB_CONTINUOUS_PROFILING="stackdriver"`

See https://cloud.google.com/docs/authentication/production#providing_credentials_to_your_application for authentication details.

*Profiler overhead*

Google Cloud claim Stackdriver Profiler adds a 5% performance overhead to processes when it is enabled. This cost is only incurred when the profiler is switched on (through the `GITLAB_CONTINUOUS_PROFILING`) environment variable. More details can be found at https://medium.com/google-cloud/continuous-profiling-of-go-programs-96d4416af77b.

Index

Examples

Constants

View Source
const GitlabBuildInfoGaugeMetricName = "gitlab_build_info"

GitlabBuildInfoGaugeMetricName is the name of the label containing build information for this process

Variables

This section is empty.

Functions

func Serve deprecated

func Serve(options ...Option) error

Serve will start a new monitoring service listening on the address configured through the option arguments. Additionally, it'll start a Continuous Profiler configured through environment variables (see more at https://gitlab.com/gitlab-org/labkit/-/blob/master/monitoring/doc.go).

If `WithListenerAddress` option is provided, Serve will block or return a non-nil error, similar to `http.ListenAndServe` (for instance).

Deprecated: Use Start instead.

func Start

func Start(options ...Option) error

Start will start a new monitoring service listening on the address configured through the option arguments. Additionally, it'll start a Continuous Profiler configured through environment variables (see more at https://gitlab.com/gitlab-org/labkit/-/blob/master/monitoring/doc.go).

If `WithListenerAddress` option is provided, Start will block or return a non-nil error, similar to `http.ListenAndServe` (for instance).

Example
package main

import (
	"log"

	"gitlab.com/gitlab-org/labkit/monitoring"
)

func main() {
	go func() {
		log.Fatal(monitoring.Start(
			// Listen on port 7822 on all interfaces
			monitoring.WithListenerAddress(":7822"),
			// Add the standard version and build time labels
			monitoring.WithBuildInformation("0.1.1", "2019-09-01T00:22:00Z"),
			// Add any additional application-specific labels to the `gitlab_build_info` metric
			monitoring.WithBuildExtraLabels(map[string]string{
				"git_version": "2.0.0",
			}),
		))
	}()
}
Output:

Types

type Option

type Option func(*optionsConfig)

Option is used to pass options to NewListener.

func WithBuildExtraLabels

func WithBuildExtraLabels(labels map[string]string) Option

WithBuildExtraLabels will configure extra labels on the `gitlab_build_info` metric

func WithBuildInformation

func WithBuildInformation(version string, buildTime string) Option

WithBuildInformation will configure the `gitlab_build_info` metric with appropriate labels

func WithListener

func WithListener(listener net.Listener) Option

WithListener will configure the health check endpoint to use the provided listener.

func WithListenerAddress

func WithListenerAddress(addr string) Option

WithListenerAddress will configure the health check endpoint to use the provided listener.

func WithMetricsHandlerPattern

func WithMetricsHandlerPattern(pattern string) Option

WithMetricsHandlerPattern configures the pattern that the metrics handler is registered for (defaults to `/metrics`).

func WithProfilerCredentialsFile

func WithProfilerCredentialsFile(path string) Option

WithProfilerCredentialsFile configures the credentials file to be used for the profiler service.

func WithoutContinuousProfiling

func WithoutContinuousProfiling() Option

WithoutContinuousProfiling disables the continuous profiler

func WithoutMetrics

func WithoutMetrics() Option

WithoutMetrics disables the metrics endpoint

func WithoutPprof

func WithoutPprof() Option

WithoutPprof disables the pprof endpoint

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL