Introduction
It is a common requirement to gather information around the Windows SharePoint site usage. Organizations prefer to find out the popular sites in their organizations are or what external WSS sites attract the most number of visitors. This will provide information necessary for an organization to identify the important sites in their environment and properly manage them with extra resources if necessary.
One of the common complains around accessing theses data are the inflexibility of gathering information in a central location. The administrator will have to navigate to the selected SharePoint site administration pages to access the data. This will become a more time consuming exercise when the administrator need to collect usage data from larger number of SharePoint sites.
In this article, I am looking at creating an ASP.NET web application that will populate a collection of SharePoint sites in a drop down list for a given SharePoint site collection. The web application will display the usage details of the selected SharePoint site from the list. This will help the SharePoint administrator to gather all SharePoint usage data from a central location with out have to navigate many different SharePoint site locations.
Usage Analysis Data Web Report
Figure 1 display a Usage Analysis data for a Windows SharePoint site. The users have the option of selecting a monthly or a daily report.
Figure 1: Monthly Usage Analysis Report
Usage Analysis Processing Reports
First of all let's have a look at what is Usage Analysis Reports in SharePoint. Theses reports will help the organizations to determine how the web sites are used in their environment. The data is taken from IIS Logs on the front end web servers and stored in to temporary files. The data is merged in to the content database on the back end SQL Servers when the daily log processing takes place.
Figure 2: Preserved log files folder structure with W3SVC* format
Figure 3: Separate directories for each virtual server and for each day
Setting up Usage Analysis Processing
- Click "Start -> All Programs -> Administrative Tools -> SharePoint Central Administration"
- This will open the "Windows SharePoint Services Central Administration" page
- Select the "Configure usage analysis processing" from the "Component Configuration" section as displayed in figure 4
Figure 4: Component Configuration section on the central administration page - The Configure Usage Analysis Processing page will open as displayed in Figure 5
Figure 5: Configure Usage Analysis Processing page - Select "Enable logging" check box in "Logging Settings" section
- The administrator can select a preferred file locations for the log files in "Log file location" box or use the default location C:\WINDOWS\system32\logfiles\STS
- Enter the number of log files to create in the "Number of log files to create" box. This can be between 1 and 30.
- Select "Enable usage analysis processing" check box in "Processing Settings" section.
- Select the time range that analysis process should run from "Run processing between these times daily". By default this is set to start at 1am daily. The administrator can allocate a time period that won't affect the demand on the site.
- Click "OK" to finish the configuration.
- Navigate to the site you prefer to view the report.
- Click Site Settings on top tool bar.
- Click Go to Site Administration link under Administration section as displayed in Figure 6
Figure 6: Site Settings page - Click View site usage data link under Management and Statistic section in Top-Level Site Administration page as displayed in Figure 7
Figure 7: Top-Level Site Administration page - The Site Usage Report page will open as displayed in Figure 8
Figure 8: Site Usage Report page
Site usage reports are useful for identifying which content on Windows SharePoint Services sites are being heavily used or used very little. This will help organizations to understand which sites are candidates for archiving and which sites should be kept online. In addition, this report contains information regarding how much storage space WSS sites are using. This page provides a report that contains following information:
- Pages that have been accessed on that site, including document libraries
- Users that have access the site
- Operating system of the user accessing the site
- Browser type
- Referrer URL
- Data can be displayed by monthly or daily summary format
Figure 9: Different reports available
//Get the site collection
SPSite mySiteCollection = new SPSite(txtWSSSiteUrl.Text);
//Get the details of the selected WSS site
SPWeb site = mySiteCollection.AllWebs[siteName];
The following table shows the members of the SPUsageReportType enumeration and a brief description
Name | Description |
browser | The type of Web browser used to visit the SharePoint site. All usage data refers specifically to visits from referring URLs external to the site. |
os | The operating system used on the client computer. All usage data refers specifically to visits from referring URLs external to the site. |
refUr | External URLs through which users navigated to the SharePoint site. |
url | URLs of pages that are visited or of pages for lists that are updated. Discussions about a page are counted as hits on that page. |
user | Users who visited the site. |
The following table shows the members of the SPUsagePeriodType enumeration and a brief description
Name | Description |
day | Returns usage information for each day during the past 31 days starting from the previous day |
lastMonth | Summarizes usage information for the last 31 days relative to the previous day |
Accessing Browser daily report
Accessing Browser monthly report
Accessing Operating System daily report
Accessing Operating System monthly report
Accessing refUrl monthly report
Deploying the Web Application to the SharePoint Portal Server
- Create the "UsageAnalysisData" Virtual directory under the portal web site in IIS
- Map the virtual directory to the physical file path (this should be done as apart of above step)
- Open the SharePoint Central Administration pages by clicking "Start > Administration tools > SharePoint Central Administration"
- Click "Windows SharePoint Services" link on the left hand side
- Select "Configure Virtual server setting" link from "Virtual Server Configuration" group
- Select your Portal server from the list
- Click "Defined managed path" link under Virtual Server Management group in Virtual Server setting page
- Type name of the virtual directory you created in first step in the Path section of Add new Path section
- Select "Exclude path" radio button under the type section
- Click "Ok"
- Then navigate to http://portal_site_name/UsageAnalysisData/MonitoringPage.aspx
Figure 10: A list of sub sites of the site collection
Figure 11: Daily Usage Analysis Report of a Windows SharePoint Site