I'm relatively new to Meltano and I'm trying to us...
# troubleshooting
m
I'm relatively new to Meltano and I'm trying to use tap-google-analytics on a very large website. The Pages report is huge - even for just a couple days of data. I'd like to add a filter like ga:pageviews>50 into default_report_definition.json but it's not respecting it. Is it possible to add a filter here? (I've tried with "filter" and "filters") Thanks!!
Copy code
{
    "name": "pages",
    "dimensions": [
      "ga:date",
      "ga:hostname",
      "ga:pagePath"
    ],
    "metrics": [
      "ga:pageviews",
      "ga:uniquePageviews",
      "ga:avgTimeOnPage",
      "ga:entrances",
      "ga:entranceRate",
      "ga:bounceRate",
      "ga:exits",
      "ga:exitRate"
    ],
    "filters": ["ga:pageviews>50"]
  },
e
Hi @melissa_smith! The tap doesn't support filters at the moment, they're just not passed to the request object. Seems to me like a contribution could quickly add that 😃.