I have 2 components (geo_1, geo_2) to track 2 geolocations where a project is done. However, there are a lot of other components to indicate various other functions as well (lets say comp_1, comp_2, comp_3).
For eg: One jira task may be mapped to "geo_1" and "comp_2".
Now, I want to know the overall jira tasks per geo locations. My JQL for my data plane report is as below:
project = TestProject and component in (geo_1, geo_2)
After doing a Segment by "Component", I get ALL the components listed. But, my expectation is to show only geo_1 and geo_2. How do i achieve this in data plane reports?