Get features API

[experimental] This functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features. Retrieves all Kibana features. Features are used by spaces and security to refine and secure access to Kibana.

Request

GET <kibana host>:<port>/api/features

Response code

200

Indicates a successful call.

Example

The API returns the following:

  1. {
  2. "id": "discover",
  3. "name": "Discover",
  4. "icon": "discoverApp",
  5. "navLinkId": "discover",
  6. "app": [
  7. "kibana"
  8. ],
  9. "catalogue": [
  10. "discover"
  11. ],
  12. "privileges": {
  13. "all": {
  14. "savedObject": {
  15. "all": [
  16. "search",
  17. "url"
  18. ],
  19. "read": [
  20. "config",
  21. "index-pattern"
  22. ]
  23. },
  24. "ui": [
  25. "show",
  26. "createShortUrl",
  27. "save"
  28. ]
  29. },
  30. "read": {
  31. "savedObject": {
  32. "all": [],
  33. "read": [
  34. "config",
  35. "index-pattern",
  36. "search",
  37. "url"
  38. ]
  39. },
  40. "ui": [
  41. "show"
  42. ]
  43. }
  44. }
  45. },
  46. {
  47. "id": "visualize",
  48. "name": "Visualize",
  49. "icon": "visualizeApp",
  50. "navLinkId": "visualize",
  51. "app": [
  52. "kibana"
  53. ],
  54. "catalogue": [
  55. "visualize"
  56. ],
  57. "privileges": {
  58. "all": {
  59. "savedObject": {
  60. "all": [
  61. "visualization",
  62. "url"
  63. ],
  64. "read": [
  65. "config",
  66. "index-pattern",
  67. "search"
  68. ]
  69. },
  70. "ui": [
  71. "show",
  72. "createShortUrl",
  73. "delete",
  74. "save"
  75. ]
  76. },
  77. "read": {
  78. "savedObject": {
  79. "all": [],
  80. "read": [
  81. "config",
  82. "index-pattern",
  83. "search",
  84. "visualization"
  85. ]
  86. },
  87. "ui": [
  88. "show"
  89. ]
  90. }
  91. }
  92. },
  93. {
  94. "id": "dashboard",
  95. "name": "Dashboard",
  96. "icon": "dashboardApp",
  97. "navLinkId": "dashboards",
  98. "app": [
  99. "kibana"
  100. ],
  101. "catalogue": [
  102. "dashboard"
  103. ],
  104. "privileges": {
  105. "all": {
  106. "savedObject": {
  107. "all": [
  108. "dashboard",
  109. "url"
  110. ],
  111. "read": [
  112. "config",
  113. "index-pattern",
  114. "search",
  115. "visualization",
  116. "timelion-sheet",
  117. "canvas-workpad"
  118. ]
  119. },
  120. "ui": [
  121. "createNew",
  122. "show",
  123. "showWriteControls"
  124. ]
  125. },
  126. "read": {
  127. "savedObject": {
  128. "all": [],
  129. "read": [
  130. "config",
  131. "index-pattern",
  132. "search",
  133. "visualization",
  134. "timelion-sheet",
  135. "canvas-workpad",
  136. "dashboard"
  137. ]
  138. },
  139. "ui": [
  140. "show"
  141. ]
  142. }
  143. }
  144. },
  145. {
  146. "id": "dev_tools",
  147. "name": "Dev Tools",
  148. "icon": "devToolsApp",
  149. "navLinkId": "dev_tools",
  150. "app": [
  151. "kibana"
  152. ],
  153. "catalogue": [
  154. "console",
  155. "searchprofiler",
  156. "grokdebugger"
  157. ],
  158. "privileges": {
  159. "all": {
  160. "api": [
  161. "console"
  162. ],
  163. "savedObject": {
  164. "all": [],
  165. "read": [
  166. "config"
  167. ]
  168. },
  169. "ui": [
  170. "show"
  171. ]
  172. },
  173. "read": {
  174. "api": [
  175. "console"
  176. ],
  177. "savedObject": {
  178. "all": [],
  179. "read": [
  180. "config"
  181. ]
  182. },
  183. "ui": [
  184. "show"
  185. ]
  186. }
  187. },
  188. "privilegesTooltip": "User should also be granted the appropriate Elasticsearch cluster and index privileges"
  189. },

Most Popular