Description

This article helps to explain possible way to view user login information in Paragon GUI.*(23.X or 24.X)

Solution

As per current paragon automation 1.0 design-

  • Currently, in paragon automation, audit logs are not designed to showcase login related information for user.
  • Also we have the below DB query which user can use to check the details about last login under iam db -


SELECT

   name AS username,

   first_name,

   last_name,

   to_char(to_timestamp(last_login_at / 1000, 'yyyy-mm-dd HH24:MI:SS') AS last_login_time

FROM

   user_detail

WHERE

   last_login_at IS NOT NULL

ORDER BY

   last_login_at DESC ;


  • User can also integrate iam pod log with the Splunk Forwarder by keywords lookup such as “Authentication” =
    • This will also help but yes if pod restart then if running on a single node, this might stop the log forwarding.
    • We can try with AI to generate script to fetch iam pod name and generate the logs.


Other than this, in the current design from GUI or DB we only have limited options.

Modification History

2025-09-30 : Article Created