https://meltano.com/ logo
#announcements
Title
# announcements
i

incalculable-country-93712

02/24/2021, 9:08 PM
Hi, everyone. I’m having an issue with excluding entities with the Stripe tap. I have some entities explicitly selected, but I was expecting this would exclude charges.card.*, but they are still automatically included. Not sure what I’m misunderstanding:
Copy code
Enabled patterns:
	…
	charges.transfer_group
	charges.updated
	!charges.card.*

Selected attributes:
	[selected ] charges.amount
	[selected ] charges.amount_refunded
	[selected ] charges.application
	[selected ] charges.application_fee
	[selected ] charges.balance_transaction
	[selected ] charges.captured
	[automatic] charges.card.address_city
	[automatic] charges.card.address_country
	[automatic] charges.card.address_line1
	[automatic] charges.card.address_line1_check
	…
1
r

ripe-musician-59933

02/24/2021, 9:16 PM
@incalculable-country-93712 I think you're running into this bug: https://gitlab.com/meltano/meltano/-/issues/2381
The workaround is to explicitly mark these as
inclusion: available
by adding this to your
meltano.yml
plugin definition:
Copy code
metadata:
    '*':
      '*.*':
        inclusion: available
i

incalculable-country-93712

02/24/2021, 9:20 PM
That does it. Thank you
r

ripe-musician-59933

02/24/2021, 9:21 PM
Glad to hear it!