metrics/process_metrics_other.go

17 lines
198 B
Go
Raw Normal View History

2021-11-01 15:53:23 +03:00
//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.
}