cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. X

How can I parse 'Security Log'?

kpark1
1-Newbie

How can I parse 'Security Log'?

Hi, all.

I am trying to parse the 'Security Log' because I have to make counting user login.

How can I parse it? Is it possible?

Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions

Why you want to parse it? You can access direcly from a service with SecurityLog Entity:

var logEntries =  Logs["SecurityLog"].QueryLogEntries(....);

var logEntries =  Logs["SecurityLog"].GetLogEntries(...);

View solution in original post

2 REPLIES 2

Why you want to parse it? You can access direcly from a service with SecurityLog Entity:

var logEntries =  Logs["SecurityLog"].QueryLogEntries(....);

var logEntries =  Logs["SecurityLog"].GetLogEntries(...);

kpark1
1-Newbie
(To:kpark1)

I want to count number of times users have logged in.

And I implemented it by your reply. Thank you.

Top Tags