Retrieving Percentage of Proactive Alarms in the Target Environment
Use the URL specified below to retrieve the percentage of proactive alarms for all component types, components, layers and tests specific to the target environment. The percentage is calculated by considering the count of Major and Minor alarms against the Total alarms raised in the target environment.
Retrieving Percentage of Proactive Alarms across Component Types
URL: http://<eG manager IP:port>/api/eg/analytics/getProactiveProblemPercent/servertype
Method: POST
Content-Type: application/json
Parameters | Key values | Example |
---|---|---|
Headers |
managerurl: Base URL of the eG Manager i.e., http://<IP address of the eG console:Port> user: eG username or domain/eG username pwd: Base64 encoded password |
{ "timeline":"1 hour" } |
Body |
Default: { "timeline":"Timeline for retrieving proactive alarm percent (in hours/days/weeks)" } |
Type |
Code |
Content |
---|---|---|
JSON |
200 |
{ "Proactive Problem Percent": [ { "Server Type": "Java Application", "ProactivePercent": "100" }, { "Server Type": "NetFlow Device", "ProactivePercent": "0" }, . . . } |
Type | Code | Content |
---|---|---|
JSON |
401 UNAUTHORIZED |
{"code": 401,"error": "Unauthorized user"} |
JSON |
500 Server Error |
{"code": 500,"error": " Server Error "} |
Figure 1 : Retrieving the percentage of proactive alarms for all Component Types using Postman REST Client
Retrieving Percentage of Proactive Alarms across Component Types using cURL
To retrieve the percentage of proactive alarms across all component types managed in the target environment using cURL, the command should be specified in the following format:
curl -location -request POST "http://<eG Manager IP:Port>/api/eg/analytics/getProactiveProblemPercent/servertype" -H "user:<eG username or domain/eG username>" -H "pwd:Base64 encoded password" -H "managerurl:http://<eG Manager IP:Port>" -H "Content-Type: application/json" --data-raw "{\"timeline\":\"Timeline for retrieving proactive alarm percent(in hours/days/weeks)\"}"
Figure 2 shows an example of retrieving the percentage of proactive alarms for all component types managed in the target environment using cURL.
Figure 2 : Retrieving the percentage of proactive alarms for all Component Types using cURL
Retrieving Percentage of Proactive Alarms across all Components
URL: http://<eG manager IP:port>/api/eg/analytics/getProactiveProblemPercent/servername
Method: POST
Content-Type: application/json
Parameters | Key values | Example |
---|---|---|
Headers |
managerurl: Base URL of the eG Manager i.e., http://<IP address of the eG console:Port> user: eG username or domain/eG username pwd: Base64 encoded password |
{ "timeline":"1 hour" } |
Body |
Default: { "timeline":"Timeline for retrieving proactive alarm percent (in hours/days/weeks)" } |
Type | Code | Content |
---|---|---|
JSON |
200 |
{ "Proactive Problem Percent": [ { "Server Name": "esx51-15", "ProactivePercent": "80" }, { "Server Name": "win183", "ProactivePercent": "93" }, . . . } |
Type | Code | Content |
---|---|---|
JSON |
401 UNAUTHORIZED |
{"code": 401,"error": "Unauthorized user"} |
JSON |
500 Server Error |
{"code": 500,"error": " Server Error "} |
Figure 3 : Retrieving the percentage of proactive alarms for all Components using Postman REST Client
Retrieving Percentage of Proactive Alarms across Components using cURL
To retrieve the percentage of proactive alarms across all components managed in the target environment using cURL, the command should be specified in the following format:
curl -location -request POST "http://<eG Manager IP:Port>/api/eg/analytics/getProactiveProblemPercent/servername" -H "user:<eG username or domain/eG username>" -H "pwd:Base64 encoded password" -H "managerurl:http://<eG Manager IP:Port>" -H "Content-Type: application/json" --data-raw "{\"timeline\":\"Timeline for retrieving proactive alarm percent(in hours/days/weeks)\"}"
Figure 2 shows an example of retrieving the percentage of proactive alarms for all components managed in the target environment using cURL.
Figure 4 : Retrieving the percentage of proactive alarms for all Components using cURL
Retrieving Percentage of Proactive Alarms specific to Layers of a Component Type
URL: http://<eG manager IP:port>/api/eg/analytics/getProactiveProblemPercent/layer
Method: POST
Content-Type: application/json
Parameters | Key values | Example |
---|---|---|
Headers |
managerurl: Base URL of the eG Manager i.e., http://<IP address of the eG console:Port> user: eG username or domain/eG username pwd: Base64 encoded password |
{ "timeline":"1 hour", "servertype":"Microsoft Windows" } |
Body |
Default: { "timeline":"Timeline for retrieving proactive alarm percent (in hours/days/weeks)", "servertype":"Component Type" } |
Type | Code | Content |
---|---|---|
JSON |
200 |
{ "Proactive Problem Percent": [ { "Layer Name": "Operating System", "ProactivePercent": "95" }, { "Layer Name": "eG Application", "ProactivePercent": "38" }, . . . } |
Type | Code | Content |
---|---|---|
JSON |
401 UNAUTHORIZED |
{"code": 401,"error": "Unauthorized user"} |
JSON |
500 Server Error |
{"code": 500,"error": " Server Error "} |
Figure 5 : Retrieving the percentage of proactive alarms for the layers of a component type using Postman REST Client
Retrieving Percentage of Proactive Alarms specific to Layers of a Component Type using cURL
To retrieve the percentage of proactive alarms specific to layers of a component type managed in the target environment using cURL, the command should be specified in the following format:
curl -location -request POST "http://<eG Manager IP:Port>/api/eg/analytics/getProactiveProblemPercent/layer" -H "user:<eG username or domain/eG username>" -H "pwd:Base64 encoded password" -H "managerurl:http://<eG Manager IP:Port>" -H "Content-Type: application/json" --data-raw "{\"timeline\":\"Timeline for retrieving proactive alarm percent(in hours/days/weeks)\",\"servertype\":\"Component Type\"}"
Figure 2 shows an example of retrieving the percentage of proactive alarms for the layers specific to a component type managed in the target environment using cURL.
Figure 6 : Retrieving the percentage of proactive alarms for the layers of a component type using cURL