Dashboard Analytics/Stats

Hello,

Is there a system index or way to grab the dashboard activity from the single dashboard stats:

I want to build a dashboard to see how all dashboards compare against each other without having to click through each single dashboard.

Hello Erik,

Have you already checked this answer here?

To get the usage, this may help you:

POST .kibana_usage_counters*/_search?size=1000
{
    "query": {
        "bool": {
            "must": [
              {
                "term": {
                  "usage-counter.counterName": {
                    "value": "{id}"
                  }
                }
              }
            ]
        }
    }
}

Best regards
Wolfram

Hey @Wolfram_Haussig , that definitely helps!
I opened a feature request.
[Dashboard][Analytics] Need Out of the Box Dashboard · Issue #217853 · elastic/kibana