Get Object’s Config Log Item

Returns an object’s log item.

Request

HTTP Request

GET /node/api/objects/:object_id/config-log/:item_id

Path parameters

Parameter Type Description

item_id

String
required

The ID of a log item to be retrieved.

object_id

String
required

The ID or discovery ID of the object whose config log item must be retrieved.

Request body

The request body is empty.

Response

Returns a single requested configuration change for a specified object. See the Configuration files and directories modifications wiki page for more information.

Configuration change has the following fields:

Field Type Description

id

String

ID of the change.

timestamp

Integer

The time of the change.

content

String

Encoded configuration change.

contentEncoding

String

Encoding of the configuration change. Supports GZIP_BASE64 encoding.

Example

Request

  • Bash

  • JavaScript

  • NodeJS

  • Python

login=<...>
password=<...>
saymon_hostname=<...>
object_id=<...>
item_id=<...>
url=https://$saymon_hostname/node/api/objects/$object_id/config-log/$item_id

curl -X GET $url -u $login:$password
let login = <...>
let password = <...>
let saymonHostname = <...>
let objectId = <...>
let itemId = <...>
let path = "/node/api/objects/" + objectId + "/config-log/" + itemId;
let auth = "Basic " + btoa(login + ":" + password);

let headers = new Headers();
headers.append("Authorization", auth);

let requestOptions = {
    method: "GET",
    headers: headers
};

fetch(saymonHostname + path, requestOptions)
    .then(response => response.text())
    .then(result => console.log(result))
    .catch(error => console.log("error", error));
const http = require("http");

let login = <...>
let password = <...>
let saymonHostname = <...>
let objectId = <...>
let itemId = <...>
let path = "/node/api/objects/" + objectId + "/config-log/" + itemId;
let auth = "Basic " + Buffer.from(login + ":" + password).toString("base64");

let options = {
    "method": "GET",
    "hostname": saymonHostname,
    "headers": {
        "Authorization": auth
    },
    "path": path
};

let req = http.request(options, function (res) {
    let chunks = [];

    res.on("data", function (chunk) {
        chunks.push(chunk);
    });

    res.on("end", function (chunk) {
        let body = Buffer.concat(chunks);
        console.log(body.toString());
    });

    res.on("error", function (error) {
        console.error(error);
    });
});

req.end();
import requests

login = <...>
password = <...>
saymon_hostname = <...>
object_id = <...>
item_id= <...>
url = "http://" + saymon_hostname + "/node/api/objects/" + \
    object_id + "/config-log/" + item_id

response = requests.request("GET", url, auth=(login, password))
print(response.text)

Response

{
    "timestamp": 1445261129000,
    "content": "H4sIAAAAAAAAAO09bVsbOZJ/RQO558nMxK8YsOHDPTa2E3ZJYLGZmeww52vcst2h36a7DSaT7G+..."
    "contentEncoding": "GZIP_BASE64",
    "id": "56a73ad4645c0d7f7a13c572"
}