diff --git a/.gitignore b/.gitignore index c54031b..fb741ba 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ # Build output -/localagent.exe +/SystemMonitorAgent.exe *.exe *.exe~ *.dll diff --git a/README.md b/README.md index 196a91b..4ed0437 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ ``` -GOOS=windows GOARCH=amd64 go build -ldflags "-s -w" -o localagent.exe . +GOOS=windows GOARCH=amd64 go build -ldflags "-s -w" -o SystemMonitorAgent.exe . ``` \ No newline at end of file diff --git a/lib/agent/agent.go b/lib/agent/agent.go index f79be22..f0082f4 100644 --- a/lib/agent/agent.go +++ b/lib/agent/agent.go @@ -98,7 +98,7 @@ func (a *Agent) Serve() error { return fmt.Errorf("listen %s: %w", a.addr, err) } - fmt.Printf("Local Management Agent %s\nListening on http://%s\nPress Ctrl+C to stop.\n", config.Version, a.addr) + fmt.Printf("System Monitor Agent %s\nListening on http://%s\nPress Ctrl+C to stop.\n", config.Version, a.addr) ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt) defer stop() diff --git a/lib/agent/web/index.html b/lib/agent/web/index.html index 5927c1e..cdaa8f8 100644 --- a/lib/agent/web/index.html +++ b/lib/agent/web/index.html @@ -3,7 +3,7 @@ - Local Management Agent + System Monitor Agent