mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-23 12:30:50 +01:00
dcbfe2c8fa
Signed-off-by: Konstantina Chremmou <Konstantina.Chremmou@cloud.com>
1025 lines
34 KiB
XML
1025 lines
34 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
|
|
<DataSources>
|
|
<DataSource Name="KirkwoodDBConnectionString">
|
|
<rd:DataSourceID>cebdff63-8609-4119-9275-e0643b844bb2</rd:DataSourceID>
|
|
<ConnectionProperties>
|
|
<DataProvider>SQL</DataProvider>
|
|
<ConnectString />
|
|
</ConnectionProperties>
|
|
</DataSource>
|
|
</DataSources>
|
|
<InteractiveHeight>11in</InteractiveHeight>
|
|
<ReportParameters>
|
|
<ReportParameter Name="LocaleCode">
|
|
<DataType>String</DataType>
|
|
<Prompt>LocaleCode</Prompt>
|
|
</ReportParameter>
|
|
<ReportParameter Name="Start">
|
|
<DataType>Integer</DataType>
|
|
<Prompt>Start</Prompt>
|
|
</ReportParameter>
|
|
<ReportParameter Name="End">
|
|
<DataType>Integer</DataType>
|
|
<Prompt>End</Prompt>
|
|
</ReportParameter>
|
|
<ReportParameter Name="PoolName">
|
|
<DataType>String</DataType>
|
|
<Prompt>PoolName</Prompt>
|
|
</ReportParameter>
|
|
<ReportParameter Name="PoolID">
|
|
<DataType>String</DataType>
|
|
<Prompt>PoolID</Prompt>
|
|
</ReportParameter>
|
|
<ReportParameter Name="ParamLabels">
|
|
<DataType>String</DataType>
|
|
<Prompt>ParamLabels</Prompt>
|
|
</ReportParameter>
|
|
<ReportParameter Name="ParamValues">
|
|
<DataType>String</DataType>
|
|
<Prompt>ParamValues</Prompt>
|
|
</ReportParameter>
|
|
<ReportParameter Name="UTCOffset">
|
|
<DataType>Integer</DataType>
|
|
<Prompt>UTCOffset</Prompt>
|
|
</ReportParameter>
|
|
</ReportParameters>
|
|
<rd:DrawGrid>true</rd:DrawGrid>
|
|
<InteractiveWidth>8.5in</InteractiveWidth>
|
|
<rd:SnapToGrid>true</rd:SnapToGrid>
|
|
<RightMargin>1in</RightMargin>
|
|
<LeftMargin>1in</LeftMargin>
|
|
<BottomMargin>1in</BottomMargin>
|
|
<rd:ReportID>582e21b6-6d20-45c8-85eb-4be746aa01de</rd:ReportID>
|
|
<DataSets>
|
|
<DataSet Name="KirkwoodDBDataSetLocal">
|
|
<Fields>
|
|
<Field Name="day">
|
|
<DataField>day</DataField>
|
|
<rd:TypeName>System.DateTime</rd:TypeName>
|
|
</Field>
|
|
<Field Name="hour">
|
|
<DataField>hour</DataField>
|
|
<rd:TypeName>System.String</rd:TypeName>
|
|
</Field>
|
|
<Field Name="hostid">
|
|
<DataField>hostid</DataField>
|
|
<rd:TypeName>System.Int32</rd:TypeName>
|
|
</Field>
|
|
<Field Name="name">
|
|
<DataField>name</DataField>
|
|
<rd:TypeName>System.String</rd:TypeName>
|
|
</Field>
|
|
<Field Name="start_time">
|
|
<DataField>start_time</DataField>
|
|
<rd:TypeName>System.DateTime</rd:TypeName>
|
|
</Field>
|
|
<Field Name="avg_total_cpu">
|
|
<DataField>avg_total_cpu</DataField>
|
|
<rd:TypeName>System.Decimal</rd:TypeName>
|
|
</Field>
|
|
<Field Name="avg_free_mem">
|
|
<DataField>avg_free_mem</DataField>
|
|
<rd:TypeName>System.Int64</rd:TypeName>
|
|
</Field>
|
|
<Field Name="avg_total_pif_read_per_sec">
|
|
<DataField>avg_total_pif_read_per_sec</DataField>
|
|
<rd:TypeName>System.Decimal</rd:TypeName>
|
|
</Field>
|
|
<Field Name="avg_total_pif_write_per_sec">
|
|
<DataField>avg_total_pif_write_per_sec</DataField>
|
|
<rd:TypeName>System.Decimal</rd:TypeName>
|
|
</Field>
|
|
<Field Name="optimized_moves">
|
|
<DataField>optimized_moves</DataField>
|
|
<rd:TypeName>System.Int32</rd:TypeName>
|
|
</Field>
|
|
</Fields>
|
|
<Query>
|
|
<DataSourceName>KirkwoodDBConnectionString</DataSourceName>
|
|
<CommandText />
|
|
<rd:UseGenericDesigner>true</rd:UseGenericDesigner>
|
|
</Query>
|
|
</DataSet>
|
|
</DataSets>
|
|
<Code>
|
|
Function GetLabel(Label as String) as String
|
|
|
|
Dim i As Integer
|
|
Dim Names() As String
|
|
Dim Values() As String
|
|
Dim Param As Parameter = Report.Parameters!ParamLabels
|
|
Dim ParamVal As Parameter = Report.Parameters!ParamValues
|
|
|
|
Names = Split(Param.Value.ToString(), "|")
|
|
Values = Split(ParamVal.Value.ToString(), "|")
|
|
|
|
For i = 0 to Ubound(Names)
|
|
If (Names(i) = Label) Then Return Values(i)
|
|
Next i
|
|
|
|
Return Label
|
|
|
|
End Function
|
|
|
|
|
|
Function GetDateFromOffset(Offset as Integer) As String
|
|
|
|
Dim currentDate As DateTime = Now
|
|
Return DateAdd( "D", Offset, Now).ToShortDateString()
|
|
|
|
|
|
End Function
|
|
|
|
|
|
Function GetPageNumberText() As String
|
|
|
|
|
|
Dim strPageFormatString As String = String.Empty
|
|
strPageFormatString = System.String.Format(GetLabel("LBL_FOOTER_PAGE"), Report.Globals!PageNumber, Report.Globals!TotalPages)
|
|
Return strPageFormatString
|
|
|
|
End Function
|
|
</Code>
|
|
<Width>8.5in</Width>
|
|
<Body>
|
|
<ReportItems>
|
|
<Chart Name="chart4">
|
|
<Legend>
|
|
<Visible>true</Visible>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
<Position>RightCenter</Position>
|
|
</Legend>
|
|
<CategoryAxis>
|
|
<Axis>
|
|
<Title />
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
<Format>d</Format>
|
|
</Style>
|
|
<MajorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MajorGridLines>
|
|
<MinorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MinorGridLines>
|
|
<MajorTickMarks>Outside</MajorTickMarks>
|
|
<Min>0</Min>
|
|
<Visible>true</Visible>
|
|
</Axis>
|
|
</CategoryAxis>
|
|
<ZIndex>5</ZIndex>
|
|
<DataSetName>KirkwoodDBDataSetLocal</DataSetName>
|
|
<PlotArea>
|
|
<Style>
|
|
<BackgroundColor>White</BackgroundColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</PlotArea>
|
|
<ThreeDProperties>
|
|
<Rotation>30</Rotation>
|
|
<Inclination>30</Inclination>
|
|
<Shading>Simple</Shading>
|
|
<WallThickness>50</WallThickness>
|
|
</ThreeDProperties>
|
|
<PointWidth>15</PointWidth>
|
|
<SeriesGroupings>
|
|
<SeriesGrouping>
|
|
<StaticSeries>
|
|
<StaticMember>
|
|
<Label>=Code.GetLabel("LBL_OPTIMIZATION_EVENT")</Label>
|
|
</StaticMember>
|
|
<StaticMember>
|
|
<Label>=Code.GetLabel("LBL_AVG_NETWORK_WRITES")</Label>
|
|
</StaticMember>
|
|
</StaticSeries>
|
|
</SeriesGrouping>
|
|
</SeriesGroupings>
|
|
<Top>8.375in</Top>
|
|
<Subtype>Plain</Subtype>
|
|
<ValueAxis>
|
|
<Axis>
|
|
<Title>
|
|
<Caption>=Code.GetLabel("LBL_AVG_BYTES_PER_SECOND")</Caption>
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
</Title>
|
|
<MajorGridLines>
|
|
<ShowGridLines>true</ShowGridLines>
|
|
<Style>
|
|
<BorderColor>
|
|
<Default>Gray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Dotted</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MajorGridLines>
|
|
<MinorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MinorGridLines>
|
|
<MajorTickMarks>Outside</MajorTickMarks>
|
|
<Min>0</Min>
|
|
<Visible>true</Visible>
|
|
<Scalar>true</Scalar>
|
|
</Axis>
|
|
</ValueAxis>
|
|
<Type>Column</Type>
|
|
<Width>8.25in</Width>
|
|
<CategoryGroupings>
|
|
<CategoryGrouping>
|
|
<DynamicCategories>
|
|
<Grouping Name="chart4_CategoryGroup1">
|
|
<GroupExpressions>
|
|
<GroupExpression>=Fields!day.Value</GroupExpression>
|
|
</GroupExpressions>
|
|
</Grouping>
|
|
<Sorting>
|
|
<SortBy>
|
|
<SortExpression>=Fields!day.Value</SortExpression>
|
|
<Direction>Ascending</Direction>
|
|
</SortBy>
|
|
</Sorting>
|
|
<Label>=Fields!day.Value</Label>
|
|
</DynamicCategories>
|
|
</CategoryGrouping>
|
|
</CategoryGroupings>
|
|
<Palette>Default</Palette>
|
|
<ChartData>
|
|
<ChartSeries>
|
|
<DataPoints>
|
|
<DataPoint>
|
|
<DataValues>
|
|
<DataValue>
|
|
<Value>=iif(Avg(Fields!optimized_moves.Value) > 0, Max(Fields!avg_total_pif_write_per_sec.Value, "KirkwoodDBDataSetLocal"), 0)</Value>
|
|
</DataValue>
|
|
</DataValues>
|
|
<DataLabel />
|
|
<Style>
|
|
<BackgroundColor>DodgerBlue</BackgroundColor>
|
|
<BackgroundGradientEndColor>LightSkyBlue</BackgroundGradientEndColor>
|
|
<BackgroundGradientType>VerticalCenter</BackgroundGradientType>
|
|
<BorderColor>
|
|
<Default>Black</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<Marker>
|
|
<Size>6pt</Size>
|
|
</Marker>
|
|
</DataPoint>
|
|
</DataPoints>
|
|
</ChartSeries>
|
|
<ChartSeries>
|
|
<DataPoints>
|
|
<DataPoint>
|
|
<DataValues>
|
|
<DataValue>
|
|
<Value>=iif(Avg(Fields!avg_total_pif_write_per_sec.Value) > 0, Avg(Fields!avg_total_pif_write_per_sec.Value), 0)</Value>
|
|
</DataValue>
|
|
</DataValues>
|
|
<DataLabel />
|
|
<Style>
|
|
<BackgroundColor>Black</BackgroundColor>
|
|
<BorderColor>
|
|
<Default>Navy</Default>
|
|
</BorderColor>
|
|
<BorderWidth>
|
|
<Default>2.25pt</Default>
|
|
</BorderWidth>
|
|
</Style>
|
|
<Marker>
|
|
<Type>Diamond</Type>
|
|
<Size>4pt</Size>
|
|
</Marker>
|
|
</DataPoint>
|
|
</DataPoints>
|
|
<PlotType>Line</PlotType>
|
|
</ChartSeries>
|
|
</ChartData>
|
|
<Style>
|
|
<BackgroundColor>LightGrey</BackgroundColor>
|
|
<BorderColor>
|
|
<Default>DarkGray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<Title>
|
|
<Caption>=Code.GetLabel("LBL_AVERAGE_NETWORK_WRITES")</Caption>
|
|
</Title>
|
|
<Height>2.375in</Height>
|
|
<Left>0.125in</Left>
|
|
</Chart>
|
|
<Textbox Name="textbox12">
|
|
<Top>0.01in</Top>
|
|
<Width>4.75in</Width>
|
|
<Style>
|
|
<Color>Navy</Color>
|
|
<BackgroundColor>LightGrey</BackgroundColor>
|
|
<BorderStyle>
|
|
<Top>Solid</Top>
|
|
<Bottom>Solid</Bottom>
|
|
</BorderStyle>
|
|
<FontFamily>Tahoma</FontFamily>
|
|
<FontSize>12pt</FontSize>
|
|
<FontWeight>700</FontWeight>
|
|
<PaddingLeft>2pt</PaddingLeft>
|
|
<PaddingRight>2pt</PaddingRight>
|
|
<PaddingTop>2pt</PaddingTop>
|
|
<PaddingBottom>2pt</PaddingBottom>
|
|
</Style>
|
|
<ZIndex>4</ZIndex>
|
|
<CanGrow>true</CanGrow>
|
|
<Left>3.625in</Left>
|
|
<Height>0.30083in</Height>
|
|
<Value>=Parameters!PoolName.Value</Value>
|
|
</Textbox>
|
|
<Textbox Name="textbox10">
|
|
<Top>0.01in</Top>
|
|
<Width>8.25in</Width>
|
|
<Style>
|
|
<Color>Navy</Color>
|
|
<BackgroundColor>LightGrey</BackgroundColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
<FontFamily>Tahoma</FontFamily>
|
|
<FontSize>12pt</FontSize>
|
|
<FontWeight>700</FontWeight>
|
|
<PaddingLeft>2pt</PaddingLeft>
|
|
<PaddingRight>2pt</PaddingRight>
|
|
<PaddingTop>2pt</PaddingTop>
|
|
<PaddingBottom>2pt</PaddingBottom>
|
|
</Style>
|
|
<ZIndex>3</ZIndex>
|
|
<CanGrow>true</CanGrow>
|
|
<Left>0.125in</Left>
|
|
<Height>0.30083in</Height>
|
|
<Value>=Code.GetLabel("LBL_POOL_OPT_PERF_HISTORY") + ": "</Value>
|
|
</Textbox>
|
|
<Chart Name="chart3">
|
|
<Legend>
|
|
<Visible>true</Visible>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
<Position>RightCenter</Position>
|
|
<Layout>Table</Layout>
|
|
</Legend>
|
|
<CategoryAxis>
|
|
<Axis>
|
|
<Title />
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
<Format>d</Format>
|
|
</Style>
|
|
<MajorGridLines>
|
|
<Style>
|
|
<BorderColor>
|
|
<Default>Gray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MajorGridLines>
|
|
<MinorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MinorGridLines>
|
|
<MajorTickMarks>Outside</MajorTickMarks>
|
|
<Min>0</Min>
|
|
<Visible>true</Visible>
|
|
</Axis>
|
|
</CategoryAxis>
|
|
<ZIndex>2</ZIndex>
|
|
<DataSetName>KirkwoodDBDataSetLocal</DataSetName>
|
|
<PlotArea>
|
|
<Style>
|
|
<BackgroundColor>White</BackgroundColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</PlotArea>
|
|
<ThreeDProperties>
|
|
<Rotation>30</Rotation>
|
|
<Inclination>30</Inclination>
|
|
<Shading>Simple</Shading>
|
|
<WallThickness>50</WallThickness>
|
|
</ThreeDProperties>
|
|
<PointWidth>15</PointWidth>
|
|
<SeriesGroupings>
|
|
<SeriesGrouping>
|
|
<StaticSeries>
|
|
<StaticMember>
|
|
<Label>=Code.GetLabel("LBL_OPTIMIZATION_EVENT")</Label>
|
|
</StaticMember>
|
|
<StaticMember>
|
|
<Label>=Code.GetLabel("LBL_AVG_NETWORK_READS")</Label>
|
|
</StaticMember>
|
|
</StaticSeries>
|
|
</SeriesGrouping>
|
|
</SeriesGroupings>
|
|
<Top>5.75in</Top>
|
|
<Subtype>Plain</Subtype>
|
|
<ValueAxis>
|
|
<Axis>
|
|
<Title>
|
|
<Caption>=Code.GetLabel("LBL_AVG_BYTES_PER_SECOND")</Caption>
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
</Title>
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
<MajorGridLines>
|
|
<ShowGridLines>true</ShowGridLines>
|
|
<Style>
|
|
<BorderColor>
|
|
<Default>Gray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Dotted</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MajorGridLines>
|
|
<MinorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MinorGridLines>
|
|
<MajorTickMarks>Outside</MajorTickMarks>
|
|
<Min>0</Min>
|
|
<Visible>true</Visible>
|
|
<Scalar>true</Scalar>
|
|
</Axis>
|
|
</ValueAxis>
|
|
<Type>Column</Type>
|
|
<Width>8.25in</Width>
|
|
<CategoryGroupings>
|
|
<CategoryGrouping>
|
|
<DynamicCategories>
|
|
<Grouping Name="chart3_CategoryGroup1">
|
|
<GroupExpressions>
|
|
<GroupExpression>=Fields!day.Value</GroupExpression>
|
|
</GroupExpressions>
|
|
</Grouping>
|
|
<Sorting>
|
|
<SortBy>
|
|
<SortExpression>=Fields!day.Value</SortExpression>
|
|
<Direction>Ascending</Direction>
|
|
</SortBy>
|
|
</Sorting>
|
|
<Label>=Fields!day.Value</Label>
|
|
</DynamicCategories>
|
|
</CategoryGrouping>
|
|
</CategoryGroupings>
|
|
<Palette>Default</Palette>
|
|
<ChartData>
|
|
<ChartSeries>
|
|
<DataPoints>
|
|
<DataPoint>
|
|
<DataValues>
|
|
<DataValue>
|
|
<Value>=iif(Avg(Fields!optimized_moves.Value) > 0, Max(Fields!avg_total_pif_read_per_sec.Value, "KirkwoodDBDataSetLocal"), 0)</Value>
|
|
</DataValue>
|
|
</DataValues>
|
|
<DataLabel />
|
|
<Style>
|
|
<BackgroundColor>DodgerBlue</BackgroundColor>
|
|
<BackgroundGradientEndColor>LightSkyBlue</BackgroundGradientEndColor>
|
|
<BackgroundGradientType>VerticalCenter</BackgroundGradientType>
|
|
<BorderColor>
|
|
<Default>Black</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<Marker>
|
|
<Size>6pt</Size>
|
|
</Marker>
|
|
</DataPoint>
|
|
</DataPoints>
|
|
</ChartSeries>
|
|
<ChartSeries>
|
|
<DataPoints>
|
|
<DataPoint>
|
|
<DataValues>
|
|
<DataValue>
|
|
<Value>=iif(Avg(Fields!avg_total_pif_read_per_sec.Value) > 0, Avg(Fields!avg_total_pif_read_per_sec.Value), 0)</Value>
|
|
</DataValue>
|
|
</DataValues>
|
|
<DataLabel />
|
|
<Style>
|
|
<BackgroundColor>Black</BackgroundColor>
|
|
<BorderColor>
|
|
<Default>Navy</Default>
|
|
</BorderColor>
|
|
<BorderWidth>
|
|
<Default>2.25pt</Default>
|
|
</BorderWidth>
|
|
</Style>
|
|
<Marker>
|
|
<Type>Diamond</Type>
|
|
<Size>4pt</Size>
|
|
</Marker>
|
|
</DataPoint>
|
|
</DataPoints>
|
|
<PlotType>Line</PlotType>
|
|
</ChartSeries>
|
|
</ChartData>
|
|
<Style>
|
|
<BackgroundColor>LightGrey</BackgroundColor>
|
|
<BorderColor>
|
|
<Default>DarkGray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<Title>
|
|
<Caption>=Code.GetLabel("LBL_AVERAGE_NETWORK_READS")</Caption>
|
|
</Title>
|
|
<Height>2.375in</Height>
|
|
<Left>0.125in</Left>
|
|
</Chart>
|
|
<Chart Name="chart2">
|
|
<Legend>
|
|
<Visible>true</Visible>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
<Position>RightCenter</Position>
|
|
</Legend>
|
|
<CategoryAxis>
|
|
<Axis>
|
|
<Title />
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
<Format>d</Format>
|
|
</Style>
|
|
<MajorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MajorGridLines>
|
|
<MinorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MinorGridLines>
|
|
<MajorTickMarks>Outside</MajorTickMarks>
|
|
<Min>0</Min>
|
|
<Visible>true</Visible>
|
|
</Axis>
|
|
</CategoryAxis>
|
|
<ZIndex>1</ZIndex>
|
|
<DataSetName>KirkwoodDBDataSetLocal</DataSetName>
|
|
<PlotArea>
|
|
<Style>
|
|
<BackgroundColor>White</BackgroundColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</PlotArea>
|
|
<ThreeDProperties>
|
|
<Rotation>30</Rotation>
|
|
<Inclination>30</Inclination>
|
|
<Shading>Simple</Shading>
|
|
<WallThickness>50</WallThickness>
|
|
</ThreeDProperties>
|
|
<PointWidth>15</PointWidth>
|
|
<SeriesGroupings>
|
|
<SeriesGrouping>
|
|
<StaticSeries>
|
|
<StaticMember>
|
|
<Label>=Code.GetLabel("LBL_OPTIMIZATION_EVENT")</Label>
|
|
</StaticMember>
|
|
<StaticMember>
|
|
<Label>=Code.GetLabel("LBL_AVG_FREE_MEMORY")</Label>
|
|
</StaticMember>
|
|
</StaticSeries>
|
|
</SeriesGrouping>
|
|
</SeriesGroupings>
|
|
<Top>3.125in</Top>
|
|
<Subtype>Plain</Subtype>
|
|
<ValueAxis>
|
|
<Axis>
|
|
<Title>
|
|
<Caption>=Code.GetLabel("LBL_AVG_FREE_MEMORY_MB")</Caption>
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
</Title>
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
<MajorGridLines>
|
|
<ShowGridLines>true</ShowGridLines>
|
|
<Style>
|
|
<BorderColor>
|
|
<Default>Gray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Dotted</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MajorGridLines>
|
|
<MinorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MinorGridLines>
|
|
<MajorTickMarks>Outside</MajorTickMarks>
|
|
<Min>0</Min>
|
|
<Visible>true</Visible>
|
|
<Scalar>true</Scalar>
|
|
</Axis>
|
|
</ValueAxis>
|
|
<Type>Column</Type>
|
|
<Width>8.25in</Width>
|
|
<CategoryGroupings>
|
|
<CategoryGrouping>
|
|
<DynamicCategories>
|
|
<Grouping Name="chart2_CategoryGroup1">
|
|
<GroupExpressions>
|
|
<GroupExpression>=Fields!day.Value</GroupExpression>
|
|
</GroupExpressions>
|
|
</Grouping>
|
|
<Sorting>
|
|
<SortBy>
|
|
<SortExpression>=Fields!day.Value</SortExpression>
|
|
<Direction>Ascending</Direction>
|
|
</SortBy>
|
|
</Sorting>
|
|
<Label>=Fields!day.Value</Label>
|
|
</DynamicCategories>
|
|
</CategoryGrouping>
|
|
</CategoryGroupings>
|
|
<Palette>Default</Palette>
|
|
<ChartData>
|
|
<ChartSeries>
|
|
<DataPoints>
|
|
<DataPoint>
|
|
<DataValues>
|
|
<DataValue>
|
|
<Value>=iif(Avg(Fields!optimized_moves.Value) > 0, Max((Fields!avg_free_mem.Value)/(1024 * 1024), "KirkwoodDBDataSetLocal"), 0)</Value>
|
|
</DataValue>
|
|
</DataValues>
|
|
<DataLabel />
|
|
<Style>
|
|
<BackgroundColor>DodgerBlue</BackgroundColor>
|
|
<BackgroundGradientEndColor>LightSkyBlue</BackgroundGradientEndColor>
|
|
<BackgroundGradientType>VerticalCenter</BackgroundGradientType>
|
|
<BorderColor>
|
|
<Default>Black</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<Marker>
|
|
<Size>6pt</Size>
|
|
</Marker>
|
|
</DataPoint>
|
|
</DataPoints>
|
|
</ChartSeries>
|
|
<ChartSeries>
|
|
<DataPoints>
|
|
<DataPoint>
|
|
<DataValues>
|
|
<DataValue>
|
|
<Value>=iif(Avg(Fields!avg_free_mem.Value) > 0, Avg(Fields!avg_free_mem.Value)/(1024 * 1024), 0)</Value>
|
|
</DataValue>
|
|
</DataValues>
|
|
<DataLabel />
|
|
<Style>
|
|
<BackgroundColor>Black</BackgroundColor>
|
|
<BorderColor>
|
|
<Default>Navy</Default>
|
|
</BorderColor>
|
|
<BorderWidth>
|
|
<Default>2.25pt</Default>
|
|
</BorderWidth>
|
|
</Style>
|
|
<Marker>
|
|
<Type>Diamond</Type>
|
|
<Size>4pt</Size>
|
|
</Marker>
|
|
</DataPoint>
|
|
</DataPoints>
|
|
<PlotType>Line</PlotType>
|
|
</ChartSeries>
|
|
</ChartData>
|
|
<Style>
|
|
<BackgroundColor>LightGrey</BackgroundColor>
|
|
<BorderColor>
|
|
<Default>DarkGray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<Title>
|
|
<Caption>=Code.GetLabel("LBL_AVERAGE_FREE_MEMORY")</Caption>
|
|
</Title>
|
|
<Height>2.375in</Height>
|
|
<Left>0.125in</Left>
|
|
</Chart>
|
|
<Chart Name="chart1">
|
|
<Legend>
|
|
<Visible>true</Visible>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
<Position>RightCenter</Position>
|
|
</Legend>
|
|
<CategoryAxis>
|
|
<Axis>
|
|
<Title />
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
<Format>d</Format>
|
|
</Style>
|
|
<MajorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MajorGridLines>
|
|
<MinorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MinorGridLines>
|
|
<MajorTickMarks>Outside</MajorTickMarks>
|
|
<Min>0</Min>
|
|
<Visible>true</Visible>
|
|
</Axis>
|
|
</CategoryAxis>
|
|
<DataSetName>KirkwoodDBDataSetLocal</DataSetName>
|
|
<PlotArea>
|
|
<Style>
|
|
<BackgroundColor>White</BackgroundColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</PlotArea>
|
|
<ThreeDProperties>
|
|
<Rotation>30</Rotation>
|
|
<Inclination>30</Inclination>
|
|
<Shading>Simple</Shading>
|
|
<WallThickness>50</WallThickness>
|
|
</ThreeDProperties>
|
|
<PointWidth>15</PointWidth>
|
|
<SeriesGroupings>
|
|
<SeriesGrouping>
|
|
<StaticSeries>
|
|
<StaticMember>
|
|
<Label>=Code.GetLabel("LBL_OPTIMIZATION_EVENT")</Label>
|
|
</StaticMember>
|
|
<StaticMember>
|
|
<Label>=Code.GetLabel("LBL_AVG_CPU_USAGE")</Label>
|
|
</StaticMember>
|
|
</StaticSeries>
|
|
</SeriesGrouping>
|
|
</SeriesGroupings>
|
|
<Top>0.5in</Top>
|
|
<Subtype>Plain</Subtype>
|
|
<ValueAxis>
|
|
<Axis>
|
|
<Title>
|
|
<Caption>=Code.GetLabel("LBL_AVG_CPU_USAGE_PERCENT")</Caption>
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
</Title>
|
|
<Style>
|
|
<FontSize>8pt</FontSize>
|
|
</Style>
|
|
<MajorGridLines>
|
|
<ShowGridLines>true</ShowGridLines>
|
|
<Style>
|
|
<BorderColor>
|
|
<Default>Gray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Dotted</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MajorGridLines>
|
|
<MinorGridLines>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
</MinorGridLines>
|
|
<MajorTickMarks>Outside</MajorTickMarks>
|
|
<Min>0</Min>
|
|
<Visible>true</Visible>
|
|
<Scalar>true</Scalar>
|
|
</Axis>
|
|
</ValueAxis>
|
|
<Type>Column</Type>
|
|
<Width>8.25in</Width>
|
|
<CategoryGroupings>
|
|
<CategoryGrouping>
|
|
<DynamicCategories>
|
|
<Grouping Name="chart1_CategoryGroup1">
|
|
<GroupExpressions>
|
|
<GroupExpression>=Fields!day.Value</GroupExpression>
|
|
</GroupExpressions>
|
|
</Grouping>
|
|
<Sorting>
|
|
<SortBy>
|
|
<SortExpression>=Fields!day.Value</SortExpression>
|
|
<Direction>Ascending</Direction>
|
|
</SortBy>
|
|
</Sorting>
|
|
<Label>=Fields!day.Value</Label>
|
|
</DynamicCategories>
|
|
</CategoryGrouping>
|
|
</CategoryGroupings>
|
|
<Palette>Default</Palette>
|
|
<ChartData>
|
|
<ChartSeries>
|
|
<DataPoints>
|
|
<DataPoint>
|
|
<DataValues>
|
|
<DataValue>
|
|
<Value>=iif(Avg(Fields!optimized_moves.Value) > 0, 100, 0)</Value>
|
|
</DataValue>
|
|
</DataValues>
|
|
<DataLabel />
|
|
<Style>
|
|
<BackgroundColor>DodgerBlue</BackgroundColor>
|
|
<BackgroundGradientEndColor>LightSkyBlue</BackgroundGradientEndColor>
|
|
<BackgroundGradientType>VerticalCenter</BackgroundGradientType>
|
|
<BorderColor>
|
|
<Default>Black</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<Marker>
|
|
<Size>6pt</Size>
|
|
</Marker>
|
|
</DataPoint>
|
|
</DataPoints>
|
|
</ChartSeries>
|
|
<ChartSeries>
|
|
<DataPoints>
|
|
<DataPoint>
|
|
<DataValues>
|
|
<DataValue>
|
|
<Value>=iif(Avg(Fields!avg_total_cpu.Value) > 0, Avg(Fields!avg_total_cpu.Value)*100, 0)</Value>
|
|
</DataValue>
|
|
</DataValues>
|
|
<DataLabel />
|
|
<Style>
|
|
<BackgroundColor>Black</BackgroundColor>
|
|
<BorderColor>
|
|
<Default>Navy</Default>
|
|
</BorderColor>
|
|
<BorderWidth>
|
|
<Default>2.25pt</Default>
|
|
</BorderWidth>
|
|
</Style>
|
|
<Marker>
|
|
<Type>Diamond</Type>
|
|
<Size>4pt</Size>
|
|
</Marker>
|
|
</DataPoint>
|
|
</DataPoints>
|
|
<PlotType>Line</PlotType>
|
|
</ChartSeries>
|
|
</ChartData>
|
|
<Style>
|
|
<BackgroundColor>LightGrey</BackgroundColor>
|
|
<BorderColor>
|
|
<Default>DarkGray</Default>
|
|
</BorderColor>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<Title>
|
|
<Caption>=Code.GetLabel("LBL_AVERAGE_CPU_USAGE")</Caption>
|
|
</Title>
|
|
<Height>2.375in</Height>
|
|
<Left>0.125in</Left>
|
|
</Chart>
|
|
</ReportItems>
|
|
<Height>11in</Height>
|
|
</Body>
|
|
<Language>=User!Language</Language>
|
|
<PageFooter>
|
|
<PrintOnFirstPage>true</PrintOnFirstPage>
|
|
<ReportItems>
|
|
<Line Name="line1">
|
|
<Top>0.125in</Top>
|
|
<Width>8.25in</Width>
|
|
<Style>
|
|
<BorderStyle>
|
|
<Default>Solid</Default>
|
|
</BorderStyle>
|
|
</Style>
|
|
<ZIndex>2</ZIndex>
|
|
<Left>0.125in</Left>
|
|
<Height>0in</Height>
|
|
</Line>
|
|
<Textbox Name="textbox11">
|
|
<Top>0.125in</Top>
|
|
<Width>1.75in</Width>
|
|
<Style>
|
|
<FontFamily>Verdana</FontFamily>
|
|
<FontSize>7pt</FontSize>
|
|
<TextAlign>Right</TextAlign>
|
|
<PaddingLeft>2pt</PaddingLeft>
|
|
<PaddingRight>2pt</PaddingRight>
|
|
<PaddingTop>2pt</PaddingTop>
|
|
<PaddingBottom>2pt</PaddingBottom>
|
|
</Style>
|
|
<ZIndex>1</ZIndex>
|
|
<CanGrow>true</CanGrow>
|
|
<Left>6.625in</Left>
|
|
<Height>0.2125in</Height>
|
|
<Value>=Code.GetPageNumberText()</Value>
|
|
</Textbox>
|
|
<Textbox Name="ReportingInfo">
|
|
<Top>0.125in</Top>
|
|
<Width>6.5in</Width>
|
|
<Style>
|
|
<FontFamily>Verdana</FontFamily>
|
|
<FontSize>7pt</FontSize>
|
|
<TextAlign>Left</TextAlign>
|
|
<PaddingLeft>2pt</PaddingLeft>
|
|
<PaddingRight>2pt</PaddingRight>
|
|
<PaddingTop>2pt</PaddingTop>
|
|
<PaddingBottom>2pt</PaddingBottom>
|
|
</Style>
|
|
<CanGrow>true</CanGrow>
|
|
<Left>0.125in</Left>
|
|
<Height>0.2125in</Height>
|
|
<Value>=String.Format(Code.GetLabel("LBL_FOOTER_LEFT"), Code.GetLabel("LBL_POOL_OPT_PERF_HISTORY"), Code.GetDateFromOffset(Parameters!Start.Value), Code.GetDateFromOffset(Parameters!End.Value)) + " | Cloud Software Group, Inc."</Value>
|
|
</Textbox>
|
|
</ReportItems>
|
|
<Height>0.375in</Height>
|
|
<PrintOnLastPage>true</PrintOnLastPage>
|
|
</PageFooter>
|
|
<TopMargin>1in</TopMargin>
|
|
</Report> |