File formats available in OpsCenter
You can export or email OpsCenter reports in the following file formats:
|
PDF (Portable Document Format) |
Can be viewed using a PDF reader, such as Adobe Reader |
|
CSV (comma-separated values) |
Use with spreadsheet programs, such as Microsoft Excel. |
|
TSV (tab-separated values) |
Compatible with word-processing applications and text editors |
|
HTML (hypertext markup language ) |
Can be opened using with Web browsers |
|
XML (Extensible Markup Language) |
Can be imported (using user-written scripts) by other programs like databases or billing applications. |
The following is the XML format:
<Report>
<ReportView>
<Name> {nameValue} </Name>
<Description> {descriptionForReportView} </Description>
<TimeDuration> {timeValue} </TimeDuration>
<ViewName> {viewNameValue} </ViewName>
<ViewSelections>
<SelectedItem value="{selectedNodeNameValue1}">
<ExcludedItem> {excludedNodeName1} </ExcludedItem>
<ExcludedItem> {excludedNodeName2} </ExcludedItem>
...
</SelectedItem>
<SelectedItem value="{selectedNodeNameValue2}">
<ExcludedItem> {excludedNodeName3} </ExcludedItem>
<ExcludedItem> {excludedNodeName4} </ExcludedItem>
...
</SelectedItem>
</ViewSelections>
<Table>
<Header>
<Row>…</Row>
</Header>
<Rows>
<Row>…</Row> …
</Rows>
</Table>
</ReportView>
<ReportView>
</Report>In the new format <Table> has been moved under a new tag called <ReportView>. If multiple views (distribution, historical, ranking) are selected for export or email, each of the views will have one <ReportView> tag corresponding to it. Name, Description and TimeDuration tags inside ReportView tag will always be present for each view. However, ViewName, GroupBy, and ViewSelections tags will be present only if applicable. If report is edited and view selections are changed, these tags will be added in export.