-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into community-skip-secrets-dogfood
- Loading branch information
Showing
2 changed files
with
212 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
package bufferedfilewriter | ||
|
||
import ( | ||
"github.com/prometheus/client_golang/prometheus" | ||
"github.com/prometheus/client_golang/prometheus/promauto" | ||
|
||
"github.com/trufflesecurity/trufflehog/v3/pkg/common" | ||
) | ||
|
||
var ( | ||
activeBufferCount = promauto.NewGauge(prometheus.GaugeOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "active_buffer_count", | ||
Help: "Current number of active buffers.", | ||
}) | ||
|
||
bufferCount = promauto.NewGauge(prometheus.GaugeOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "buffer_count", | ||
Help: "Total number of buffers managed by the pool.", | ||
}) | ||
|
||
totalBufferLength = promauto.NewGauge(prometheus.GaugeOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "total_buffer_length", | ||
Help: "Total length of all buffers combined.", | ||
}) | ||
|
||
totalBufferSize = promauto.NewGauge(prometheus.GaugeOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "total_buffer_size", | ||
Help: "Total size of all buffers combined.", | ||
}) | ||
|
||
growCount = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "grow_count", | ||
Help: "Total number of times buffers in the pool have grown.", | ||
}) | ||
|
||
growAmount = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "grow_amount", | ||
Help: "Total amount of bytes buffers in the pool have grown by.", | ||
}) | ||
|
||
shrinkCount = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "shrink_count", | ||
Help: "Total number of times buffers in the pool have shrunk.", | ||
}) | ||
|
||
shrinkAmount = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "shrink_amount", | ||
Help: "Total amount of bytes buffers in the pool have shrunk by.", | ||
}) | ||
|
||
checkoutDurationTotal = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "checkout_duration_total_us", | ||
Help: "Total duration in microseconds of buffer checkouts.", | ||
}) | ||
|
||
checkoutDuration = promauto.NewHistogram(prometheus.HistogramOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "checkout_duration_us", | ||
Help: "Duration in microseconds of buffer checkouts.", | ||
Buckets: []float64{50, 500, 5000}, | ||
}) | ||
|
||
checkoutCount = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "checkout_count", | ||
Help: "Total number of buffer checkouts.", | ||
}) | ||
|
||
totalWriteSize = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "total_write_size_bytes", | ||
Help: "Total size of data written by the BufferedFileWriter in bytes.", | ||
}) | ||
|
||
totalWriteDuration = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "total_write_duration_microseconds", | ||
Help: "Total duration of write operations by the BufferedFileWriter in microseconds.", | ||
}) | ||
|
||
diskWriteCount = promauto.NewCounter(prometheus.CounterOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "disk_write_count", | ||
Help: "Total number of times data was written to disk by the BufferedFileWriter.", | ||
}) | ||
|
||
fileSizeHistogram = promauto.NewHistogram(prometheus.HistogramOpts{ | ||
Namespace: common.MetricsNamespace, | ||
Subsystem: common.MetricsSubsystem, | ||
Name: "file_size_bytes", | ||
Help: "Sizes of files created by the BufferedFileWriter.", | ||
Buckets: prometheus.ExponentialBuckets(defaultThreshold, 2, 4), | ||
}) | ||
) |