dima_anoshin
07/31/2023, 9:27 PMplugins:
extractors:
- name: tap-ga4
namespace: tap-ga4
pip_url: git+<https://github.com/MeltanoLabs/tap-google-analytics@v0.0.6>
executable: tap-google-analytics
but it is not clear how to do itWill Da Silva (Arch)
08/01/2023, 1:10 AMdima_anoshin
08/01/2023, 6:06 AMpip_url: git+<https://github.com/MeltanoLabs/tap-google-analytics.git@main_deprecated_ua>
dima_anoshin
08/01/2023, 6:12 AMselect
in the yaml and then add the list of the columns:
plugins:
extractors:
- name: tap-ga4
namespace: tap-ga4
pip_url: git+<https://github.com/MeltanoLabs/tap-google-analytics@v0.0.6>
executable: tap-google-analytics
config:
client_id: $GOOGLE_ANALYTICS_CLIENT_ID
client_secret: $GOOGLE_ANALYTICS_CLIENT_SECRET
refresh_token: $GOOGLE_ANALYTICS_REFRESH_TOKEN
access_token: $GOOGLE_ANALYTICS_ACCESS_TOKEN
property_id: $GOOGLE_ANALYTICS_PROPERTY_ID_GLOBAL
start_date: "2023-01-01T00:00:00Z"
capabilities:
- catalog
- discover
- state
settings:
- name: start_date
kind: date_iso8601
- name: client_id
kind: string
- name: client_secret
kind: password
- name: refresh_token
kind: password
- name: access_token
kind: password
- name: property_id
kind: string
select:
Or should I use only reports? Plugin has the default JSON
for reports but it is not super clear how to feed own reports and maybe I can just specify select
and list of objects.Andy Carter
08/01/2023, 7:02 AMpat_nadolny
08/01/2023, 11:57 AMdima_anoshin
08/03/2023, 5:07 AM