Author: Connor McArthur ([email protected])
This is a Singer tap that produces JSON-formatted data following the Singer spec.
It:
- Generates a catalog of available data in LogMeIn Rescue
- Extracts the following resources:
- Technicians (source): It pulls the entire list of technicians each time it runs.
- Session Report (source): It pulls all of the session report records, keeping track of where it left off each time. The reports below use the same pagination and state strategy.
- Technician Survey Report (source)
- Transferred Sessions Extended Report (source)
- Install
git clone [email protected]:fishtown-analytics/tap-logmeinrescue.git
cd tap-logmeinrescue
pip install .
- Create the config file.
There is a template you can use at config.json.example
, just copy it to config.json
in the repo root and insert your username and password.
- Run the application to generate a catalog.
tap-logmeinrescue -c config.json --discover > catalog.json
- Select the tables you'd like to replicate
Step 4 a file called catalog.json
that specifies all the available endpoints and fields. You'll need to open the file and select the ones you'd like to replicate. See the Singer guide on Catalog Format for more information on how tables are selected.
- Run it!
tap-logmeinrescue -c config.json --properties catalog.json
- If you select any of the
*_report
streams, you MUST selecttechnician
as well.
Copyright © 2018 Fishtown Analytics