Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ConduitInfo = metrics.NewLabeledGauge("conduit_info", "Information about Conduit.", []string{"version"}) PipelinesGauge = metrics.NewLabeledGauge("conduit_pipelines", "Number of pipelines by status.", []string{"status"}) ConnectorsGauge = metrics.NewLabeledGauge("conduit_connectors", "Number of connectors by type.", []string{"type"}) ProcessorsGauge = metrics.NewLabeledGauge("conduit_processors", "Number of processors by type.", []string{"processor", "type"}) ConnectorBytesHistogram = metrics.NewLabeledHistogram("conduit_connector_bytes", "Number of bytes a connector processed by pipeline name, plugin and type (source, destination).", []string{"pipeline_name", "plugin", "type"}, prometheus.HistogramOpts{Buckets: []float64{1024, 1024 << 1, 1024 << 2, 1024 << 3, 1024 << 4, 1024 << 5, 1024 << 6, 1024 << 7, 1024 << 8, 1024 << 9, 1024 << 10, 1024 << 11}}, ) PipelineExecutionDurationTimer = metrics.NewLabeledTimer("conduit_pipeline_execution_duration_seconds", "Amount of time records spent in a pipeline.", []string{"pipeline_name"}, prometheus.HistogramOpts{Buckets: []float64{.001, .0025, .005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5}}, ) ConnectorExecutionDurationTimer = metrics.NewLabeledTimer("conduit_connector_execution_duration_seconds", "Amount of time spent reading or writing records per pipeline, plugin and connector type (source, destination).", []string{"pipeline_name", "plugin", "type"}, prometheus.HistogramOpts{Buckets: []float64{.001, .0025, .005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5}}, ) ProcessorExecutionDurationTimer = metrics.NewLabeledTimer("conduit_processor_execution_duration_seconds", "Amount of time spent on processing records per pipeline and processor.", []string{"pipeline_name", "processor"}, prometheus.HistogramOpts{Buckets: []float64{.001, .0025, .005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5}}, ) )
Any changes in metrics defined below should also be reflected in the metrics documentation.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.