Skip to content

Commit acd4d13

Browse files
Update code and examples
1 parent a9fed38 commit acd4d13

File tree

511 files changed

+14627
-1020
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

511 files changed

+14627
-1020
lines changed

examples/Groovy/TEST_URL.groovy

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package com.appdynamics.tam.scripts
2+
3+
import org.appdynamics.appdrestapi.RESTAccess
4+
5+
/**
6+
* Created by ryan.rowcliffe on 10/6/14.
7+
*/
8+
def user = 'gsadmin'
9+
def account = 'customer1'
10+
def password = 'fival1to2'
11+
def controller = 'gsappdyn01'
12+
def ssl = true;
13+
restAccess = new RESTAccess(controller,"443",user,password,account);
14+
15+
apps = restAccess.getApplications()?.applications;
16+
17+
apps.each{ app ->
18+
if (app.name.equals("BDR Big Deal Retail")){
19+
tiers = restAccess.getTiersForApplication(app.name).tiers
20+
tiers.each{ tier ->
21+
if(tier.name.contains("3dTier")){
22+
bts = restAccess.getBTSForApplication(app.id)?.businessTransactions
23+
bts.each{ bt ->
24+
btMetric = restAccess.getRESTBTMetricQuery(3,app.name,tier.name,bt.name,System.currentTimeMillis()-6000000,System.currentTimeMillis(),false)
25+
26+
println btMetric.getMetric_data().metricValues.metricValue
27+
}
28+
}
29+
}
30+
31+
}
32+
}
33+

examples/Java/TEST_URL4.java

Lines changed: 157 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
/*
2+
* To change this template, choose Tools | Templates
3+
* and open the template in the editor.
4+
*/
5+
package com.testing;
6+
7+
8+
import org.appdynamics.appdrestapi.RESTAccess;
9+
import org.appdynamics.appdrestapi.data.*;
10+
import org.appdynamics.appdrestapi.util.PostEvent;
11+
12+
import java.util.Calendar;
13+
14+
/**
15+
*
16+
* @author gilbert.solorzano
17+
*/
18+
public class TEST_URL4 {
19+
20+
public static void main(String[] args){
21+
String controller="gsappdyn01";
22+
String port="8090";
23+
24+
String user="gsadmin";
25+
String passwd="fival1to2";
26+
27+
String account="customer1";
28+
29+
boolean useSSL=false;
30+
31+
32+
33+
String site="/";
34+
35+
36+
RESTAccess access=new RESTAccess(controller,port,useSSL,user,passwd,account);
37+
//access.setDebugLevel(2);
38+
39+
/*
40+
* To get all of the application if we returned
41+
*/
42+
Applications apps = access.getApplications();
43+
44+
if(apps == null){ System.out.println("Something went wrong because getting applications should be easy!"); System.exit(1);}
45+
46+
/*
47+
* Iterate through the Applications
48+
*/
49+
50+
for(Application appl:apps.getApplications()){
51+
System.out.println("The name of the application is " + appl.getName() + " the id is " + appl.getId());
52+
}
53+
54+
String app="BDR Big Deal Retail";
55+
56+
/*
57+
* To print all of the nodes for the app
58+
*/
59+
Nodes nodes =access.getNodesForApplication(app);
60+
61+
if(nodes == null) { System.out.println("Something went wrong because getting nodes should be easy!"); System.exit(1);}
62+
63+
for(Node nodel:nodes.getNodes()){
64+
System.out.println("The name of the node is " + nodel.getName() + " and its ID is " + nodel.getId());
65+
}
66+
67+
String node="3dTierNode1";
68+
69+
Tiers tiers = access.getTiersForApplication(app);
70+
71+
if(tiers == null) { System.out.println("Something went wrong because getting nodes should be easy!"); System.exit(1);}
72+
73+
for(Tier tierl:tiers.getTiers()){
74+
System.out.println("The name of the tier is " + tierl.getName() + " the its ID is " + tierl.getId());
75+
}
76+
77+
String tier="3dTier";
78+
79+
/*
80+
* To extract metrics you need to get the timestamps of when you want the data.
81+
* Then you can either request the tier level or node level metrics
82+
*/
83+
84+
Calendar cal=Calendar.getInstance();
85+
long end = cal.getTimeInMillis();
86+
cal.add(Calendar.MINUTE, -10);
87+
long start = cal.getTimeInMillis();
88+
89+
/*
90+
* Node level metrics
91+
* Index 23 : queryJVMTierProcessCPUUsagePerc
92+
*/
93+
MetricDatas mds = access.getRESTMetricQuery(23, app, tier, node, start, end);
94+
if(mds != null){
95+
for(MetricData metr:mds.getMetric_data()){
96+
for(MetricValues vals:metr.getMetricValues()){
97+
for(MetricValue val: vals.getMetricValue()){
98+
System.out.println("The metric value is " + val.getValue() + " the min is " + val.getMin());
99+
}
100+
}
101+
102+
}
103+
}
104+
105+
/*
106+
* Tier level metrics
107+
* Index 23 : queryJVMTierProcessCPUUsagePerc
108+
*/
109+
mds = access.getRESTMetricQuery(23, app, tier, start, end);
110+
if(mds != null){
111+
for(MetricData metr:mds.getMetric_data()){
112+
for(MetricValues vals:metr.getMetricValues()){
113+
for(MetricValue val: vals.getMetricValue()){
114+
System.out.println("The metric value is " + val.getValue() + " the min is " + val.getMin());
115+
}
116+
}
117+
118+
}
119+
}
120+
121+
/*
122+
* To extract the Health Rule xml as a string
123+
*/
124+
125+
String allHealthRules=access.getRESTHealthRuleExportAll(app);
126+
127+
/*
128+
* To copy a health rule from app to another
129+
*/
130+
131+
app="BDR Big Deal Retail";
132+
String healthrule="Check Node Metric";
133+
// Check to make sure the rule is present
134+
System.out.println(access.getRESTHealthRuleExportSingle(app, healthrule));
135+
// Copy the rule to a string
136+
String healthXML=access.getRESTHealthRuleExportSingle(app, healthrule);
137+
// Change the application
138+
app="APPD Big Deal Retail";
139+
// Post the rule
140+
System.out.println(access.postRESTHealthRule(app, healthrule, healthXML));
141+
// Check to see if the rule is present
142+
System.out.println(access.getRESTHealthRuleExportSingle(app, healthrule));
143+
144+
/*
145+
*
146+
* To Post an event first you execute the following
147+
*
148+
*/
149+
PostEvent event=new PostEvent("Change 12 of 14");
150+
151+
// The custom even has now been posted to the app
152+
System.out.println(access.postRESTCustomEvent(app, event));
153+
154+
}
155+
156+
157+
}

