Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
Dim queryParams As New ChilkatJsonObject
success = queryParams.UpdateString("source","{{auditSource}}")
success = queryParams.UpdateString("_pagedResultsCookie","{{pagedResultsCookie}}")
success = queryParams.UpdateString("_prettyPrint","false")
http.SetRequestHeader "x-api-secret","{{logApiSecret}}"
http.SetRequestHeader "x-api-key","{{logApiKey}}"
Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequestParams("GET","https://<tenant-name>.forgeblocks.com/monitoring/logs/tail",queryParams)
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)
Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0
Debug.Print "Response Body:"
Debug.Print jResp.Emit()
Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
Debug.Print "Response Header:"
Debug.Print resp.Header
Debug.Print "Failed."
Exit Sub
End If
' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)
' {
' "result": [
' {
' "payload": "<object>",
' "timestamp": "<dateTime>",
' "type": "<string>"
' },
' {
' "payload": "<object>",
' "timestamp": "<dateTime>",
' "type": "<string>"
' }
' ],
' "resultCount": "<integer>",
' "pagedResultsCookie": "<string>",
' "totalPagedResultsPolicy": "<string>",
' "totalPagedResults": "<integer>",
' "remainingPagedResults": "<integer>"
' }
' Sample code for parsing the JSON response...
' Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
Dim payload As String
Dim timestamp As String
Dim v_type As String
Dim resultCount As String
resultCount = jResp.StringOf("resultCount")
Dim pagedResultsCookie As String
pagedResultsCookie = jResp.StringOf("pagedResultsCookie")
Dim totalPagedResultsPolicy As String
totalPagedResultsPolicy = jResp.StringOf("totalPagedResultsPolicy")
Dim totalPagedResults As String
totalPagedResults = jResp.StringOf("totalPagedResults")
Dim remainingPagedResults As String
remainingPagedResults = jResp.StringOf("remainingPagedResults")
Dim i As Long
i = 0
Dim count_i As Long
count_i = jResp.SizeOfArray("result")
Do While i < count_i
jResp.I = i
payload = jResp.StringOf("result[i].payload")
timestamp = jResp.StringOf("result[i].timestamp")
v_type = jResp.StringOf("result[i].type")
i = i + 1
Loop
Curl Command
curl -G -d "source=%7B%7BauditSource%7D%7D"
-d "_pagedResultsCookie=%7B%7BpagedResultsCookie%7D%7D"
-d "_prettyPrint=false"
-H "x-api-key: {{logApiKey}}"
-H "x-api-secret: {{logApiSecret}}"
https://<tenant-name>.forgeblocks.com/monitoring/logs/tail
Postman Collection Item JSON
{
"name": "Step 4: Tail the Audit Logs for a Source Since Last Request",
"event": [
{
"listen": "test",
"script": {
"exec": [
"const jsonData = JSON.parse(responseBody);",
"if(jsonData.pagedResultsCookie && jsonData.pagedResultsCookie != \"\"){",
" pm.globals.set(\"pagedResultsCookie\", jsonData.pagedResultsCookie);",
"}",
"",
"// Tests",
"",
"pm.test(\"Status code is 200.\", () => {",
" pm.expect(pm.response.code).to.eql(200);",
"});",
"",
"pm.test(\"Response contains results\", function () {",
" pm.expect(jsonData).to.have.any.keys('resultCount', 'result');",
"});",
"",
"pm.test(\"Response contains pagedResultsCookie\", function () {",
" pm.expect(jsonData).to.have.any.keys('pagedResultsCookie');",
"});",
""
],
"type": "text/javascript"
}
}
],
"request": {
"auth": {
"type": "noauth"
},
"method": "GET",
"header": [
{
"key": "x-api-key",
"type": "text",
"value": "{{logApiKey}}"
},
{
"key": "x-api-secret",
"type": "text",
"value": "{{logApiSecret}}"
}
],
"url": {
"raw": "{{platformUrl}}/monitoring/logs/tail?source={{auditSource}}&_pagedResultsCookie={{pagedResultsCookie}}&_prettyPrint=false",
"host": [
"{{platformUrl}}"
],
"path": [
"monitoring",
"logs",
"tail"
],
"query": [
{
"key": "source",
"value": "{{auditSource}}"
},
{
"key": "_pagedResultsCookie",
"value": "{{pagedResultsCookie}}"
},
{
"key": "_prettyPrint",
"value": "false"
}
]
},
"description": "Tail log events"
},
"response": [
{
"name": "List of log events",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "{{baseUrl}}/logs/tail?source=<string>&_pagedResultsCookie=<string>&_prettyPrint=false",
"host": [
"{{baseUrl}}"
],
"path": [
"logs",
"tail"
],
"query": [
{
"key": "source",
"value": "<string>"
},
{
"key": "_pagedResultsCookie",
"value": "<string>"
},
{
"key": "_prettyPrint",
"value": "false"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n\t\"result\": [\n\t\t{\n\t\t\t\"payload\": \"<object>\",\n\t\t\t\"timestamp\": \"<dateTime>\",\n\t\t\t\"type\": \"<string>\"\n\t\t},\n\t\t{\n\t\t\t\"payload\": \"<object>\",\n\t\t\t\"timestamp\": \"<dateTime>\",\n\t\t\t\"type\": \"<string>\"\n\t\t}\n\t],\n\t\"resultCount\": \"<integer>\",\n\t\"pagedResultsCookie\": \"<string>\",\n\t\"totalPagedResultsPolicy\": \"<string>\",\n\t\"totalPagedResults\": \"<integer>\",\n\t\"remainingPagedResults\": \"<integer>\"\n}"
}
]
}