Key Performance Indicators

KPIs access is only available in Teevity Enterprise edition

Key Performance Indicators

Teevity Enterprise edition lets you extract, via its API, various KPIs:

  • Usage KPIs: information like the number of users, number of Cloud accounts declared, total amount under management, ...
  • Cost optimization KPIs: not available for now

Usage KPIs

You can see below an example of the call to the teevity/kpis/usage API. (this format )

{
    "users": {
        "nb": 12,
        "nbPerRole": {
            "admin": 3,
            "user": 4,
        },
        "list": ["nicolas@teevity.com", "benoit@teevity.com"]
    },

    "dashboards": {
        "nbTotal": 120,
        "perUser": {
            "nicolas@teevity.com": {
                "nb": 9,
                "list": ["Cost per Env", ""]
                "perDashboard": {
                    "<UUID>": {
                        "title": "",
                        "nbWidgets": "",
                        "costSources": ""
                    }
                }
            }
        },
        "benoit@teevity.com": {
            "nb": 9,
            "list": ["", ""]
        },
    },

    "costPartitions": {
        "nbTotal": 120,
        "perCP": {
            "": {

            }
        }
    }
}

Cost optimization KPIs

Not available for now

Related tutorials