mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 01:18:42 +00:00
Website: fix incorrect conditional statement in Datadog script (#16583)
Changes: - Updated a conditional statement in the `send-aggregated-metrics-to-datadog` script. (`===` » `!==`)
This commit is contained in:
parent
db58539c9d
commit
c5736af55e
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ module.exports = {
|
|||
}
|
||||
|
||||
for(let version of combinedHostsEnrolledByOsqueryVersion) {
|
||||
if(version.osqueryVersion === ''){
|
||||
if(version.osqueryVersion !== ''){
|
||||
let metricToAdd = {
|
||||
metric: 'usage_statistics_v2.host_count_by_osquery_version',
|
||||
type: 3,
|
||||
|
|
|
|||
Loading…
Reference in a new issue