I've got the Active Directory app installed, and everything is working except the User Logon Failures tab. The search is:
search eventtype=msad-failed-user-logons (host="HOSTNAME") | fields _time,signature,src_ip,src_host,src_nt_domain,user,Logon_Type
However, the data is coming in tagged with the host as "HOSTNAME.domain". If I modify the search manually to say:
search eventtype=msad-failed-user-logons (host="HOSTNAME.domain") | fields _time,signature,src_ip,src_host,src_nt_domain,user,Logon_Type
Everything works. Is there a conf file I need to change somewhere?
... View more