Applications
Application information provides the detailed monitoring information for an application selected from application visibility. Application Visibility tabs showcases the top 10 clients who are using the selected application over a period of time. The name of the selected application can be displayed on the top most right corner.
API Calls
/V5/applications
/V5/applications/statistics/sorting
/V5/applications/statistics/trend
/V5/applications/aps/statistics/trend
/V5/applications/metadata
/V5/applications/categories
/V5/applications/health
/V5/applications/{applicationid}/traffic
JSON Table
Attribute | Data Type | Description |
---|---|---|
applicationId | int | A system-defined ID for the application. |
applicationName | String | Name of the application. |
category | String | Category under which the application falls. |
live15MinsUsage | long | Live data usage by the applications for the last 15 minutes. |
applicationUsage | application/json | Application usage information. |
applicationUsage/usage15Mins | long | Application usage information in bytes for last 15 mins. |
applicationUsage/usage1Hour | long | Application usage information in bytes for last 1 hour. |
applicationUsage/usage4Hours | long | Application usage information in bytes for last 4 hours. |
applicationUsagePercentage | application/json | Application usage percentage. |
applicationUsagePercentage/usage15MinsPercentage | long | Percentage of application usage against total usage of all applications for last 15 mins. |
applicationUsagePercentage/usage1HourPercentage | long | Percentage of application usage against total usage of all applications for last 1 hour. |
applicationUsagePercentage/usage4HoursPercentage | long | Percentage of application usage against total usage of all applications for last 4 hours. |
threatIndex | int | Displays the threat index between 1 to 5. Threat index or risk is calculated on the scale of 1 to 5 considering the following factors.
Threat Index number denotes the cumulative value of the factors mentioned |
lastUsedTime | long | Displays the time of the day when the application was last used. |
totalUsage15Mins | long | Total of all application usage over last 15 mins. |
totalUsage1Hr | long | Total of all application usage over last 1 hour. |
totalUsage4Hrs | long | Total of all application usage over last 4 hours. |
Sample JSON
{ "applications": [ { "applicationId": 1, "applicationName": "ETH", "category": "Networking", "live15MinsUsage": 0, "applicationUsage": { "usage15Mins": 0, "usage1Hour": 0, "usage4Hours": 0 }, "applicationUsagePercentage": { "usage15MinsPercentage": 0, "usage1HourPercentage": 0, "usage4HoursPercentage": 0 }, "threatIndex": 1, "lastUsedTime": 0 }, { "applicationId": 2, "applicationName": "IP", "category": "Networking", "live15MinsUsage": 0, "applicationUsage": { "usage15Mins": 0, "usage1Hour": 0, "usage4Hours": 0 }, "applicationUsagePercentage": { "usage15MinsPercentage": 0, "usage1HourPercentage": 0, "usage4HoursPercentage": 0 }, "threatIndex": 1, "lastUsedTime": 0 } ], "totalUsage15Mins": 0, "totalUsage1Hr": 0, "totalUsage4Hrs": 0 }