This topic was automatically generated from Slack. You can find the original thread here.
is there any way i could genereate workflow logs? including how many were successfully work. and detail about each of them
This topic was automatically generated from Slack. You can find the original thread here.
is there any way i could genereate workflow logs? including how many were successfully work. and detail about each of them
Yes, you can view all workflow events and their stack traces in the Event History section of the Pipedream dashboard. Just visit https://pipedream.com/event-history. You can filter events by workflow, execution status, and within a specific time range. This includes events in progress for real-time visibility into the health of your workflows. Please note that Event Histories are currently in beta and are only available to Paid workspaces with a limited number of events to start.
i mean is there anyway i could retrieve it to my own database such as google sheet
Yes, you can send workflow logs to a Google Sheet using Pipedream’s Google Sheets integration. Here’s an example of how to append data to a Google Sheet using a Pipedream component: import { axios } from "@pipedream/platform"; export default defineComponent({ props: { google: { type: "app", app: "google", }, spreadsheetId: { type: "string", label: "Spreadsheet ID", }, sheetName: { type: "string", label: "Sheet Name", }, data: { type: "string[]", label: "Data to append", }, }, async run({ steps, $ }) { const sheetsUrl = `https://sheets.googleapis.com/v4/spreadsheets/${this.spreadsheetId}/values/${encodeURIComponent(this.sheetName)}:append`; return await axios($, { method: "POST", url: sheetsUrl, headers: { Authorization: `Bearer ${this.google.$auth.oauth_access_token}`, }, params: { valueInputOption: "RAW", }, data: { values: [this.data], }, }); }, });
Replace the spreadsheetId
and sheetName
props with the appropriate values for your Google Sheet, and pass the data you want to append as an array of strings in the data
prop. This component will append the data to the specified sheet.
will there be support dedicate for youtube shorts
I don’t have any information on dedicated support for YouTube Shorts in Pipedream at the moment. However, you can submit a new integration request at New Pipedream Integration Request, and the Pipedream team will consider adding it in the future.