|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.opennms.netmgt.rrd.tcp.QueuingTcpRrdStrategy
public class QueuingTcpRrdStrategy
Provides a TCP socket-based implementation of RrdStrategy that pushes update commands out in a simple serialized format.
| Constructor Summary | |
|---|---|
QueuingTcpRrdStrategy(TcpRrdStrategy delegate)
Constructor for QueuingTcpRrdStrategy. |
|
| Method Summary | |
|---|---|
void |
closeFile(String rrd)
closeFile |
TcpRrdStrategy.RrdDefinition |
createDefinition(String creator,
String directory,
String rrdName,
int step,
List<RrdDataSource> dataSources,
List<String> rraList)
Create a round robin database definition from the supplied parameters. |
void |
createFile(TcpRrdStrategy.RrdDefinition rrdDef)
createFile |
InputStream |
createGraph(String command,
File workDir)
Creates an InputStream representing the bytes of a graph created from round robin data. |
RrdGraphDetails |
createGraphReturnDetails(String command,
File workDir)
Creates an RrdGraphDetails object representing the graph created from round robin data. |
Double |
fetchLastValue(String rrdFile,
String ds,
int interval)
Fetches the last value from the round robin database with the given name. |
Double |
fetchLastValue(String rrdFile,
String ds,
String consolidationFunction,
int interval)
Fetches the last value from the round robin database with the given name. |
Double |
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. |
String |
getDefaultFileExtension()
getDefaultFileExtension |
int |
getGraphLeftOffset()
getGraphLeftOffset |
int |
getGraphRightOffset()
getGraphRightOffset |
int |
getGraphTopOffsetWithText()
getGraphTopOffsetWithText |
String |
getStats()
getStats |
String |
openFile(String fileName)
Opens the round robin database with the supplied name. |
void |
promoteEnqueuedFiles(Collection<String> rrdFiles)
In the event that this is a queuing implementation of the RrdStrategy. |
void |
setConfigurationProperties(Properties configurationParameters)
setConfigurationProperties |
void |
updateFile(String fileName,
String owner,
String data)
Updates the supplied round robin database with the given timestamp:value point |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public QueuingTcpRrdStrategy(TcpRrdStrategy delegate)
Constructor for QueuingTcpRrdStrategy.
delegate - a TcpRrdStrategy object.| Method Detail |
|---|
public void setConfigurationProperties(Properties configurationParameters)
setConfigurationProperties
setConfigurationProperties in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>configurationParameters - a Properties object.public String getDefaultFileExtension()
getDefaultFileExtension
getDefaultFileExtension in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>String object.
public TcpRrdStrategy.RrdDefinition createDefinition(String creator,
String directory,
String rrdName,
int step,
List<RrdDataSource> dataSources,
List<String> rraList)
throws Exception
createDefinition in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>creator - -
A string representing who is creating this file for use in log
msgsdirectory - -
The directory to create the file inrrdName - -
The name to use for the round robin databasestep - -
the step for the databasedataSources - -
the data sources to use for round robin databaserraList - -
a List of the round robin archives to create in the database
Exception - If an error occurs while creating the definition
public void createFile(TcpRrdStrategy.RrdDefinition rrdDef)
throws Exception
createFile
createFile in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>rrdDef - a TcpRrdStrategy.RrdDefinition object.
Exception - if any.
public String openFile(String fileName)
throws Exception
openFile in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>fileName - the name of the associated rrd file
Exception - if an error occurs opening the file
public void updateFile(String fileName,
String owner,
String data)
throws Exception
updateFile in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>fileName - an rrd object created using openFileowner - the owner of the rrddata - a string of the form Exception - if an error occurs updating the file
public void closeFile(String rrd)
throws Exception
closeFile
closeFile in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>rrd - a String object.
Exception - if any.
public Double fetchLastValue(String rrdFile,
String ds,
int interval)
throws NumberFormatException
fetchLastValue in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>rrdFile - a name the represents a round robin databaseds - a name the represents a data source to be usedinterval - a step interval of the round robin database
NumberFormatException - if any.
public Double fetchLastValue(String rrdFile,
String ds,
String consolidationFunction,
int interval)
throws NumberFormatException
fetchLastValue in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>rrdFile - a name the represents a round robin databaseds - a name the represents a data source to be usedconsolidationFunction - a String object.interval - a step interval of the round robin database
NumberFormatException - if any.
public Double fetchLastValueInRange(String rrdFile,
String ds,
int interval,
int range)
throws NumberFormatException
fetchLastValueInRange in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>rrdFile - a name the represents a round robin databaseds - a name the represents a data source to be usedinterval - a step interval of the round robin databaserange - an acceptable range for which the last value will be returned
NumberFormatException - if any.
public InputStream createGraph(String command,
File workDir)
throws IOException
createGraph in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>command - the command needed to create the graphworkDir - the directory that all referenced files are relative to
IOException - if an IOError occurs
public RrdGraphDetails createGraphReturnDetails(String command,
File workDir)
throws IOException
createGraphReturnDetails in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>command - the command needed to create the graphworkDir - the directory that all referenced files are relative to
IOException - if an IOError occurspublic int getGraphLeftOffset()
getGraphLeftOffset
getGraphLeftOffset in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>public int getGraphRightOffset()
getGraphRightOffset
getGraphRightOffset in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>public int getGraphTopOffsetWithText()
getGraphTopOffsetWithText
getGraphTopOffsetWithText in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>public String getStats()
getStats
getStats in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>String object.public void promoteEnqueuedFiles(Collection<String> rrdFiles)
promoteEnqueuedFiles in interface RrdStrategy<TcpRrdStrategy.RrdDefinition,String>rrdFiles - a Collection object.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||