Extract an estimate of the number of times a user "logs" in to Leaf from its logs #496
-
Hi Folks Our manage would like to obtain two metrics for the usage of Leaf:
The first is easy -- look for log lines which satisfy But logins is tricky. Log lines that satisfy Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi Arthur, Our leaf-log-parser repo has a handy script where we define log records of interest for auditing and so on (which we create SQL views from). "Created Access Token. Attestation:{@Attestation} Token:{Token}" is probably the log line to look for. That should contain the user, timestamp, and so on. Does that look like what you need? Best, |
Beta Was this translation helpful? Give feedback.
Hi Arthur,
Our leaf-log-parser repo has a handy script where we define log records of interest for auditing and so on (which we create SQL views from).
"Created Access Token. Attestation:{@Attestation} Token:{Token}" is probably the log line to look for. That should contain the user, timestamp, and so on. Does that look like what you need?
Best,
-nic