Dashboard views
The out-of-the-box Dashboards provide detailed, summary, and trend reports on configuration drift, configuration compliance, change tracking, and source of change information related to your networking environment. You can use this information to build your own custom Dashboard using your own reporting tool.
Built-in Dashboard views
TrueSight Network Automation - Data Warehouse provides the following built-in views.
View Name/Description | Columns in the view | Example |
|---|---|---|
RV_EXEC_DASH_BY_INVENT Provides high-level summary of inventory tracked by the system. | VENDOR_NAME | select * from RV_EXEC_DASH_BY_INVENT |
RV_EXEC_DASH_BY_ACTION Provides high-level summary of actions and action results. | ACTION_NAME | select * from RV_EXEC_DASH_BY_ACTIONwhere ACTION_NAME = 'Snapshot'; |
RV_EXEC_DASH_BY_CONF_DRIFT Provides high-level summary of drift types and number of devices having drifts. | DRIFT | select * from RV_EXEC_DASH_BY_CONF_DRIFT |
RV_EXEC_DASH_BY_USER_CNG Displays information about the job approval source and type, and the number of external and internal changes. | JOB_APPROVAL_TYPE_NAME | select * from RV_EXEC_DASH_BY_USER_CNG |
RV_EXEC_DASH_BY_CNG Displays information about the type of change and the number of internal changes. | FLAG | select * from RV_EXEC_DASH_BY_CNG |
RV_SYS_STU_BY_SYS_STU Displays the number of unmanaged devices (offline) devices, users, and the number of failed and successful actions. | CNT_OFFLINE_DEVICES | select * from RV_SYS_STU_BY_SYS_STU; |
RV_SYS_STU_BY_DEV_GROUP_PART1 Displays the number of device groups and describes whether any of these has compliance violations. | HAS_VIOLATION | select * from RV_SYS_STU_BY_DEV_GROUP_PART1; |
RV_SYS_STU_BY_DEV_GROUP_PART2 Displays the number of devices with violations and describes whether any of these has compliance violations. | HAS_VIOLATION | select * from RV_SYS_STU_BY_DEV_GROUP_PART2; |
RV_SYS_STU_BY_RULE Displays the names and number of distinct compliance rules available in BMC Network Automation. | RULE_NAME | select * from RV_SYS_STU_BY_RULE; |
RV_SYS_STU_BY_EVENT Displays the number of system events. | CNT_SYSTEM_EVENTS | select * from RV_SYS_STU_BY_EVENT; |
RV_SYS_STU_BY_ACTION Displays the number of successful actions and number of failed actions. | CNT_ACTIONS_SUCCESSFUL | select * from RV_SYS_STU_BY_ACTION; |
RV_SYS_SUMM_VENDOR_OS_NAME Displays the top 5 OS image names, OS vendors, and the names and number of devices having those OS images. | VENDOR_NAME | select sum(cnt_devices) from RV_SYS_SUMM_VENDOR_OS_NAME |
RV_SYS_SUMM_INT_CNG_LT_7_DYS Displays the top 5 internal users and the number of internal changes in last 30 days. | ORIGINATOR_NAME | select * from RV_SYS_SUMM_INT_CNG_LT_7_DYS |
RV_SYS_SUMM_EXT_CNG_LT_7_DYS Displays the top 5 external users and the number of external changes in last 7 days. | EXT_USER | select * from RV_SYS_SUMM_EXT_CNG_LT_7_DYS; |
RV_SYS_SUMM_INT_CNG_LT_30_DYS Displays the top 5 internal users and the number of internal changes in last 30 days. | ORIGINATOR_NAME | select * from RV_SYS_SUMM_INT_CNG_LT_30_DYS; |
RV_SYS_SUMM_EXT_CNG_LT_30_DYS Displays the top 5 external users and the number of external changes in last 30 days. | EXT_USER | select * from RV_SYS_SUMM_EXT_CNG_LT_30_DYS; |