Compliance views
The out-of-the-box Compliance reports provide detailed and summary information about the compliance activities that are associated with device-related actions in your networking environment. You can use this information to build your own custom Compliance reports using your own reporting tool.
Built-in Compliance views
TrueSight Network Automation - Data Warehouse provides the following built-in views:
View Name/Description | Columns in the view | Example |
|---|---|---|
RV_CONF_PLY_CMP_DEV_IN_CMP Displays the compliant devices for the specified time period. | DEVICE_ADDRESS | select * from RV_CONF_PLY_CMP_DEV_IN_CMP |
RV_CONF_PLY_CMP_DEV_NT_IN_CMP Displays the non-compliant devices for the specified time period. | DEVICE_ADDRESS | select * from RV_CONF_PLY_CMP_DEV_NT_IN_CMP where TIME_PERIOD = 'Current';
|
RV_CONF_PLY_CMP_DEV_LAST_CONF Displays the date on which last configuration changes were made on the compliant and non-compliant devices for the specified time period. | DEVICE_ADDRESS | select * from RV_CONF_PLY_CMP_DEV_LAST_CONF; Note:
|
RV_CONF_PLY_CMP_CONF_PLY Displays the rule sets, rules, and and total number of rules on the compliant and non-compliant devices for the specified time period. | RULE_SET_NAME | select * from RV_CONF_PLY_CMP_CONF_PLY; |
RV_DEV_CMP_DTLS Displays the latest data on compliant and non-compliant devices for the specified time period. | REALM_NAME | select * from RV_DEV_CMP_DTLS |
RV_DEV_CMP_SUMM Shows the number of violations for the specified device at the specified point in time. | VIOLATION_TYPE | select * from RV_DEV_CMP_SUMM |
RV_DEV_CMP_TREND Shows the number of device compliance violations for the specified time period. | VIOLATION_TYPE | select * from RV_DEV_CMP_TREND |
RV_RULE_CMP_DTLS Displays the rules with compliance violations at the specified point in time. | RULE_SET_NAME | select * from RV_RULE_CMP_DTLS where SEVERITY = 'Minor' and time_period = 'Current'; |
RV_RULE_CMP_SUMM Displays the state of compliance violations, organized by rule set, at the specified point in time. | RULE_SET_NAME | select * from RV_RULE_CMP_SUMM where SEVERITY = 'Info' and time_period = 'Current'; |
RV_RULE_CMP_TREND Shows the trend of rule compliance violations over the specified time period. | RULE_SET_NAME | select * from RV_RULE_CMP_TREND where RULE_SET_NAME = 'Auto-CSR-Ex-Spans-RuleLevel' |
RV_RULE_DEV_CMP_DTLS Displays the rules and devices with compliance violations at the specified point in time. | REALM_NAME | select * from RV_RULE_DEV_CMP_DTLS where REALM_NAME = 'Default' and time_period = 'Current'; |