mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 20:52:33 +02:00
35 lines
693 B
Go
35 lines
693 B
Go
package monitor
|
|
|
|
import (
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/yusing/go-proxy/internal/watcher/health"
|
|
)
|
|
|
|
type FileServerHealthMonitor struct {
|
|
*monitor
|
|
path string
|
|
}
|
|
|
|
func NewFileServerHealthMonitor(config *health.HealthCheckConfig, path string) *FileServerHealthMonitor {
|
|
mon := &FileServerHealthMonitor{path: path}
|
|
mon.monitor = newMonitor(nil, config, mon.CheckHealth)
|
|
return mon
|
|
}
|
|
|
|
func (s *FileServerHealthMonitor) CheckHealth() (*health.HealthCheckResult, error) {
|
|
start := time.Now()
|
|
_, err := os.Stat(s.path)
|
|
|
|
detail := ""
|
|
if err != nil {
|
|
detail = err.Error()
|
|
}
|
|
|
|
return &health.HealthCheckResult{
|
|
Healthy: err == nil,
|
|
Latency: time.Since(start),
|
|
Detail: detail,
|
|
}, nil
|
|
}
|