action linode_get_linode_stats_by_year_month { label: "Statistics View (year/month)" description: "Returns statistics for a specific month. The year/month values must be either a date in the past, or the current month. If the current month, statistics will be retrieved for the past 30 days.\n" provider: linode method: GET path: "/linode/instances/{linodeId}/stats/{year}/{month}" 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." } } } }