X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=website%2Fsimplerpc%2Fauditing.md;fp=website%2Fsimplerpc%2Fauditing.md;h=2981a190b55244b7305508aa2d676eefcea61bc7;hb=b87d2f4e68281062df1913440ca5753ae63314a9;hp=0000000000000000000000000000000000000000;hpb=ab0ea530b8ac956091f17b104ab2311336cfc250;p=packages%2Fprecise%2Fmcollective.git diff --git a/website/simplerpc/auditing.md b/website/simplerpc/auditing.md new file mode 100644 index 0000000..2981a19 --- /dev/null +++ b/website/simplerpc/auditing.md @@ -0,0 +1,69 @@ +--- +layout: default +title: SimpleRPC Auditing +toc: false +--- +[SimpleRPCIntroduction]: index.html +[AuditCentralRPCLog]: http://projects.puppetlabs.com/projects/mcollective-plugins/wiki/AuditCentralRPC + +# {{page.title}} + +As part of the [SimpleRPC][SimpleRPCIntroduction] framework we've added an auditing system that you can use to log all requests received into a file or even send it over mcollective to a central auditing system. What actually happens with audit data is pluggable and you can provide your own plugins to do what you need. + +The clients will include the _uid_ of the process running the client library in the requests and the audit function will have access to that on the requests. + +## Configuration +To enable logging you should set an option to enable it and also one to configure which plugin to use: + +{% highlight ini %} +rpcaudit = 1 +rpcauditprovider = Logfile +{% endhighlight %} + +This sets it up to use _MCollective::Audit::Logfile_ plugin for logging evens. + +The client will embed a caller id - the Unix UID of the program running it or SSL cert - in requests which you can find in the _request_ object. + +## Logfile plugin + +Auditing is implemented using plugins that you should install in the normal plugin directory under _mcollective/audit/_. We have a sample Logfile plugin that you can see below: + +{% highlight ruby %} +module MCollective + module RPC + class Logfiletrue, :command=>"check_mailq"} +{% endhighlight %} + +Other plugins can be found on the community site like [a centralized logging plugin][AuditCentralRPCLog].