1 [% PROCESS 'html-incblocks.txt' %]
3 title="Torrus Reports: " _ year
4 contentClass="SingleColumnContent"
7 <H1>Torrus report: [% monthName(month) %]
8 <A HREF="[% yearlyUrl(year) %]">[% year %]</A></H1>
10 [% INCLUDE treename %]
12 [% FOREACH reportname = data.keys.sort;
13 fieldshash = data.$reportname;
14 IF reportname == 'MonthlyUsage' %]
16 <TABLE CLASS="ReportTable">
17 <CAPTION CLASS="ReportTable">Monthly usage</CAPTION>
18 <TR CLASS="ReportHeadRow">
19 <TD CLASS="ReportHeadCell">Service ID</TD>
20 <TD CLASS="ReportHeadCell">Average</TD>
21 <TD CLASS="ReportHeadCell">95th<BR/>Percentile</TD>
22 <TD CLASS="ReportHeadCell">Maximum</TD>
23 <TD CLASS="ReportHeadCell">Unavailable<BR/>samples</TD>
24 <TD CLASS="ReportHeadCell">Volume</TD>
27 FOREACH serviceid = fieldshash.keys.sort;
28 rowCount = rowCount + 1;
30 <TR CLASS="ReportEvenRow">
32 <TR CLASS="ReportRow">
34 <TD CLASS="ReportFirstCell">
35 <A HREF="[% srvIdUrl(serviceid) %]">[% serviceid %]</A>
37 [% FOREACH varname = ['AVG', '95TH_PERCENTILE', 'MAX',
38 'UNAVAIL', 'VOLUME'] %]
39 <TD CLASS="ReportCell">
40 [% formatValue( fieldshash.$serviceid.$varname ) %]
49 <TABLE CLASS="ReportTable">
50 <CAPTION CLASS="ReportTable">[% reportname %]</CAPTION>
51 <TR CLASS="ReportHeadRow">
52 <TD CLASS="ReportHeadCell">Service ID</TD>
53 <TD CLASS="ReportHeadCell">Field</TD>
54 <TD CLASS="ReportHeadCell">Value</TD>
57 FOREACH serviceid = fieldshash.keys.sort;
58 FOREACH varname = fieldshash.$serviceid.keys.sort;
59 rowCount = rowCount + 1;
61 <TR CLASS="ReportEvenRow">
63 <TR CLASS="ReportRow">
65 <TD CLASS="ReportFirstCell">
66 <A HREF="[% srvIdUrl(serviceid) %]">[% serviceid %]</A>
68 <TD CLASS="ReportCell">
71 <TD CLASS="ReportCell">
72 [% formatValue( fieldshash.$serviceid.$varname ) %]
82 <DIV CLASS="ReportLegend">
84 <DIV CLASS="ReportLegendLine">
85 <SPAN CLASS="ReportLegendTerm">
88 <SPAN CLASS="ReportLegendDef">
89 the monthly average of 5-minute samples.
93 <DIV CLASS="ReportLegendLine">
94 <SPAN CLASS="ReportLegendTerm">
97 <SPAN CLASS="ReportLegendDef">
98 95% of the time, the usage is at or below this amount.
102 <DIV CLASS="ReportLegendLine">
103 <SPAN CLASS="ReportLegendTerm">
106 <SPAN CLASS="ReportLegendDef">
107 the maximum value among 5-minute samples.
111 <DIV CLASS="ReportLegendLine">
112 <SPAN CLASS="ReportLegendTerm">
115 <SPAN CLASS="ReportLegendDef">
116 how many 5-minute samples were missed from the measurements.
120 <DIV CLASS="ReportLegendLine">
121 <SPAN CLASS="ReportLegendTerm">
124 <SPAN CLASS="ReportLegendDef">
125 for traffic usage, this is the absolut volume of data in avaiable 5-minute
132 [% INCLUDE htmlend %]