metrics/process_metrics_other.go
Aliaksandr Valialkin f05b7d77a2
go fmt
2021-11-01 14:53:23 +02:00

17 lines
198 B
Go

//go:build !linux
// +build !linux
package metrics
import (
"io"
)
func writeProcessMetrics(w io.Writer) {
// TODO: implement it
}
func writeFDMetrics(w io.Writer) {
// TODO: implement it.
}