Developer Documentation Library > Interviewer - Server > Configuration and customization > Web configuration files > Settings for the Concurrent Usage report
 
Settings for the Concurrent Usage report
The Web.config file for the Concurrent Usage report controls the following activity behavior:
limit the hourly report to a defined time range
limit the daily report to a defined date range
limit the monthly report to a defined date range
The file is: C:\InetPub\wwwroot\SPSSMR\ConcurrentUsageReport
Setting the hourly report’s time range
The HourlyReportMaxHours setting defines the maximum number of hours (1 to 100) to display in the hourly usage report. The default value is 48 hours. For example:
<appSettings>
  <add key="HourlyReportMaxHours" value="48"/>
</appSettings>
Setting the daily report’s date range
The DailyReportMaxDays setting defines the maximum number (1 to 100) of days to display in the daily usage report. The default value is 31 days. For example:
<appSettings>
  <add key="DailyReportMaxDays" value="31"/>
</appSettings>
Setting the monthly report’s date range
The MonthlyReportMaxMonths setting defines the maximum number (1 to 100) of months to display in the monthly usage report. The default value is 60. For example:
<appSettings>
  <add key="MonthlyReportMaxMonths" value="60"/>
</appSettings>
See also
Web configuration files