using BI platform 4.1 with AD authentication. I want to be able to track failed and succesfull logins via Active directory to both the CMC and BI Launchpad. Using the audit database with the query (or something similar) below i can find succesfull logins to the CMC but not the bi launchpad. How do i find the successfull and failed logins for both? Is there a way in the biplatform / audit database to track the ip address of the logins as well?
select a.user_name, a.user_id, a.start_time, a.duration_ms, e.Status_ID, e.Status_Name
from
dbo.ADS_EVENT a leftouterjoin dbo.ADS_STATUS_STR e on a.status_id=e.status_id and a.event_type_id=e.event_type_id and e.language='en'
where Status_Name like'%Log%' and a.User_ID <> '0'
thanks for any help.