We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd38186 commit c52dd26Copy full SHA for c52dd26
internal/agent/host.go
@@ -19,6 +19,7 @@ import (
19
type HostInfo struct {
20
AgentVersion string `json:"agent_version"`
21
AgentExecutablePath string `json:"agent_executable_path"`
22
+ AgentApp string `json:"agent_app"`
23
ServiceExecutablePath string `json:"service_executable_path"`
24
HostName string `json:"hostname"`
25
MacAddress *string `json:"mac_address"`
@@ -225,6 +226,7 @@ func (hostInfo *HostInfo) Load(ctx context.Context, orgId string) error {
225
226
hostInfo.IsEntraConnectServer = isEntraConnectServer
227
hostInfo.EntraDomain = entraDomain
228
hostInfo.OrgId = orgId
229
+ hostInfo.AgentApp = "agent-smith-go"
230
231
return nil
232
}
0 commit comments