Modifier and Type | Method and Description |
---|---|
void |
PersistOperationBuilder.commit()
commit
|
Modifier and Type | Method and Description |
---|---|
InputStream |
NullRrdStrategy.createGraph(String command,
File workDir) |
RrdGraphDetails |
NullRrdStrategy.createGraphReturnDetails(String command,
File workDir) |
Double |
NullRrdStrategy.fetchLastValue(String rrdFile,
String ds,
int interval) |
Double |
NullRrdStrategy.fetchLastValue(String rrdFile,
String ds,
String consolidationFunction,
int interval) |
Double |
NullRrdStrategy.fetchLastValueInRange(String rrdFile,
String ds,
int interval,
int range) |
Modifier and Type | Method and Description |
---|---|
boolean |
LatencyStoringServiceMonitorAdaptor.createRRD(String repository,
InetAddress addr,
String rrdBaseName,
List<RrdDataSource> dsList)
Create an RRD database file with multiple dsNames for storing latency/response time data.
|
boolean |
LatencyStoringServiceMonitorAdaptor.createRRD(String repository,
InetAddress addr,
String rrdBaseName,
String dsName)
Create an RRD database file with a single dsName for storing latency/response time data.
|
Modifier and Type | Method and Description |
---|---|
static InputStream |
RrdUtils.createGraph(String command,
File workDir)
Creates an InputStream representing the bytes of a graph created from
round robin data.
|
InputStream |
RrdStrategy.createGraph(String command,
File workDir)
Creates an InputStream representing the bytes of a graph created from
round robin data.
|
InputStream |
QueuingRrdStrategy.createGraph(String command,
File workDir)
Creates an InputStream representing the bytes of a graph created from
round robin data.
|
InputStream |
MultiOutputRrdStrategy.createGraph(String command,
File workDir)
Creates an InputStream representing the bytes of a graph created from
round robin data.
|
RrdGraphDetails |
RrdStrategy.createGraphReturnDetails(String command,
File workDir)
Creates an RrdGraphDetails object representing the graph created from
round robin data.
|
RrdGraphDetails |
QueuingRrdStrategy.createGraphReturnDetails(String command,
File workDir)
Creates an RrdGraphDetails object representing the graph created from
round robin data.
|
RrdGraphDetails |
MultiOutputRrdStrategy.createGraphReturnDetails(String command,
File workDir)
Creates an RrdGraphDetails object representing the graph created from
round robin data.
|
static boolean |
RrdUtils.createRRD(String creator,
String directory,
String rrdName,
int step,
List<RrdDataSource> dataSources,
List<String> rraList)
createRRD
|
static boolean |
RrdUtils.createRRD(String creator,
String directory,
String rrdName,
int step,
List<RrdDataSource> dataSources,
List<String> rraList,
Map<String,String> attributeMappings)
createRRD
|
static boolean |
RrdUtils.createRRD(String creator,
String directory,
String dsName,
int step,
String dsType,
int dsHeartbeat,
String dsMin,
String dsMax,
List<String> rraList)
Create a round robin database file.
|
static boolean |
RrdUtils.createRRD(String creator,
String directory,
String dsName,
int step,
String dsType,
int dsHeartbeat,
String dsMin,
String dsMax,
List<String> rraList,
Map<String,String> attributeMappings)
Create a round robin database file.
|
static Double |
RrdUtils.fetchLastValue(String rrdFile,
String ds,
int interval)
This method issues an round robin fetch command to retrieve the last
value of the datasource stored in the specified RRD file.
|
Double |
RrdStrategy.fetchLastValue(String rrdFile,
String ds,
int interval)
Fetches the last value from the round robin database with the given name.
|
Double |
QueuingRrdStrategy.fetchLastValue(String rrdFile,
String ds,
int interval)
Fetches the last value from the round robin database with the given name.
|
Double |
MultiOutputRrdStrategy.fetchLastValue(String rrdFile,
String ds,
int interval)
Fetches the last value from the round robin database with the given name.
|
Double |
RrdStrategy.fetchLastValue(String rrdFile,
String ds,
String consolidationFunction,
int interval)
Fetches the last value from the round robin database with the given name.
|
Double |
QueuingRrdStrategy.fetchLastValue(String rrdFile,
String ds,
String consolidationFunction,
int interval)
Fetches the last value from the round robin database with the given name.
|
Double |
MultiOutputRrdStrategy.fetchLastValue(String rrdFile,
String ds,
String consolidationFunction,
int interval)
Fetches the last value from the round robin database with the given name.
|
static Double |
RrdUtils.fetchLastValueInRange(String rrdFile,
String ds,
int interval,
int range)
This method issues an round robing fetch command to retrieve the last
value of the datasource stored in the specified RRD file within given
tolerance (which should be a multiple of the RRD interval).
|
Double |
RrdStrategy.fetchLastValueInRange(String rrdFile,
String ds,
int interval,
int range)
Fetches the last value from the round robin database with the given name
within a time range.
|
Double |
QueuingRrdStrategy.fetchLastValueInRange(String rrdFile,
String ds,
int interval,
int range)
Fetches the last value from the round robin database with the given name
within a time range.
|
Double |
MultiOutputRrdStrategy.fetchLastValueInRange(String rrdFile,
String ds,
int interval,
int range)
Fetches the last value from the round robin database with the given name
within a time range.
|
int |
RrdGraphDetails.getHeight()
Gets the height of the PNG image.
|
InputStream |
RrdGraphDetails.getInputStream()
Gets the PNG image representing the graph.
|
String[] |
RrdGraphDetails.getPrintLines()
Gets the PRINT lines associated with the graph command.
|
int |
RrdGraphDetails.getWidth()
Gets the width of the PNG image.
|
static void |
RrdUtils.updateRRD(String owner,
String repositoryDir,
String rrdName,
long timestamp,
String val)
Add datapoints to a round robin database.
|
static void |
RrdUtils.updateRRD(String owner,
String repositoryDir,
String rrdName,
String val)
Add datapoints to a round robin database using the current system time as
the timestamp for the values
|
Modifier and Type | Method and Description |
---|---|
InputStream |
JRobinRrdStrategy.createGraph(String command,
File workDir)
Creates an InputStream representing the bytes of a graph created from
round robin data.
|
RrdGraphDetails |
JRobinRrdStrategy.createGraphReturnDetails(String command,
File workDir)
Creates an RrdGraphDetails object representing the graph created from
round robin data.
|
Double |
JRobinRrdStrategy.fetchLastValue(String fileName,
String ds,
int interval)
Fetches the last value from the round robin database with the given name.
|
Double |
JRobinRrdStrategy.fetchLastValue(String fileName,
String ds,
String consolidationFunction,
int interval)
Fetches the last value from the round robin database with the given name.
|
Double |
JRobinRrdStrategy.fetchLastValueInRange(String fileName,
String ds,
int interval,
int range)
Fetches the last value from the round robin database with the given name
within a time range.
|
int |
JRobinRrdGraphDetails.getHeight()
getHeight
|
InputStream |
JRobinRrdGraphDetails.getInputStream()
getInputStream
|
int |
JRobinRrdGraphDetails.getWidth()
getWidth
|
Modifier and Type | Method and Description |
---|---|
InputStream |
JniRrdStrategy.createGraph(String command,
File workDir)
Creates an InputStream representing the bytes of a graph created from
round robin data.
|
RrdGraphDetails |
JniRrdStrategy.createGraphReturnDetails(String command,
File workDir)
Creates an RrdGraphDetails object representing the graph created from
round robin data.
|
Double |
JniRrdStrategy.fetchLastValue(String rrdFile,
String ds,
int interval)
Fetches the last value from the round robin database with the given name.
|
Double |
JniRrdStrategy.fetchLastValueInRange(String rrdFile,
String ds,
int interval,
int range)
Fetches the last value from the round robin database with the given name
within a time range.
|
int |
JniGraphDetails.getHeight()
getHeight
|
InputStream |
JniGraphDetails.getInputStream()
getInputStream
|
String[] |
JniGraphDetails.getPrintLines()
getPrintLines
|
int |
JniGraphDetails.getWidth()
getWidth
|
Copyright © 2015. All rights reserved.