Skip to content

Commit 2b37fbb

Browse files
authored
use windows ama only msi and non geneva mode for insights metrics (#1337)
1 parent b780558 commit 2b37fbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/plugins/go/src/oms.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1038,7 +1038,7 @@ func PostTelegrafMetricsToLA(telegrafRecords []map[interface{}]interface{}) int
10381038
Log(message)
10391039
}
10401040

1041-
if IsWindows == false || IsAADMSIAuthMode { //for linux and for windows MSI Auth: mdsd/ama route
1041+
if IsWindows == false || (IsAADMSIAuthMode && !IsGenevaLogsIntegrationEnabled) { //for linux and for windows MSI Auth and non geneva mode: mdsd/ama route
10421042
var msgPackEntries []MsgPackEntry
10431043
var i int
10441044
start := time.Now()
@@ -1136,7 +1136,7 @@ func PostTelegrafMetricsToLA(telegrafRecords []map[interface{}]interface{}) int
11361136
}
11371137
}
11381138

1139-
} else { // for windows legacy auth, ODS direct
1139+
} else { // for windows legacy auth or windows msi auth in geneva mode, ODS direct
11401140

11411141
var metrics []laTelegrafMetric
11421142
var i int

0 commit comments

Comments
 (0)