Layla
Layla

Reputation: 13

How to capture SharePoint events from the UI?

I would need to capture events that users do on a SharePoint site (or at least Central Administration) - kind of "click on Site Settings" -> " click on Master pages gallery" etc...

I guess that's quite easy as a Sharepoint site is in the end a simple web site - but what would be the best approach?

Thank you!

Upvotes: 1

Views: 279

Answers (2)

John Hansen
John Hansen

Reputation: 288

MOSS Usage Tools from Codeplex is a solution that process SharePoint usage logs into BI. friendly repository. This solution can monitor, audit, and gain valuable insight from the content and activity information within MOSS http://usage.codeplex.com/

Upvotes: 3

Nat
Nat

Reputation: 14305

You could rely on the SharePoint STS usage logs to provide a list of pages that were visited by a given login.

The raw logs provide a list of every url visited. I used this post to create an app to import what I wanted to a database.

Upvotes: 1

Related Questions