Layer7 API Management

  • 1.  Report for Gateway Services

    Posted Jun 08, 2017 06:30 AM

    Hi,

     

    Is there a way to produce a report that shows services on the gateway with additional detail?  I know that GMU can query the gateway and provide a basic list of objects and UUIDs by type, but I'd like to get additional detail such as: 

     

    • Name
    • Resolution Path
    • Enabled/Disabled

     

    I imagine a MySQL query could provide me with some insight...

     

    Any hints?

     

    Thanks,

     

    Alejandro



  • 2.  Re: Report for Gateway Services
    Best Answer

    Posted Jun 08, 2017 09:37 AM

    We created our own service which performs the following sql query to the internal mySql DB:

     

    SELECT
       name,
       routing_uri,
       disabled
    FROM
       published_service;