All Collections
API and integrations
API
Exporting your data using a Singer tap
Exporting your data using a Singer tap

How to export your incident.io data into your own data warehouses using a singer tap.

incident.io Engineering Team avatar
Written by incident.io Engineering Team
Updated over a week ago

Incident data can be incredibly powerful and while we provide our own insights within the dashboard we understand that joining this data with your own can help to improve your understanding even more.

One method for extracting your incident data is to query our API. We provide endpoints for things like incidents, roles, severities, and much more.

Often though you will want to regularly take that data and store it in a data warehouse such as BigQuery, Redshift, or Snowflake. This can take time to build, test and maintain. To save you that effort we have now released a Singer tap which you can easily install and run on your own infrastructure.

🎀 What is Singer?

Singer is an open-source specification for building processes to extract and load data. You can run "taps" that extract from different sources and "targets" that import data from those taps into your data warehouse. The great part about Singer is that a lot of people have already built taps and targets for you - allowing you to simply put the parts together that you need.

🏁 Getting Started

To get started using our Singer tap see the project documentation here:

As a quick start you can try using the BigQuery Target to load data into some BigQuery tables.

You install our tap, the target, add some config json files, and then all that's left to extract data from our incident.io account and store it in BigQuery is one simple command!

tap-incident --config tmp/config.json --catalog tmp/catalog.json | target-bigquery --config tmp/bigquery-config.json

Once it finishes, we will get the following tables and schema within BigQuery allowing you to join this against other data in your warehouse. Great!

BigQuery is not the only data warehouse available - as mentioned before there are a lot of targets that people have built already. You can even build your own if you really need something bespoke.

If you use Stitch to run your data sync processes, please use the 'Suggest Integration' button on the Integrations page within your account to request that they add the incident.io tap to their platform.

Did this answer your question?