Focus on building software with an easy-to-use, scalable, serverless time series platform available on AWS, Azure, and Google Cloud.
Go to siteHarness the power of InfluxDB Cloud API on Pipedream to build robust data workflows. InfluxDB Cloud, a time-series database, is ideal for managing high-velocity data and extracting insights in real-time. On Pipedream, you can easily trigger workflows based on InfluxDB data, automate data ingestion, and connect with countless other services to analyze, visualize, and act upon your data.
import { InfluxDB } from '@influxdata/influxdb-client';
import { HealthAPI } from '@influxdata/influxdb-client-apis';
export default defineComponent({
props: {
influxdb_cloud: {
type: "app",
app: "influxdb_cloud",
}
},
async run({steps, $}) {
// See the Node.js client docs at
// https://github.com/influxdata/influxdb-client-js
const influxDB = new InfluxDB(this.influxdb_cloud.$auth.url);
const healthAPI = new HealthAPI(influxDB)
// Execute a health check to test our credentials
return await healthAPI.getHealth()
},
})
Real-time Alerting System: Build a workflow that monitors your InfluxDB Cloud data streams for specific conditions or thresholds. When a data point exceeds the preset limits, automatically trigger an alert using Pipedream's integration with apps such as Slack or Twilio, notifying your team instantly for quick response.
IoT Device Data Aggregation: Create an automation that collects time-series data from IoT devices. Use Pipedream to ingest this data into InfluxDB Cloud for storage and analysis. Further enhance the workflow by integrating with AWS Lambda or Google Cloud Functions to process the data, providing insights like predictive maintenance or usage patterns.
Custom Analytics Dashboard: Leverage Pipedream to periodically extract key metrics from InfluxDB Cloud and feed them into a business intelligence tool such as Google Sheets or Tableau. This empowers you to present data in a user-friendly format, with the ability to set up custom triggers to refresh the dashboard based on event-driven data updates from InfluxDB.
InfluxDB Cloud uses API keys for authentication. When you connect your InfluxDB Cloud account, Pipedream securely stores the keys so you can easily authenticate to InfluxDB Cloud APIs in both code and no-code steps.
Enter the Influx Cloud URL for your account below, with the full scheme and domain, like:
https://us-east-1-1.aws.cloud2.influxdata.com
Then, enter your Token (see how to create a token here).
Finally, enter your Org (see how to list and create orgs here). On the Influx Cloud free tier, this is often the email address you used to login.