From 7a24cc1f9bc4a2bf785ee4ea2546d99e67941588 Mon Sep 17 00:00:00 2001 From: Cody Lee Date: Sun, 11 Oct 2020 11:52:06 -0500 Subject: [PATCH] fix ids --- integrations/datadogunifi/ids.go | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/integrations/datadogunifi/ids.go b/integrations/datadogunifi/ids.go index 2b368f79..f4bb29e3 100644 --- a/integrations/datadogunifi/ids.go +++ b/integrations/datadogunifi/ids.go @@ -14,13 +14,12 @@ func (u *DatadogUnifi) reportIDS(r report, i *unifi.IDS) { tag("event_type", i.EventType), tag("proto", i.Proto), tag("app_proto", i.AppProto), - tag("usgip", i.USGIP), - tag("country_code", i.SourceIPGeo.CountryCode), - tag("country_name", i.SourceIPGeo.CountryName), - tag("city", i.SourceIPGeo.City), - tag("organization", i.SourceIPGeo.Organization), - tag("srcipASN", i.SrcIPASN), - tag("usgipASN", i.USGIPASN), + tag("usgip", i.Usgip), + tag("country_code", i.SrcipGeo.CountryCode), + tag("country_name", i.SrcipGeo.CountryName), + tag("city", i.SrcipGeo.City), + tag("srcipASN", i.SrcipASN), + tag("usgipASN", i.UsgipASN), tag("alert_category", i.InnerAlertCategory), tag("subsystem", i.Subsystem), tag("catname", i.Catname),