

Building your pipeline or Using Airbyte
Airbyte is the only open source solution empowering data teams to meet all their growing custom business demands in the new AI era.
- Inconsistent and inaccurate data
- Laborious and expensive
- Brittle and inflexible
- Reliable and accurate
- Extensible and scalable for all your needs
- Deployed and governed your way
Start syncing with Airbyte in 3 easy steps within 10 minutes



Take a virtual tour
Demo video of Airbyte Cloud
Demo video of AI Connector Builder
What sets Airbyte Apart
Modern GenAI Workflows
Move Large Volumes, Fast
An Extensible Open-Source Standard
Full Control & Security
Fully Featured & Integrated
Enterprise Support with SLAs
What our users say


"The intake layer of Datadog’s self-serve analytics platform is largely built on Airbyte.Airbyte’s ease of use and extensibility allowed any team in the company to push their data into the platform - without assistance from the data team!"


“Airbyte helped us accelerate our progress by years, compared to our competitors. We don’t need to worry about connectors and focus on creating value for our users instead of building infrastructure. That’s priceless. The time and energy saved allows us to disrupt and grow faster.”


“We chose Airbyte for its ease of use, its pricing scalability and its absence of vendor lock-in. Having a lean team makes them our top criteria. The value of being able to scale and execute at a high level by maximizing resources is immense”
Before you can extract data from Datadog, you need to understand the structure of the Datadog API and how to authenticate requests. Go to the Datadog API documentation and familiarize yourself with the endpoints that you'll be using to extract the data you need.
1. Install Redis on your server if it's not already installed. You can download it from the Redis website or use a package manager.
2. Start the Redis server by running the `redis-server` command.
3. Check if Redis is working by connecting to it using the `redis-cli` command.
1. Log in to your Datadog account.
2. Navigate to 'Integrations' > 'APIs'.
3. Find your API Key and Application Key or create new ones if necessary.
4. Store these keys securely; you'll need them to authenticate your API requests.
1. Choose a programming language that you are comfortable with and that supports HTTP requests and JSON parsing (Python, Node.js, etc.).
2. Write a script that uses the `requests` library or an equivalent to make authenticated HTTP requests to the Datadog API.
3. Parse the JSON response to extract the data you need.
4. Handle any errors or rate limits encountered during the API request.
Here's a Python example for making a simple request to the Datadog API:
```python
import requests
import json
api_key = 'your_datadog_api_key'
app_key = 'your_datadog_application_key'
# Replace with the appropriate Datadog API endpoint
url = 'https://api.datadoghq.com/api/v1/query?api_key={}&application_key={}&query=<YOUR_QUERY>&from=<TIME_FROM>&to=<TIME_TO>'.format(api_key, app_key)
response = requests.get(url)
data = response.json()
# Extract the necessary data from the response
# data = data['series'][0]['pointlist'] or similar, depending on the structure of the response
```
1. Use the Redis client in your script to connect to the Redis server.
2. Choose the appropriate Redis data structure (string, list, set, sorted set, hash, etc.) for the data you are storing.
3. Use Redis commands to insert the data into Redis.
Here's a Python example using `redis-py` to insert data into Redis:
```python
import redis
# Connect to Redis
r = redis.Redis(host='localhost', port=6379, db=0)
# Assuming data is a list of tuples (timestamp, value)
for point in data:
timestamp, value = point
# Use an appropriate Redis command to insert the data
# For example, storing time series data in a sorted set:
r.zadd('datadog_data', {json.dumps({'timestamp': timestamp, 'value': value}): timestamp})
```
To keep your Redis instance up to date with the data from Datadog, you may want to schedule your script to run at regular intervals.
1. Use a task scheduler like `cron` on Linux or Task Scheduler on Windows to run your script.
2. Determine the frequency of updates based on the volume of data and your use case.
1. Monitor your script's performance and error logs to ensure it's running as expected.
2. Update your script as needed if Datadog's API changes or if you need to modify the data being transferred.
1. Ensure that the connection to your Redis server is secure, especially if it's accessible over the internet.
2. Consider using TLS for encryption and authentication if sensitive data is being transferred.
FAQs
What is ETL?
ETL, an acronym for Extract, Transform, Load, is a vital data integration process. It involves extracting data from diverse sources, transforming it into a usable format, and loading it into a database, data warehouse or data lake. This process enables meaningful data analysis, enhancing business intelligence.
Datadog is a monitoring and analytics tool for information technology (IT) and DevOps teams that can be used for performance metrics as well as event monitoring for infrastructure and cloud services. The software can monitor services such as servers, databases and appliances Datadog monitoring software is available for on-premises deployment or as Software as a Service (SaaS). Datadog supports Windows, Linux and Mac operating systems. Support for cloud service providers includes AWS, Microsoft Azure, Red Hat OpenShift, and Google Cloud Platform.
Datadog's API provides access to a wide range of data related to monitoring and analytics of IT infrastructure and applications. The following are the categories of data that can be accessed through Datadog's API:
1. Metrics: Datadog's API provides access to a vast collection of metrics related to system performance, network traffic, application performance, and more.
2. Logs: The API allows users to retrieve logs generated by various applications and systems, which can be used for troubleshooting and analysis.
3. Traces: Datadog's API provides access to distributed traces, which can be used to identify performance bottlenecks and optimize application performance.
4. Events: The API allows users to retrieve events generated by various systems and applications, which can be used for alerting and monitoring purposes.
5. Dashboards: Users can retrieve and manage dashboards created in Datadog, which can be used to visualize and analyze data from various sources.
6. Monitors: The API allows users to create, update, and manage monitors, which can be used to alert on specific conditions or events.
7. Synthetic tests: Datadog's API provides access to synthetic tests, which can be used to simulate user interactions with applications and systems to identify performance issues.
Overall, Datadog's API provides a comprehensive set of data that can be used to monitor and optimize IT infrastructure and applications.
What is ELT?
ELT, standing for Extract, Load, Transform, is a modern take on the traditional ETL data integration process. In ELT, data is first extracted from various sources, loaded directly into a data warehouse, and then transformed. This approach enhances data processing speed, analytical flexibility and autonomy.
Difference between ETL and ELT?
ETL and ELT are critical data integration strategies with key differences. ETL (Extract, Transform, Load) transforms data before loading, ideal for structured data. In contrast, ELT (Extract, Load, Transform) loads data before transformation, perfect for processing large, diverse data sets in modern data warehouses. ELT is becoming the new standard as it offers a lot more flexibility and autonomy to data analysts.
What should you do next?
Hope you enjoyed the reading. Here are the 3 ways we can help you in your data journey: