action linode_get_nodebalancers_node_balancer_id_stats { label: "NodeBalancer Statistics View" description: "Returns detailed statistics about the requested NodeBalancer.\n" provider: linode method: GET path: "/nodebalancers/{nodeBalancerId}/stats" encoding: json output: { type: "object" description: "Stats for this NodeBalancer.\n" properties: { data: { type: "object" description: "The data returned about this NodeBalancers.\n" properties: { connections: { type: "array" description: "An array of key/value pairs representing unix timestamp and reading for connections to this NodeBalancer.\n" items: { type: "number" } } traffic: { type: "object" description: "Traffic statistics for this NodeBalancer.\n" properties: { in: { type: "array" description: "An array of key/value pairs representing unix timestamp and reading for inbound traffic.\n" items: { type: "number" } } out: { type: "array" description: "An array of key/value pairs representing unix timestamp and reading for outbound traffic.\n" items: { type: "number" } } } } } } title: { type: "string" description: "The title for the statistics generated in this response.\n" } } } }