Documentation ¶
Overview ¶
Copyright 2020 PingCAP, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, See the License for the specific language governing permissions and limitations under the License.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // CloudStorageWriteBytesGauge records the total number of bytes written to cloud storage. CloudStorageWriteBytesGauge = prometheus.NewGaugeVec(prometheus.GaugeOpts{ Namespace: namespace, Subsystem: subsystem, Name: "cloud_storage_write_bytes_total", Help: "Total number of bytes written to cloud storage", }, []string{"namespace", "changefeed"}) // CloudStorageFileCountGauge records the number of files generated by cloud storage sink. CloudStorageFileCountGauge = prometheus.NewGaugeVec(prometheus.GaugeOpts{ Namespace: namespace, Subsystem: subsystem, Name: "cloud_storage_file_count", Help: "Total number of files managed by a cloud storage sink", }, []string{"namespace", "changefeed"}) // CloudStorageWriteDurationHistogram records the latency distributions of writeLog. CloudStorageWriteDurationHistogram = prometheus.NewHistogramVec(prometheus.HistogramOpts{ Namespace: namespace, Subsystem: subsystem, Name: "cloud_storage_write_duration_seconds", Help: "The latency distributions of write storage by a cloud storage sink", Buckets: prometheus.ExponentialBuckets(0.001, 2.0, 13), }, []string{"namespace", "changefeed"}) // CloudStorageFlushDurationHistogram records the latency distributions of flushLog. CloudStorageFlushDurationHistogram = prometheus.NewHistogramVec(prometheus.HistogramOpts{ Namespace: namespace, Subsystem: subsystem, Name: "cloud_storage_flush_duration_seconds", Help: "The latency distributions of flush storage by a cloud storage sink", Buckets: prometheus.ExponentialBuckets(0.001, 2.0, 13), }, []string{"namespace", "changefeed"}) // CloudStorageWorkerBusyRatio records the busy ratio of CloudStorage bgUpdateLog worker. CloudStorageWorkerBusyRatio = prometheus.NewCounterVec( prometheus.CounterOpts{ Namespace: namespace, Subsystem: subsystem, Name: "cloud_storage_worker_busy_ratio", Help: "Busy ratio for cloud storage sink dml worker.", }, []string{"namespace", "changefeed", "id"}) )
Metrics for cloud storage sink
Functions ¶
func InitMetrics ¶
func InitMetrics(registry *prometheus.Registry)
InitMetrics registers all metrics in this file.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.