How to use terms as filter item?

When I just filter terms_A : *, lens returns this error response, but I can show count of terms_A records, does anyone knows what happened?

Can you please provide more details about your dataset, chart configuration and the steps to take to recreate the issue.


and my rollup job json is like below

{
  "config": {
    "id": "rollup_apm_transactions_every_10m",
    "index_pattern": "traces-apm-*",
    "rollup_index": "rollup_apm_transactions_every_10m",
    "cron": "0 0/10 * * * ?",
    "groups": {
      "date_histogram": {
        "fixed_interval": "10m",
        "field": "@timestamp",
        "delay": "20s",
        "time_zone": "UTC"
      },
      "terms": {
        "fields": [
          "service.name"
        ]
      }
    },
    "metrics": [
     Omitted...
    ],
    "timeout": "20s",
    "page_size": 10000
  }
}

can you please open a bug report here GitHub - elastic/kibana: Your window into the Elastic Stack
it seems rollup indexes don't support the query we use for autosuggesting values for filters on some fields.

Sorry to reply so late, and I faced another question is I can't aggregate the rollup data with an interval that is greater-than or equal to the configured rollup interval.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.