Permalink
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time.
Cannot retrieve contributors at this time
| metadata :name => "resource", | |
| :description => "Information about Puppet managed resources", | |
| :author => "R.I.Pienaar <rip@devco.net>", | |
| :license => "ASL 2.0", | |
| :version => "1.1", | |
| :url => "http://puppetlabs.com/", | |
| :timeout => 1 | |
| usage <<-EOU | |
| This data resource can be used to act based the management state | |
| of a resource various properties related to resources of the most | |
| recent Puppet Catalog run. | |
| To act on machines managing /srv/www: | |
| -S "resource('file[/srv/www]').managed = true" | |
| Or machines that had failed resources in their most recent run: | |
| -S "resource().failed_resources > 0" | |
| Or ones that were particularly slow at applying their catalogs: | |
| -S "resource().total_time > 360" | |
| EOU | |
| dataquery :description => "Puppet Managed Resources" do | |
| input :query, | |
| :prompt => "Resource Name", | |
| :description => "Valid resource name", | |
| :type => :string, | |
| :validation => :puppet_resource, | |
| :optional => true, | |
| :maxlength => 120 | |
| output :managed, | |
| :description => "Is the resource managed", | |
| :display_as => "Managed", | |
| :default => false | |
| output :out_of_sync_resources, | |
| :description => "Resources that were not in desired state", | |
| :display_as => "Out of Sync Resources", | |
| :default => -1 | |
| output :failed_resources, | |
| :description => "Resources that failed to apply", | |
| :display_as => "Failed Resources", | |
| :default => -1 | |
| output :corrected_resources, | |
| :description => "Resources that were correctively changed", | |
| :display_as => "Corrected Resources", | |
| :default => -1 | |
| output :changed_resources, | |
| :description => "Resources that were changed", | |
| :display_as => "Changed Resources", | |
| :default => -1 | |
| output :total_resources, | |
| :description => "Total resources managed on a node", | |
| :display_as => "Total Resources", | |
| :default => 0 | |
| output :total_time, | |
| :description => "Total time taken to retrieve and process the catalog", | |
| :display_as => "Total Time", | |
| :default => 0 | |
| output :config_retrieval_time, | |
| :description => "Time taken to retrieve the catalog from the master", | |
| :display_as => "Config Retrieval Time", | |
| :default => -1 | |
| output :lastrun, | |
| :description => "When the Agent last applied a catalog in local time", | |
| :display_as => "Last Run", | |
| :default => 0 | |
| output :since_lastrun, | |
| :description => "How long ago did the Agent last apply a catalog in local time", | |
| :display_as => "Since Last Run", | |
| :default => "Unknown" | |
| output :config_version, | |
| :description => "Puppet config version for the previously applied catalog", | |
| :display_as => "Config Version", | |
| :default => nil | |
| end |