mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
15 lines
357 B
Go
15 lines
357 B
Go
//go:build darwin
|
|
|
|
package metrics
|
|
|
|
import (
|
|
"github.com/Ehco1996/ehco/internal/config"
|
|
)
|
|
|
|
// RegisterNodeExporterMetrics is a no-op on Darwin/macOS
|
|
// node_exporter has compatibility issues on macOS, so we disable it
|
|
func RegisterNodeExporterMetrics(cfg *config.Config) error {
|
|
// node_exporter is not supported on macOS, skip registration
|
|
return nil
|
|
}
|