with Agentset and Bugsnag?
Emit new event when an existing error receives a new occurrence.
Emit new event when a new document is created. See the documentation
Emit new event when a new release version is deployed to a selected project.
Emit new event when a ingest job is created. See the documentation
Complete retrieval pipeline for RAG with semantic search, filtering, and reranking. See the documentation
Create a new project for a specific organization in Bugsnag. See the documentation
Create an ingest job for the authenticated organization. See the documentation
Creates a namespace for the authenticated organization. See the documentation
Update an the severity status of an error in Bugsnag. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
agentset: {
type: "app",
app: "agentset",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.agentset.ai/v1/namespace`,
headers: {
Authorization: `Bearer ${this.agentset.$auth.api_key}`,
},
})
},
})
The Bugsnag API enables you to interact programmatically with Bugsnag data, letting you manage and access error reports, project settings, and release tracking for your applications. With Pipedream's integration, you can automate workflows that respond to new errors, aggregate error data for analysis, or synchronize error information with other tools in your development stack.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bugsnag: {
type: "app",
app: "bugsnag",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bugsnag.com/user`,
headers: {
"Authorization": `token ${this.bugsnag.$auth.api_token}`,
},
})
},
})