action linode_get_linode_stats { label: "Linode Statistics View" description: "Returns CPU, IO, IPv4, and IPv6 statistics for your Linode for the past 24 hours.\n" provider: linode method: GET path: "/linode/instances/{linodeId}/stats" encoding: json output: { type: "object" description: "CPU, IO, IPv4, and IPv6 statistics. Graph data, if available, is in \"[timestamp, reading]\" array format. Timestamp is a UNIX timestamp in EST.\n" properties: { cpu: { type: "array" description: "Percentage of CPU used.\n" items: { type: "array" items: { type: "number" } } } io: { type: "object" description: "Input/Output statistics." properties: { io: { type: "array" description: "Block/s written." items: { type: "array" items: { type: "number" } } } swap: { type: "array" description: "Block/s written." items: { type: "array" items: { type: "number" } } } } } netv4: { type: "object" description: "IPv4 statistics." properties: { in: { type: "array" description: "Input stats for IPv4, measured in bits/s (bits/second)." items: { type: "array" items: { type: "number" } } } out: { type: "array" description: "Output stats for IPv4, measured in bits/s (bits/second)." items: { type: "array" items: { type: "number" } } } private_in: { type: "array" description: "Private IPv4 input statistics, measured in bits/s (bits/second)." items: { type: "array" items: { type: "number" } } } private_out: { type: "array" description: "Private IPv4 output statistics, measured in bits/s (bits/second)." items: { type: "array" items: { type: "number" } } } } } netv6: { type: "object" description: "IPv6 statistics." properties: { in: { type: "array" description: "Input stats for IPv6, measured in bits/s (bits/second)." items: { type: "array" items: { type: "number" } } } out: { type: "array" description: "Output stats for IPv6, measured in bits/s (bits/second)." items: { type: "array" items: { type: "number" } } } private_in: { type: "array" description: "Private IPv6 input statistics, measured in bits/s (bits/second)." items: { type: "array" items: { type: "number" } } } private_out: { type: "array" description: "Private IPv6 output statistics, measured in bits/s (bits/second)." items: { type: "array" items: { type: "number" } } } } } title: { type: "string" description: "The title for this data set." } } } }