Heyo, question regarding `tap-jira` Meltano varian...
# getting-started
r
Heyo, question regarding
tap-jira
Meltano variant (as it has Stream Maps support). Is it possible to only select issues from a certain project? We have a ton of projects and would only want to be extracting data from a handful of them instead of all of them
Currently have this:
Copy code
extractors:
          - name: tap-jira
            config:
              auth:
                flow: password
                username: <email>
              domain: <url>
            select:
              - issues.key
              - issues.fields.*
The issue is that we only want to extract issues for let's say
INC
,
ENG
and
CDD
projects instead of all other ones
I found this but I'm not really understanding if this would be what has to be used here 🤔
w
I think this might help you
m
You can put a stream map filter on the issues stream as long as you can determine the project from the issue fields (ie, filter where issue.key starts with 'INC'-, 'ENG-', etc)
r
Thanks a lot both 😄 I will look into these and try them out, in case we'll have trouble with it I'll follow up. Thanks a lot once again!