examples/Python/jythonEx.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#
2+
#
3+
#import org.appdynamics.appdrestapi.RESTAccess;
4+
#import org.appdynamics.appdrestapi.data.*;
5+
#import sys
6+
from org.appdynamics.appdrestapi import RESTAccess
7+
8+
access = RESTAccess("controller3.demo.appdynamics.com","443",True,"demouser","apm13ad3r","customer1")
9+
print access.getApplications()
10+
print "Hello\n"

javadoc/allclasses-frame.html

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_65) on Fri Oct 24 19:59:55 PDT 2014 -->
5+
<!-- Generated by javadoc (build 1.6.0_65) on Wed Oct 29 04:52:45 PDT 2014 -->
66
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
77
<TITLE>
88
All Classes
99
</TITLE>
1010

11-
<META NAME="date" CONTENT="2014-10-24">
11+
<META NAME="date" CONTENT="2014-10-29">
1212

1313
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
1414

@@ -82,6 +82,12 @@
8282
<BR>
8383
<A HREF="org/appdynamics/appdrestapi/queries/EventsQuery.html" title="class in org.appdynamics.appdrestapi.queries" target="classFrame">EventsQuery</A>
8484
<BR>
85+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAffectedBTMatchCriteria.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExAffectedBTMatchCriteria</A>
86+
<BR>
87+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAffectedEntitiesMatchCriteria.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExAffectedEntitiesMatchCriteria</A>
88+
<BR>
89+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAffectedInfraMatchCriteria.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExAffectedInfraMatchCriteria</A>
90+
<BR>
8591
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAgentConfiguration.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExAgentConfiguration</A>
8692
<BR>
8793
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAgentConfigurations.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExAgentConfigurations</A>
@@ -134,6 +140,10 @@
134140
<BR>
135141
<A HREF="org/appdynamics/appdrestapi/exportdata/ExConfiguration.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExConfiguration</A>
136142
<BR>
143+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExCookie.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExCookie</A>
144+
<BR>
145+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExCookies.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExCookies</A>
146+
<BR>
137147
<A HREF="org/appdynamics/appdrestapi/exportdata/ExCritical.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExCritical</A>
138148
<BR>
139149
<A HREF="org/appdynamics/appdrestapi/exportdata/ExCustomExitPointDefinitions.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExCustomExitPointDefinitions</A>
@@ -166,6 +176,22 @@
166176
<BR>
167177
<A HREF="org/appdynamics/appdrestapi/exportdata/ExExcludes.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExExcludes</A>
168178
<BR>
179+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExExecutionCriteria.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExExecutionCriteria</A>
180+
<BR>
181+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExGenericMethodConfig.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExGenericMethodConfig</A>
182+
<BR>
183+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHeader.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExHeader</A>
184+
<BR>
185+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHeaders.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExHeaders</A>
186+
<BR>
187+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHealthRule.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExHealthRule</A>
188+
<BR>
189+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHRCondition.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExHRCondition</A>
190+
<BR>
191+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHRMetricDefinition.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExHRMetricDefinition</A>
192+
<BR>
193+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHRMetricExpression.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExHRMetricExpression</A>
194+
<BR>
169195
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHttpDataGathererConfig.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExHttpDataGathererConfig</A>
170196
<BR>
171197
<A HREF="org/appdynamics/appdrestapi/exportdata/ExInfoPointGathererConfigs.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExInfoPointGathererConfigs</A>
@@ -180,6 +206,8 @@
180206
<BR>
181207
<A HREF="org/appdynamics/appdrestapi/exportdata/ExMemoryConfiguration.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExMemoryConfiguration</A>
182208
<BR>
209+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExMethodConfig.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExMethodConfig</A>
210+
<BR>
183211
<A HREF="org/appdynamics/appdrestapi/exportdata/ExMethodInvocationDataGathererConfig.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExMethodInvocationDataGathererConfig</A>
184212
<BR>
185213
<A HREF="org/appdynamics/appdrestapi/exportdata/ExMetricBaseline.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExMetricBaseline</A>
@@ -202,8 +230,22 @@
202230
<BR>
203231
<A HREF="org/appdynamics/appdrestapi/exportdata/ExNthOccurance.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExNthOccurance</A>
204232
<BR>
233+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExNVProperties.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExNVProperties</A>
234+
<BR>
235+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExNVProperty.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExNVProperty</A>
236+
<BR>
205237
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPageConfig.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExPageConfig</A>
206238
<BR>
239+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExParameter.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExParameter</A>
240+
<BR>
241+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExParameters.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExParameters</A>
242+
<BR>
243+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPercentiles.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExPercentiles</A>
244+
<BR>
245+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPercentileValue.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExPercentileValue</A>
246+
<BR>
247+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPercentileValues.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExPercentileValues</A>
248+
<BR>
207249
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPojoDataGathererConfig.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExPojoDataGathererConfig</A>
208250
<BR>
209251
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPojoMethodDefinition.html" title="class in org.appdynamics.appdrestapi.exportdata" target="classFrame">ExPojoMethodDefinition</A>

