Cisco Cisco Prime Performance Manager 1.5 开发者指南

下载
页码 41
 
Cisco Prime Performance Manager1.5 REST API Guide 
t+value”)) 
reportObjectFilter=IPSLAOwner==”some+text+valuet” 
 
reportObjectFilter=ResponseTimeAvg==”7”
 
reportObjectFilter=ResponseTimeAvg==7 
reportObjectFilter=ResponseTimeAvg!=”8” 
reportObjectFilter=ResponseTimeAvg!=8 
reportObjectFilter=ResponseTimeAvg==%2B7 
reportObjectFilter=ResponseTimeAvg==-7 
 
reportObjectFilter=ResponseTimeAvg>2 
reportObjectFilter=ResponseTimeAvg>-2 
reportObjectFilter=ResponseTimeAvg>=2 
reportObjectFilter=ResponseTimeAvg<2 
reportObjectFilter=ResponseTimeAvg<=2 
 
 
Additional Notes 
 
Only supported in the “GET /{reportType} /{category}../{reportName}”requests 
 
Not supported by views. 
5.7.13 filterAlgorithm 
Table 19 – filterAlgorithm Parameter 
Parameter 
Notes 
filterAlgorithm 
The filterAlgorithm parameter is used to filter the reporting data using 
complex algorithms.  This parameter is similar to the reportObjectFilter 
parameter, except that this parameter accepts complex algorithms.  A complex 
algorithm takes combinations of “or”, “and” and any macro implemented by 
Prime Performance Manager reports.  For more information about the Prime 
Performance Manager macro refer to Prime Performance Manager Integration 
Document. 
 
You may use combinations of “or” and “and” along with any accepted macro 
available in the Prime Performance Manager system to construct your 
complex algorithm.  You should notice that we only validate if the algorithm 
can be parsed; that is, if Prime Performance Manager Algorithm Parser is able 
to parse the given algorithm.  We do NOT validate the names of the table 
columns names and whether the algorithm is truly valid.  Therefore, the user 
may get an empty response if Prime Performance Manager is applying the 
given algorithm on a set of columns that are not found for that report, or if the 
algorithm does not make any sense. 
 
Examples:  
filterAlgorithm=CPUSlots==0 @and CPUNum==769 @and 
CPUUtilAvg5min>0.8 
 
Additional Notes 
 
Only supported in the “GET /{reportType}/{category}../{reportName}”requests 
 
Not supported by views.