| Package | Description |
|---|---|
| org.rrd4j.core | core RRD4J implementation. |
| Modifier and Type | Method and Description |
|---|---|
Sample | RrdDb.createSample()Creates new sample with the current timestamp and all data source values set to 'unknown'. |
Sample | RrdDb.createSample(long time)Creates new sample with the given timestamp and all datasource values set to 'unknown'. |
Sample | Sample.set(String timeAndValues)Sets sample timestamp and data source values in a fashion similar to RRDTool. |
Sample | Sample.setTime(long time)Sets sample timestamp. |
Sample | Sample.setValue(int i,
double value)Sets single datasource value using data source index. |
Sample | Sample.setValue(String dsName,
double value)Sets single data source value in the sample. |
Sample | Sample.setValues(double... values)Sets some (possibly all) data source values in bulk. |
| Modifier and Type | Method and Description |
|---|---|
(package private) void | RrdDb.store(Sample sample)Store sample |