with Loggly (Send Data) and Milvus?
Send events to Loggly, with tags. See the docs for more details
The Loggly (Send Data) API enables you to transmit log data into Loggly, a cloud-based log management and analytics service. With this integration, you can automate the aggregation of logs from various sources, analyze them in real-time, and monitor your applications and systems effectively. By leveraging this API on Pipedream, you can create automated workflows that streamline the process of log collection and correlation, set up alerts based on log patterns, and dynamically respond to system events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
loggly_send_data: {
type: "app",
app: "loggly_send_data",
}
},
async run({steps, $}) {
const data = {
"hello": `world`,
}
return await axios($, {
method: "post",
url: `https://logs-01.loggly.com/inputs/${this.loggly_send_data.$auth.token}/tag/pipedream-test`,
params: {
"Content-Type": `application/json`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
milvus: {
type: "app",
app: "milvus",
}
},
async run({steps, $}) {
const data = {}
return await axios($, {
method: "post",
url: `${this.milvus.$auth.endpoint}/v2/vectordb/collections/list`,
headers: {
Authorization: `Bearer ${this.milvus.$auth.api_token}`,
"content-type": `application/json`,
"accept": `application/json`,
},
data,
})
},
})