summaryrefslogtreecommitdiff
path: root/jarmon/jarmon.js
diff options
context:
space:
mode:
Diffstat (limited to 'jarmon/jarmon.js')
-rw-r--r--jarmon/jarmon.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jarmon/jarmon.js b/jarmon/jarmon.js
index a66a93b..6e1d1f8 100644
--- a/jarmon/jarmon.js
+++ b/jarmon/jarmon.js
@@ -316,7 +316,7 @@ jarmon.RrdQueryRemote.prototype._callRemote = function(methodName, args) {
};
-jarmon.RrdQueryRemote.prototype.getData = function(startTime, endTime, dsId) {
+jarmon.RrdQueryRemote.prototype.getData = function(startTime, endTime, dsId, cfName) {
/**
* Return a Flot compatible data series asynchronously.
*
@@ -329,7 +329,7 @@ jarmon.RrdQueryRemote.prototype.getData = function(startTime, endTime, dsId) {
if(this.lastUpdate < endTime/1000) {
this._download = null;
}
- return this._callRemote('getData', [startTime, endTime, dsId]);
+ return this._callRemote('getData', [startTime, endTime, dsId, cfName]);
};
/**