Add missing method comment

This commit is contained in:
Daniel
2023-07-22 20:42:26 +02:00
parent c6569e64b1
commit e18d7ade3d

View File

@@ -313,6 +313,9 @@ func loadProcess(ctx context.Context, key string, pInfo *processInfo.Process) (*
return process, nil
}
// GetID returns the key that is used internally to identify the process.
// The ID consists of the PID and the start time of the process as reported by
// the system.
func (p *Process) GetID() string {
return p.processKey
}