GET <realm_UUID>/advisories

This web method retrieves advisories for a specific realm.

<realm_UUID> in the URI specifies the realm.

Parameters

You can include pagination parameters to retrieve advisories in smaller batches. For details, see "Pagination" in TIBCO FTL Administration.

You can use parameters to retrieve advisories only from FTL clients or services of a specific type. For example, only from bridge services.

Syntax Description
record_type=<type> Retrieve advisories from clients or services of this type. Valid types include:
  • "Client"
  • "Satellite"
  • "Persistence Server"
  • "Bridge"
  • "Group Server"
  • "Group Client"
  • "eFTL Cluster"

Example Requests

curl -X GET http://<host>:<port>/logsvc/v1/<realmUUID>/advisories?record_type="<type>"

Example JSON Representation

This request returns a response with this form.

{
  "advisories":
  [
    {
      "client_id": 1234,
      "name": "DATALOSS",
      "reason": "QUEUE_LIMIT_EXCEEDED",
      "severity": "WARNING",
      "module": "BASE",
      "aggregation_count": 0,
      "aggregation_time" : 1498244496256,
      "timestamp": 1498244496256,
      "queue_name": "my_queue",
      "subscriber_name": ""
      "endpoints": [
        "endpoint": "ep1", 
        "endpoint": "ep2"
      ],
      "lock_name": ""
    },
    {
      "client_id": 5678,
      "name": "DATALOSS",
      "reason": "TPORT_DATALOSS",
      "severity": "WARNING",
      "module": "BASE",
      "aggregation_count": 0,
      "aggregation_time" : 1498244496256,
      "timestamp": 1498244496256,
      "queue_name": "my_queue",
      "subscriber_name": ""
      "endpoints": [
        "endpoint": "ep3", 
        "endpoint": "ep4"
      ],
      "lock_name": ""
    }
  ]
}