action influxdata_get_telegraf_plugins { label: "List all Telegraf plugins" provider: influxdata method: GET path: "/telegraf/plugins" encoding: json input: { type: "object" properties: { type: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { os: { type: "string" } plugins: { type: "array" items: { type: "object" properties: { config: { type: "string" } description: { type: "string" } name: { type: "string" } type: { type: "string" } } } } version: { type: "string" } } } }