linode · Schema

LongviewClient

Properties

Name Type Description
id integer The unique ID of this Longview client.
label string The label for this client.
api_key string The API key for this Longview client.
install_code string The install code for setting up the agent.
apps object Applications being monitored.
created string When this client was created.
updated string When this client was last updated.
View JSON Schema on GitHub

JSON Schema

linode-longviewclient-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LongviewClient",
  "title": "LongviewClient",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "The unique ID of this Longview client."
    },
    "label": {
      "type": "string",
      "description": "The label for this client."
    },
    "api_key": {
      "type": "string",
      "description": "The API key for this Longview client."
    },
    "install_code": {
      "type": "string",
      "description": "The install code for setting up the agent."
    },
    "apps": {
      "type": "object",
      "description": "Applications being monitored."
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "When this client was created."
    },
    "updated": {
      "type": "string",
      "format": "date-time",
      "description": "When this client was last updated."
    }
  }
}