action linode_get_longview_clients { label: "Longview Clients List" description: "Returns a paginated list of Longview Clients you have access to. Longview Client is used to monitor stats on your Linode with the help of the Longview Client application.\n" provider: linode method: GET path: "/longview/clients" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "A LongviewClient is a single monitor set up to track statistics about one of your servers.\n" properties: { api_key: { type: "string" description: "The API key for this Client, used when configuring the Longview\nClient application on your Linode.\n\nReturns as `[REDACTED]` if you do not have read-write access to this client.\n" } apps: { type: "object" description: "The apps this Client is monitoring on your Linode. This is configured when you install the Longview Client application, and is present here for information purposes only.\n" properties: { apache: { type: "boolean" description: "If True, the Apache Longview Client module is monitoring Apache on your server.\n" } mysql: { type: "boolean" description: "If True, the MySQL Longview Client modules is monitoring MySQL on your server.\n" } nginx: { type: "boolean" description: "If True, the Nginx Longview Client module is monitoring Nginx on your server.\n" } } } created: { type: "string" format: "date-time" description: "When this Longview Client was created.\n" } id: { type: "integer" description: "This Client's unique ID.\n" } install_code: { type: "string" description: "The install code for this Client, used when configuring the Longview\nClient application on your Linode.\n\nReturns as `[REDACTED]` if you do not have read-write access to this client.\n" } label: { type: "string" description: "This Client's unique label. This is for display purposes only.\n" } updated: { type: "string" format: "date-time" description: "When this Longview Client was last updated.\n" } } } } page: { type: "integer" description: "The current [page](/docs/api/#pagination)." } pages: { type: "integer" description: "The total number of [pages](/docs/api/#pagination)." } results: { type: "integer" description: "The total number of results." } } } }