@@ -69,13 +69,18 @@ const (
69
69
TelemetryEnabledProperty = "telemetry_enabled"
70
70
MongoCLI = "mongocli"
71
71
AtlasCLI = "atlascli"
72
+ ContainerizedHostNameEnv = "MONGODB_ATLAS_IS_CONTAINERIZED"
73
+ GitHubActionsHostNameEnv = "GITHUB_ACTIONS"
74
+ AtlasActionHostNameEnv = "ATLAS_GITHUB_ACTION"
72
75
NativeHostName = "native"
73
- ContainerHostName = "container"
76
+ DockerContainerHostName = "container"
77
+ GitHubActionsHostName = "all_github_actions"
78
+ AtlasActionHostName = "atlascli_github_action"
74
79
)
75
80
76
81
var (
77
82
ToolName = MongoCLI
78
- HostName = NativeHostName
83
+ HostName = getConfigHostnameFromEnvs ()
79
84
UserAgent = fmt .Sprintf ("%s/%s (%s;%s;%s)" , ToolName , version .Version , runtime .GOOS , runtime .GOARCH , HostName )
80
85
defaultProfile = newProfile ()
81
86
)
@@ -175,6 +180,51 @@ func Exists(name string) bool {
175
180
return search .StringInSlice (List (), name )
176
181
}
177
182
183
+ // getConfigHostnameFromEnvs patches the agent hostname based on set env vars.
184
+ func getConfigHostnameFromEnvs () string {
185
+ var builder strings.Builder
186
+
187
+ envVars := []struct {
188
+ envName string
189
+ hostName string
190
+ }{
191
+ {AtlasActionHostNameEnv , AtlasActionHostName },
192
+ {GitHubActionsHostNameEnv , GitHubActionsHostName },
193
+ {ContainerizedHostNameEnv , DockerContainerHostName },
194
+ }
195
+
196
+ for _ , envVar := range envVars {
197
+ if envIsTrue (envVar .envName ) {
198
+ appendToHostName (& builder , envVar .hostName )
199
+ } else {
200
+ appendToHostName (& builder , "-" )
201
+ }
202
+ }
203
+ configHostName := builder .String ()
204
+
205
+ if isDefaultHostName (configHostName ) {
206
+ return NativeHostName
207
+ }
208
+ return configHostName
209
+ }
210
+
211
+ func envIsTrue (env string ) bool {
212
+ return IsTrue (os .Getenv (env ))
213
+ }
214
+
215
+ func appendToHostName (builder * strings.Builder , configVal string ) {
216
+ if builder .Len () > 0 {
217
+ builder .WriteString ("|" )
218
+ }
219
+ builder .WriteString (configVal )
220
+ }
221
+
222
+ // isDefaultHostName checks if the hostname is the default placeholder.
223
+ func isDefaultHostName (hostname string ) bool {
224
+ // Using strings.Count for a more dynamic approach.
225
+ return strings .Count (hostname , "-" ) == strings .Count (hostname , "|" )+ 1
226
+ }
227
+
178
228
func newProfile () * Profile {
179
229
configDir , err := CLIConfigHome ()
180
230
np := & Profile {
0 commit comments