Sha256: 78c01fb2f7904cbe2afcf269523dbe4b575160976a1a86f2c49eb25535dcc19c
Contents?: true
Size: 861 Bytes
Versions: 52
Compression:
Stored size: 861 Bytes
Contents
module ForemanOpenscap::PolicyDashboard class Data attr_reader :report def initialize(policy, filter = "") @policy = policy @filter = filter @report = {} fetch_data end private attr_writer :report def hosts @hosts ||= Host.authorized(:view_hosts, Host) end def fetch_data report.update( { :compliant_hosts => Host::Managed.comply_with(@policy).count, :incompliant_hosts => Host::Managed.not_comply_with(@policy).count, :inconclusive_hosts => Host::Managed.inconclusive_with(@policy).count, :report_missing => Host::Managed.policy_reports_missing(@policy).count, :assigned_hosts => Host::Managed.assigned_to_policy(@policy).count, :unassigned_hosts => Host::Managed.removed_from_policy(@policy).count } ) end end end
Version data entries
52 entries across 52 versions & 1 rubygems