Hi Rama,
There is the logins.log file that logs information such as the IP a user connected from, their operator name & whether the login failed or was successful.
The file is located on the server in the folder: <installationdirectory>\var\<instancename>
There is no out-of-the-box feature for checking the login history but this information is available in the logs on your server but if you want to check this in adobe campaign.
You need to create your custom schema for connection history:
sample attributes for the same would be
<attribute label="Time of connection" name="connectionTime" type="datetime"/>
<attribute label="IP1" name="ip1" type="string"/>
<attribute label="IP2" name="ip2" type="string"/>
<attribute label="Login" name="login" type="string"/>
<attribute label="Status" name="status" type="string"/>
<attribute label="Parameters" name="params" type="string"/>
You can configure a new place to store you login.logs over the server if you want.
Write a new workflow to import those logs into adobe campaign and load these data into this table.
Sample login.log would look like this:
2017-09-07T00:48:20.425Z 000.000.00.000 106.101.90.249 admin OK allowHTTP|sessionTokenOnly|showErrors|allowDebug|allowUserPassword
Parse this line and store it in your schema.
Regards,
Amit