title | layout | canonical |
---|---|---|
PuppetDB 1.3 » API » Experimental » Querying Reports |
default |
/puppetdb/latest/api/query/experimental/report.html |
Querying reports is accomplished by making an HTTP request to the /reports
REST
endpoint.
query
: Required. A JSON array of query predicates, in prefix form. (The standard["<OPERATOR>", "<FIELD>", "<VALUE>"]
format.)
For example, for all reports run on the node with certname 'example.local', the JSON query structure would be:
["=", "certname", "example.local"]
The only available OPERATOR is =
.
The only available FIELD is certname
, which is the name of the node associated with the report.
The response is a JSON array of report summaries for all reports that matched the input parameters. The summaries are sorted by the completion time of the report, in descending order:
[
{
"end-time": "2012-10-29T18:38:01.000Z",
"puppet-version": "3.0.1",
"receive-time": "2012-10-29T18:38:04.238Z",
"configuration-version": "1351535883",
"start-time": "2012-10-29T18:38:00.000Z",
"id": "d4bcb35a-fb7b-45da-84e0-fceb7a1df713",
"certname": "foo.local",
"report-format": 3
},
{
"end-time": "2012-10-26T22:39:32.000Z",
"puppet-version": "3.0.1",
"receive-time": "2012-10-26T22:39:35.305Z",
"configuration-version": "1351291174",
"start-time": "2012-10-26T22:39:31.000Z",
"id": "5ec13ff5-c6fd-43fb-b5b1-59a00ec8e1f1",
"certname": "foo.local",
"report-format": 3
}
]
You can use curl
to query information about reports like so:
curl -G -H "Accept: application/json" 'http://localhost:8080/experimental/reports' --data-urlencode 'query=["=", "certname", "example.local"]'