prysm-pulse/monitoring/journald/journald.go
Raul Jordan 9935ca3733
Move Shared/ Subpackages Into Monitoring/ Folder (#9591)
* add tracing

* monitoring pkg

* move prom

* Add client stats

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2021-09-14 20:59:51 +00:00

13 lines
192 B
Go

// +build !linux
package journald
import (
"fmt"
)
// Enable returns an error on non-Linux systems
func Enable() error {
return fmt.Errorf("journald is not supported in this platform")
}