elastic / kibana

Your window into the Elastic Stack
https://www.elastic.co/products/kibana
Other
19.35k stars 7.98k forks source link

[Spaces] Content summary API #182921

Closed elena-shostak closed 6 days ago

elena-shostak commented 1 week ago

Summary

Added space content summary GET API endpoint which returns summary of the different saved objects that exist within each space.

Request GET kbn:/internal/spaces/a-space/content_summary Response

{
  "summary": [
    {
      "count": 1,
      "type": "config",
      "displayName": "Config"
    },
    {
      "count": 2,
      "type": "dashboard",
      "displayName": "Dashboard",
      "icon": "dashboardApp"
    },
    {
      "count": 4,
      "type": "index-pattern",
      "displayName": "data view",
      "icon": "indexPatternApp"
    },
    {
      "count": 2,
      "type": "tag",
      "displayName": "Tag",
      "icon": "tag"
    }
  ],
  "total": 9
}

Request GET kbn:/internal/spaces/not-a-space/content_summary Response

{
  "statusCode": 404,
  "error": "Not Found",
  "message": "Not Found"
}

Checklist

For maintainers

Fixes: https://github.com/elastic/kibana/issues/182406

elena-shostak commented 1 week ago

/ci

elena-shostak commented 1 week ago

/ci

elasticmachine commented 1 week ago

Pinging @elastic/kibana-security (Team:Security)

kibana-ci commented 6 days ago

:green_heart: Build Succeeded

Metrics [docs]

✅ unchanged

History

To update your PR or re-run it, just comment with: @elasticmachine merge upstream