SQL Query Examples
Synchronous Example: Listing Hostname and IP for Ubuntu Hosts
Request(lines split and indented for presentability)
curl -k --user admin:admin https://test.cfengine.com/api/query -X POST -d
'{ "query": "SELECT Hosts.HostName, Hosts.IPAddress FROM Hosts"}'
Response
{
"meta": {
"page": 1,
"count": 1,
"total": 1,
"timestamp": 1351003514
},
"data": [
{
"query": "SELECT Hosts.HostName, Hosts.IPAddress FROM Hosts",
"header": [
"HostName",
"IPAddress"
],
"rowCount": 3,
"rows": [
[
"ubuntu10-2.stage.cfengine.com",
"172.20.100.1"
],
[
"ubuntu10-3.stage.cfengine.com",
"172.20.100.2"
],
[
"ubuntu10-4.stage.cfengine.com",
"172.20.100.3"
]
],
"cached": false,
"sortDescending": false
}
]
}
The cached
and sortDescending
fields here mean that the
result was not retrieved from cache, and that post-processing sorting
was not applied. It is also possible to specify skip
and limit
fields that will be applied to the result set after it is returned by
the SQL engine. These fields are mainly used by the Mission Portal to
paginate quickly on already processed queries.
Subscribed Query Example: Creating A Subscribed Query
Here we create a new query to count file changes by name and have the result
sent to us by email. The schedule field is any CFEngine context expression.
The backend polls subscriptions in a loop and checks whether it's time to
generate a report and send it out. In the following example, user milton
creates a new subscription to a report which he names file-changes-report
,
which will be sent out every Monday night. His boss will get an email with a
link to a PDF version of the report.
Request (lines split and indented for presentability)
curl -k --user admin:admin https://test.cfengine.com/api/user/milton/
subscription/query/file-changes-report -X PUT -d
'{
"to": "boss@megaco.com",
"query": "SELECT FileName, Count(*) FROM FileChangesLog GROUP BY FileName",
"schedule": "Monday.Hr23.Min59",
"title": "A very important file changes report"
"description": "Text that will be included in email"
"outputTypes": [ "pdf" ]
}'
Response
204 No Content
Subscribed Query Example: Listing Report Subscriptions
Milton can list all his current subscriptions by issuing the following.
Request
curl -k --user admin:admin https://test.cfengine.com/api/user/milton/subscription/query
Response
{
"meta": {
"page": 1,
"count": 1,
"total": 1,
"timestamp": 1351003514
},
"data": [
{
"id": "file-changes-report"
"to": "boss@megaco.com",
"query": "SELECT FileName, Count(*) FROM FileChangesLog GROUP BY FileName",
"title": "A very important file changes report"
"description": "Text that will be included in email"
"schedule": "Monday.Hr23.Min59",
"outputTypes": [ "pdf" ]
}
]
Subscribed Query Example: Removing A Report Subscription
Request (lines split and indented for presentability)
curl -k --user admin:admin https://test.cfengine.com/api/user/milton/
subscription/query/file-changes-report -X DELETE
Response
204 No Content