Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Info

This capability is currently under development.

 

Ambari Views offer a systematic way to plug-in UI capabilities to surface custom visualization, management and monitoring features in Ambari Web. A "view" is a way of extending Ambari that allows 3rd parties to plug in new resource types along with the APIs, providers and UI to support them. In other words, a view is an application that is deployed into the Ambari container.

 

Table of Contents

Notable Resources

Get List of Views

  1. Gets the list of all available Views

    Code Block
    GET /api/v1/views
    
    200 - OK
  2. Once you have a list of views, you can drill-into a view and see the available versions.

    Code Block
    GET /api/v1/views/FILES
    
    200 - OK
  3. You can go a level deeper and see more information about that specific version for the view, such as the parameters and the archive name, and a list of all instances of the view.

    Code Block
    GET /api/v1/views/FILES/versions/0.1.0
    
    200 - OK

...