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 to display in the hourly usage report. The value should be between 1 and 100. 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 of days to display in the daily usage report. The value should be between 1 and 100. 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 of months to display in the monthly usage report. The value should be between 1 and 100. The default value is 60 days. For example:
<appSettings>
  <add key="MonthlyReportMaxMonths" value="60"/>
</appSettings>
See also
Web configuration files