Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 521 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 521 Bytes

nfsmon

Build Status GoDoc

nfsmon provides simple monitoring for NFS mounts. When a stale mount is detected, a user defined remount function is called.

Example Use:

package main

import "context"
import "github.com/glinton/nfsmon"

func main() {
  ctx := context.Background()
  nfsmon.Watch(ctx)
}