Skip to content

Policy Reporter UI Log

Frank Jogeleit edited this page Jul 23, 2021 · 4 revisions

Send new PolicyReport Results with all available information over the REST API to Policy Reporter UI. The latest Results will be displayed in the Policy Reporter UI - Log View. By default it shows the latest 200 Results with Warning or higher priorities. Both can be configured.

Installation and Configuration

The Log Feature will be enabled with the Policy Reporter UI itself.

helm install policy-reporter policy-reporter/policy-reporter --set ui.enabled=true -n policy-reporter --create-namespace
  • Configure target.ui.host to overwrite the default host from the Policy Reporter UI resolved from the Chart configuration.
  • Configure target.ui.minimumPriority to send only results with the configured minimumPriority or above, empty means all results. (info < warning < error)
  • Configure target.ui.skipExistingOnStartup to skip all results who already existed before the PolicyReporter started (default: true).
  • Configure ui.log.size to change the amount of maximal persisted Results in the Policy Reporter UI (default: 200)
target:
  ui:
    host: ""
    minimumPriority: ""
    skipExistingOnStartup: true

Example

Policy Reporter UI - Log