javadoc/allclasses-noframe.html

Lines changed: 44 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
<!--NewPage-->
33
<HTML>
44
<HEAD>
5-
<!-- Generated by javadoc (build 1.6.0_65) on Fri Oct 24 19:59:55 PDT 2014 -->
5+
<!-- Generated by javadoc (build 1.6.0_65) on Wed Oct 29 04:52:45 PDT 2014 -->
66
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
77
<TITLE>
88
All Classes
99
</TITLE>
1010

11-
<META NAME="date" CONTENT="2014-10-24">
11+
<META NAME="date" CONTENT="2014-10-29">
1212

1313
<LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style">
1414

@@ -82,6 +82,12 @@
8282
<BR>
8383
<A HREF="org/appdynamics/appdrestapi/queries/EventsQuery.html" title="class in org.appdynamics.appdrestapi.queries">EventsQuery</A>
8484
<BR>
85+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAffectedBTMatchCriteria.html" title="class in org.appdynamics.appdrestapi.exportdata">ExAffectedBTMatchCriteria</A>
86+
<BR>
87+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAffectedEntitiesMatchCriteria.html" title="class in org.appdynamics.appdrestapi.exportdata">ExAffectedEntitiesMatchCriteria</A>
88+
<BR>
89+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAffectedInfraMatchCriteria.html" title="class in org.appdynamics.appdrestapi.exportdata">ExAffectedInfraMatchCriteria</A>
90+
<BR>
8591
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAgentConfiguration.html" title="class in org.appdynamics.appdrestapi.exportdata">ExAgentConfiguration</A>
8692
<BR>
8793
<A HREF="org/appdynamics/appdrestapi/exportdata/ExAgentConfigurations.html" title="class in org.appdynamics.appdrestapi.exportdata">ExAgentConfigurations</A>
@@ -134,6 +140,10 @@
134140
<BR>
135141
<A HREF="org/appdynamics/appdrestapi/exportdata/ExConfiguration.html" title="class in org.appdynamics.appdrestapi.exportdata">ExConfiguration</A>
136142
<BR>
143+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExCookie.html" title="class in org.appdynamics.appdrestapi.exportdata">ExCookie</A>
144+
<BR>
145+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExCookies.html" title="class in org.appdynamics.appdrestapi.exportdata">ExCookies</A>
146+
<BR>
137147
<A HREF="org/appdynamics/appdrestapi/exportdata/ExCritical.html" title="class in org.appdynamics.appdrestapi.exportdata">ExCritical</A>
138148
<BR>
139149
<A HREF="org/appdynamics/appdrestapi/exportdata/ExCustomExitPointDefinitions.html" title="class in org.appdynamics.appdrestapi.exportdata">ExCustomExitPointDefinitions</A>
@@ -166,6 +176,22 @@
166176
<BR>
167177
<A HREF="org/appdynamics/appdrestapi/exportdata/ExExcludes.html" title="class in org.appdynamics.appdrestapi.exportdata">ExExcludes</A>
168178
<BR>
179+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExExecutionCriteria.html" title="class in org.appdynamics.appdrestapi.exportdata">ExExecutionCriteria</A>
180+
<BR>
181+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExGenericMethodConfig.html" title="class in org.appdynamics.appdrestapi.exportdata">ExGenericMethodConfig</A>
182+
<BR>
183+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHeader.html" title="class in org.appdynamics.appdrestapi.exportdata">ExHeader</A>
184+
<BR>
185+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHeaders.html" title="class in org.appdynamics.appdrestapi.exportdata">ExHeaders</A>
186+
<BR>
187+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHealthRule.html" title="class in org.appdynamics.appdrestapi.exportdata">ExHealthRule</A>
188+
<BR>
189+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHRCondition.html" title="class in org.appdynamics.appdrestapi.exportdata">ExHRCondition</A>
190+
<BR>
191+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHRMetricDefinition.html" title="class in org.appdynamics.appdrestapi.exportdata">ExHRMetricDefinition</A>
192+
<BR>
193+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHRMetricExpression.html" title="class in org.appdynamics.appdrestapi.exportdata">ExHRMetricExpression</A>
194+
<BR>
169195
<A HREF="org/appdynamics/appdrestapi/exportdata/ExHttpDataGathererConfig.html" title="class in org.appdynamics.appdrestapi.exportdata">ExHttpDataGathererConfig</A>
170196
<BR>
171197
<A HREF="org/appdynamics/appdrestapi/exportdata/ExInfoPointGathererConfigs.html" title="class in org.appdynamics.appdrestapi.exportdata">ExInfoPointGathererConfigs</A>
@@ -180,6 +206,8 @@
180206
<BR>
181207
<A HREF="org/appdynamics/appdrestapi/exportdata/ExMemoryConfiguration.html" title="class in org.appdynamics.appdrestapi.exportdata">ExMemoryConfiguration</A>
182208
<BR>
209+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExMethodConfig.html" title="class in org.appdynamics.appdrestapi.exportdata">ExMethodConfig</A>
210+
<BR>
183211
<A HREF="org/appdynamics/appdrestapi/exportdata/ExMethodInvocationDataGathererConfig.html" title="class in org.appdynamics.appdrestapi.exportdata">ExMethodInvocationDataGathererConfig</A>
184212
<BR>
185213
<A HREF="org/appdynamics/appdrestapi/exportdata/ExMetricBaseline.html" title="class in org.appdynamics.appdrestapi.exportdata">ExMetricBaseline</A>
@@ -202,8 +230,22 @@
202230
<BR>
203231
<A HREF="org/appdynamics/appdrestapi/exportdata/ExNthOccurance.html" title="class in org.appdynamics.appdrestapi.exportdata">ExNthOccurance</A>
204232
<BR>
233+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExNVProperties.html" title="class in org.appdynamics.appdrestapi.exportdata">ExNVProperties</A>
234+
<BR>
235+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExNVProperty.html" title="class in org.appdynamics.appdrestapi.exportdata">ExNVProperty</A>
236+
<BR>
205237
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPageConfig.html" title="class in org.appdynamics.appdrestapi.exportdata">ExPageConfig</A>
206238
<BR>
239+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExParameter.html" title="class in org.appdynamics.appdrestapi.exportdata">ExParameter</A>
240+
<BR>
241+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExParameters.html" title="class in org.appdynamics.appdrestapi.exportdata">ExParameters</A>
242+
<BR>
243+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPercentiles.html" title="class in org.appdynamics.appdrestapi.exportdata">ExPercentiles</A>
244+
<BR>
245+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPercentileValue.html" title="class in org.appdynamics.appdrestapi.exportdata">ExPercentileValue</A>
246+
<BR>
247+
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPercentileValues.html" title="class in org.appdynamics.appdrestapi.exportdata">ExPercentileValues</A>
248+
<BR>
207249
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPojoDataGathererConfig.html" title="class in org.appdynamics.appdrestapi.exportdata">ExPojoDataGathererConfig</A>
208250
<BR>
209251
<A HREF="org/appdynamics/appdrestapi/exportdata/ExPojoMethodDefinition.html" title="class in org.appdynamics.appdrestapi.exportdata">ExPojoMethodDefinition</A>

0 commit comments

Comments
 (0)