Dashboard Views

適用於: System Center Operations Manager 2007

Dashboard views provide a means for displaying multiple views at the same time in the Operations console. A single dashboard view can contain between two and nine other views.

Target

Dashboard views have a target like other views, although this target is not used for any purpose. Each view that is contained in the dashboard view has its own target.

Configuration

Dashboard views have a fairly simple configuration that defines the number of rows and columns and a specific report to include in each pane. Unlike the other kinds of views, dashboard views cannot be created in the Authoring console without configuration and then installed into the management group for configuration in the Operations console. At least the number of rows and columns must be specified for being installed. This is because the number of panes in a dashboard view cannot be changed in the Operations console as soon as the view is created.

The definition of a cell in a dashboard view includes the column and row of the cell and the ID of the view for the cell to display. In addition, a cell can span multiple columns by using the ColumnSpan attribute.

The following example shows the configuration a four view diagram view that has each cell the same size.

<PanelConfiguration Columns="2" Rows="2">
   <Cell Row="1" Column="1" ViewID="MyMP.MyView1"></Cell>
   <Cell Row="1" Column="2" ViewID="MyMP.MyView2"></Cell>
   <Cell Row="2" Column="1" ViewID="MyMP.MyView3"></Cell>
   <Cell Row="2" Column="2" ViewID="MyMP.MyView4"></Cell>
</PanelConfiguration>

The following example shows the configuration a five view diagram view that has three small views across the top row and two large views in the second and third rows.

<PanelConfiguration Columns="3" Rows="3">
   <Cell Row="1" Column="1" ViewID="MyMP.MyView1"></Cell>
   <Cell Row="1" Column="2" ViewID="MyMP.MyView2"></Cell>
   <Cell Row="1" Column="3" ViewID="MyMP.MyView3"></Cell>
   <Cell Row="2" Column="1" ColumnSpan="3" ViewID="MyMP.MyView4"></Cell>
   <Cell Row="3" Column="1" ColumnSpan="3" ViewID="MyMP.MyView5"></Cell>
</PanelConfiguration>