Hello friends; I'm trying to use `tap-klaviyo` by ...
# troubleshooting
j
Hello friends; I'm trying to use
tap-klaviyo
by way of https://github.com/singer-io/tap-klaviyo and while I can discover data in our Klaviyo account, running
meltano elt tap-klaviyo ...
isn't actually extracting any data from the API. This is what my config looks like in
meltano.yml
- any thoughts on what I might be missing? 🙇
Copy code
- name: tap-klaviyo
    namespace: tap_klaviyo
    pip_url: git+<https://github.com/singer-io/tap-klaviyo.git>
    executable: tap-klaviyo
    capabilities:
    - state
    - discover
    - properties
    settings:
    - name: api_key
      kind: password
    - name: user_agent
      kind: email
    - name: start_date
      kind: date_iso8601
    config:
      start_date: 2020-12-01
    metadata:
      '*':
        replication-method: FULL_TABLE
    select:
    - campaigns.*
    - global_exclusions.*
    - lists.*
    ...
t
Is the log-level debug flag giving you any more information? Also, have you tried just running the tap by itself to see if you are getting data from the tap but it’s not being accepted by the target?
meltano invoke tap-klaviyo…
j
I ran with the log level debug flag; it spit out a ton of data, but it didn't seem to give me anything useful. Let me try the tap invocation thingy