I have a question: when using `tap-google-analytic...
# plugins-general
x
I have a question: when using
tap-google-analytics
, how can I pass in today’s date and let it only fetch one-day data instead of re-fetch everything everything time? Is it possible to get system date from
meltano.yml
? Thank you very much in advance!
p
You should be able to use an enviroment variable to do this like:
Copy code
$ TODAY="$(date '+%Y-%m-%d')" meltano elt ...
and then use
${TODAY}
in your
meltano.yml
file
x
Aha, thank you very much, I will try