Rename Local Management Agent to System Monitor Agent throughout the codebase, including updates to executable names, comments, and documentation. This change reflects a broader scope of functionality and improves clarity in the project's purpose.

This commit is contained in:
2026-08-28 13:26:50 +03:00
parent 6a070391c8
commit 09076079fb
9 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -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()