We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b7c0f commit 45e6ba6Copy full SHA for 45e6ba6
agent/http.go
@@ -98,11 +98,12 @@ func (a *Agent) createAgentProcess(proc *hostProc) *types.AgentProcess {
98
log.Debugf("Cmdline could not found for %d\n", proc.process.Pid)
99
}
100
return &types.AgentProcess{
101
- Laddr: types.IPPort{IP: proc.conn.Laddr.IP, Port: proc.conn.Laddr.Port},
102
- Status: proc.conn.Status,
103
- Pid: proc.conn.Pid,
104
- Name: name,
105
- CmdLine: cl,
+ Laddr: types.IPPort{IP: proc.conn.Laddr.IP, Port: proc.conn.Laddr.Port},
+ Status: proc.conn.Status,
+ Pid: proc.conn.Pid,
+ Name: name,
+ CmdLine: cl,
106
+ Hostname: a.Hostname,
107
108
109
0 commit comments