fsmetric

package
v0.0.0-...-4810afc Latest Latest
Warning

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

Go to latest
Published: Apr 20, 2024 License: Apache-2.0, MIT Imports: 2 Imported by: 11

Documentation

Overview

Package fsmetric defines filesystem metrics.

Index

Constants

This section is empty.

Variables

View Source
var (
	Opens    = metric.MustCreateNewUint64Metric("/fs/opens", false, "Number of file opens.")
	Reads    = metric.MustCreateNewUint64Metric("/fs/reads", false, "Number of file reads.")
	ReadWait = metric.MustCreateNewUint64NanosecondsMetric("/fs/read_wait", false, "Time waiting on file reads, in nanoseconds.")
)

Metrics that apply to all filesystems.

View Source
var (
	GoferOpens9P      = metric.MustCreateNewUint64Metric("/gofer/opens_9p", false, "Number of times a file was opened from a gofer and did not have a host file descriptor.")
	GoferOpensHost    = metric.MustCreateNewUint64Metric("/gofer/opens_host", false, "Number of times a file was opened from a gofer and did have a host file descriptor.")
	GoferReads9P      = metric.MustCreateNewUint64Metric("/gofer/reads_9p", false, "Number of 9P file reads from a gofer.")
	GoferReadWait9P   = metric.MustCreateNewUint64NanosecondsMetric("/gofer/read_wait_9p", false, "Time waiting on 9P file reads from a gofer, in nanoseconds.")
	GoferReadsHost    = metric.MustCreateNewUint64Metric("/gofer/reads_host", false, "Number of host file reads from a gofer.")
	GoferReadWaitHost = metric.MustCreateNewUint64NanosecondsMetric("/gofer/read_wait_host", false, "Time waiting on host file reads from a gofer, in nanoseconds.")
)

Metrics that only apply to fs/gofer and fsimpl/gofer.

View Source
var (
	TmpfsOpensRO  = metric.MustCreateNewUint64Metric("/in_memory_file/opens_ro", false, "Number of times an in-memory file was opened in read-only mode.")
	TmpfsOpensW   = metric.MustCreateNewUint64Metric("/in_memory_file/opens_w", false, "Number of times an in-memory file was opened in write mode.")
	TmpfsReads    = metric.MustCreateNewUint64Metric("/in_memory_file/reads", false, "Number of in-memory file reads.")
	TmpfsReadWait = metric.MustCreateNewUint64NanosecondsMetric("/in_memory_file/read_wait", false, "Time waiting on in-memory file reads, in nanoseconds.")
)

Metrics that only apply to fs/tmpfs and fsimpl/tmpfs.

View Source
var RecordWaitTime = false

RecordWaitTime enables the ReadWait, GoferReadWait9P, GoferReadWaitHost, and TmpfsReadWait metrics. Enabling this comes at a CPU cost due to performing three clock reads per read call.

Note that this is only performed in the direct read path, and may not be consistently applied for other forms of reads, such as splice.

Functions

func FinishReadWait

func FinishReadWait(m *metric.Uint64Metric, start time.Time)

FinishReadWait indicates the end of a file read whose time is accounted by m. start must be the value returned by the corresponding call to StartReadWait.

FinishReadWait is marked nosplit for performance since it's often called from defer statements, which prevents it from being inlined (https://github.com/golang/go/issues/38471).

func StartReadWait

func StartReadWait() time.Time

StartReadWait indicates the beginning of a file read.

Types

This section is empty.

Jump to

Keyboard shortcuts

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