Administration Format

If the event category ID is SmLogAccessCat_Admin, the format is:
casso126
If the event category ID is SmLogAccessCat_Admin, the format is:
lpszEvent lpszHostName lpszTimeString "szClientIp szUserName"     szStatusMsg
Elements in the above format example are described as follows:
  • lpszEvent is the name (type) of the access event:
    SmLogAccessEvent_AdminLogin:lpszEvent = "AdminLogin"
    SmLogAccessEvent_AdminLogout:lpszEvent = "AdminLogout" 
    SmLogAccessEvent_AdminReject:lpszEvent = "AdminReject"
  • lpszHostName is the name of the host.
  • lpszTimeString is the timestamp of the occurrence of the event, in the format: [
    date
    /
    month
    /
    year
    :
    hour
    :
    minute
    :
    second 
     
    difference_from_GMT
    ]. For example:
    [27/Jun/2000:11:27:29 -0500]
  • szClientIp is the IP address of the client machine.
  • szUserName is the name of the user.
  • szStatusMsg is the message associated with the event. The message depends on the event type, as shown in the following table:
 
Event
Role of szStatusMsg
SmLogAccessEvent_AdminLogin
Holds the UserMsg returned by the authentication scheme.
SmLogAccessEvent_AdminReject
Holds the ErrorMsg returned by the authentication scheme
 
For example:
AdminLogin testbox [27/Jun/2000:11:26:50 -0500] 
   "190.158.4.90 siteminder"
In this example,
  • lpszEvent is AdminLogin
  • lpszHostName is testbox
  • lpszTimeString is [27/Jun/2000:11:26:50 -0500]
  • szClientIp is 190.158.4.90
  • szUserName is siteminder
  • szStatusMsg is not specified.