Tabs

The Tabs dashboard panel is an Unified Assurance default panel used to display other dashboards in a tabbed interface within a Dashboard.

Grid Details

Each tab in the panel configuration displays a separate tab in the grid. Click on a tab to show the specified dashboard. Each panel can also have controls that are specific for that panel.

Form Fields

Best Practices

If the Tab Type is dynamic, the external Tab Source should just return a JSON string with an array of tab objects. An example would look like:

[
    {
        "DashboardID":"Tab1",
        "DashboardName":"Pie",
        "DashboardValue":"1035",
        "RenderType":""
    },
    {
        "DashboardID":"Tab2",
        "DashboardName":"Evt",
        "DashboardValue":"1034",
        "RenderType":"",
        "Filters":{
            "property": "MetricTypeName",
            "value": "^(Latency)",
            "operator": "re"
        }
    }
]

The response should contain the following information: