2013-01-24 04:55:32 -08:00
|
|
|
var Prometheus = Prometheus || {};
|
|
|
|
var graphs = [];
|
2013-04-02 10:14:02 -07:00
|
|
|
var graphTemplate;
|
2013-01-24 04:55:32 -08:00
|
|
|
|
2013-04-17 07:49:21 -07:00
|
|
|
var SECOND = 1000;
|
|
|
|
|
2015-03-24 14:04:38 -07:00
|
|
|
Handlebars.registerHelper('pathPrefix', function() { return PATH_PREFIX; });
|
|
|
|
|
2013-01-24 04:55:32 -08:00
|
|
|
Prometheus.Graph = function(element, options) {
|
|
|
|
this.el = element;
|
2016-08-05 14:35:11 -07:00
|
|
|
this.graphHTML = null;
|
2013-01-24 04:55:32 -08:00
|
|
|
this.options = options;
|
|
|
|
this.changeHandler = null;
|
|
|
|
this.rickshawGraph = null;
|
|
|
|
this.data = [];
|
|
|
|
|
|
|
|
this.initialize();
|
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.timeFactors = {
|
|
|
|
"y": 60 * 60 * 24 * 365,
|
|
|
|
"w": 60 * 60 * 24 * 7,
|
|
|
|
"d": 60 * 60 * 24,
|
|
|
|
"h": 60 * 60,
|
|
|
|
"m": 60,
|
|
|
|
"s": 1
|
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.stepValues = [
|
|
|
|
"1s", "10s", "1m", "5m", "15m", "30m", "1h", "2h", "6h", "12h", "1d", "2d",
|
|
|
|
"1w", "2w", "4w", "8w", "1y", "2y"
|
|
|
|
];
|
|
|
|
|
|
|
|
Prometheus.Graph.numGraphs = 0;
|
|
|
|
|
|
|
|
Prometheus.Graph.prototype.initialize = function() {
|
|
|
|
var self = this;
|
|
|
|
self.id = Prometheus.Graph.numGraphs++;
|
|
|
|
|
|
|
|
// Set default options.
|
2015-11-11 11:04:37 -08:00
|
|
|
self.options.id = self.id;
|
|
|
|
self.options.range_input = self.options.range_input || "1h";
|
|
|
|
if (self.options.tab === undefined) {
|
|
|
|
self.options.tab = 1;
|
2014-12-26 08:40:06 -08:00
|
|
|
}
|
2013-01-24 04:55:32 -08:00
|
|
|
|
|
|
|
// Draw graph controls and container from Handlebars template.
|
2013-04-02 10:14:02 -07:00
|
|
|
|
2016-08-05 14:35:11 -07:00
|
|
|
self.graphHTML = $(graphTemplate(self.options));
|
|
|
|
self.el.append(self.graphHTML);
|
2013-01-24 04:55:32 -08:00
|
|
|
|
|
|
|
// Get references to all the interesting elements in the graph container and
|
|
|
|
// bind event handlers.
|
|
|
|
var graphWrapper = self.el.find("#graph_wrapper" + self.id);
|
|
|
|
self.queryForm = graphWrapper.find(".query_form");
|
2015-06-12 07:46:22 -07:00
|
|
|
|
|
|
|
self.expr = graphWrapper.find("textarea[name=expr]");
|
|
|
|
self.expr.keypress(function(e) {
|
|
|
|
// Enter was pressed without the shift key.
|
|
|
|
if (e.which == 13 && !e.shiftKey) {
|
|
|
|
self.queryForm.submit();
|
|
|
|
e.preventDefault();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Auto-resize the text area on input.
|
|
|
|
var offset = this.offsetHeight - this.clientHeight;
|
|
|
|
var resizeTextarea = function(el) {
|
|
|
|
$(el).css('height', 'auto').css('height', el.scrollHeight + offset);
|
|
|
|
};
|
|
|
|
$(this).on('keyup input', function() { resizeTextarea(this); });
|
|
|
|
});
|
2015-01-14 08:56:03 -08:00
|
|
|
self.expr.change(storeGraphOptionsInURL);
|
2015-06-12 07:46:22 -07:00
|
|
|
|
2013-01-24 04:55:32 -08:00
|
|
|
self.rangeInput = self.queryForm.find("input[name=range_input]");
|
2015-01-14 08:56:03 -08:00
|
|
|
self.stackedBtn = self.queryForm.find(".stacked_btn");
|
2013-01-24 04:55:32 -08:00
|
|
|
self.stacked = self.queryForm.find("input[name=stacked]");
|
2016-01-11 05:53:32 -08:00
|
|
|
self.insertMetric = self.queryForm.find("select[name=insert_metric]");
|
2013-04-17 07:49:21 -07:00
|
|
|
self.refreshInterval = self.queryForm.find("select[name=refresh]");
|
2013-05-21 07:54:33 -07:00
|
|
|
|
2013-04-26 07:50:59 -07:00
|
|
|
self.consoleTab = graphWrapper.find(".console");
|
|
|
|
self.graphTab = graphWrapper.find(".graph_container");
|
2015-01-14 08:56:03 -08:00
|
|
|
|
|
|
|
self.tabs = graphWrapper.find("a[data-toggle='tab']");
|
2015-11-11 11:04:37 -08:00
|
|
|
self.tabs.eq(self.options.tab).tab("show");
|
2015-01-14 08:56:03 -08:00
|
|
|
self.tabs.on("shown.bs.tab", function(e) {
|
|
|
|
var target = $(e.target);
|
2015-11-11 11:04:37 -08:00
|
|
|
self.options.tab = target.parent().index();
|
2015-01-14 08:56:03 -08:00
|
|
|
storeGraphOptionsInURL();
|
|
|
|
if ($("#" + target.attr("aria-controls")).hasClass("reload")) {
|
|
|
|
self.submitQuery();
|
2013-04-26 07:50:59 -07:00
|
|
|
}
|
|
|
|
});
|
2016-08-05 14:35:11 -07:00
|
|
|
|
2016-01-11 05:53:32 -08:00
|
|
|
// Return moves focus back to expr instead of submitting.
|
|
|
|
self.insertMetric.bind("keydown", "return", function(e) {
|
|
|
|
self.expr.focus();
|
|
|
|
self.expr.val(self.expr.val());
|
|
|
|
return e.preventDefault();
|
|
|
|
})
|
2013-01-24 04:55:32 -08:00
|
|
|
|
2015-01-14 08:56:03 -08:00
|
|
|
self.error = graphWrapper.find(".error").hide();
|
2015-02-06 07:20:46 -08:00
|
|
|
self.graphArea = graphWrapper.find(".graph_area");
|
|
|
|
self.graph = self.graphArea.find(".graph");
|
|
|
|
self.yAxis = self.graphArea.find(".y_axis");
|
2013-01-24 04:55:32 -08:00
|
|
|
self.legend = graphWrapper.find(".legend");
|
|
|
|
self.spinner = graphWrapper.find(".spinner");
|
|
|
|
self.evalStats = graphWrapper.find(".eval_stats");
|
|
|
|
|
2013-03-21 09:06:37 -07:00
|
|
|
self.endDate = graphWrapper.find("input[name=end_input]");
|
2015-01-12 05:18:28 -08:00
|
|
|
self.endDate.datetimepicker({
|
|
|
|
language: 'en',
|
|
|
|
pickSeconds: false,
|
|
|
|
});
|
2015-11-11 11:04:37 -08:00
|
|
|
if (self.options.end_input) {
|
|
|
|
self.endDate.data('datetimepicker').setValue(self.options.end_input);
|
2013-03-21 09:06:37 -07:00
|
|
|
}
|
2015-11-11 11:04:37 -08:00
|
|
|
self.endDate.change(function() { self.submitQuery(); });
|
|
|
|
self.refreshInterval.change(function() { self.updateRefresh(); });
|
2013-03-21 06:26:13 -07:00
|
|
|
|
2015-01-14 08:56:03 -08:00
|
|
|
self.isStacked = function() {
|
|
|
|
return self.stacked.val() === '1';
|
|
|
|
};
|
|
|
|
|
|
|
|
var styleStackBtn = function() {
|
|
|
|
var icon = self.stackedBtn.find('.glyphicon');
|
|
|
|
if (self.isStacked()) {
|
|
|
|
self.stackedBtn.addClass("btn-primary");
|
|
|
|
icon.addClass("glyphicon-check");
|
|
|
|
icon.removeClass("glyphicon-unchecked");
|
|
|
|
} else {
|
|
|
|
self.stackedBtn.removeClass("btn-primary");
|
|
|
|
icon.addClass("glyphicon-unchecked");
|
|
|
|
icon.removeClass("glyphicon-check");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
styleStackBtn();
|
|
|
|
|
|
|
|
self.stackedBtn.click(function() {
|
2015-02-06 07:20:46 -08:00
|
|
|
if (self.isStacked() && self.graphJSON) {
|
|
|
|
// If the graph was stacked, the original series data got mutated
|
|
|
|
// (scaled) and we need to reconstruct it from the original JSON data.
|
|
|
|
self.data = self.transformData(self.graphJSON);
|
|
|
|
}
|
2015-01-14 08:56:03 -08:00
|
|
|
self.stacked.val(self.isStacked() ? '0' : '1');
|
|
|
|
styleStackBtn();
|
|
|
|
self.updateGraph();
|
|
|
|
});
|
|
|
|
|
2013-04-26 07:50:59 -07:00
|
|
|
self.queryForm.submit(function() {
|
2013-07-23 17:21:31 -07:00
|
|
|
self.consoleTab.addClass("reload");
|
|
|
|
self.graphTab.addClass("reload");
|
2013-04-26 07:50:59 -07:00
|
|
|
self.submitQuery();
|
|
|
|
return false;
|
|
|
|
});
|
2013-01-24 04:55:32 -08:00
|
|
|
self.spinner.hide();
|
|
|
|
|
2013-07-13 10:30:51 -07:00
|
|
|
self.queryForm.find("button[name=inc_range]").click(function() { self.increaseRange(); });
|
|
|
|
self.queryForm.find("button[name=dec_range]").click(function() { self.decreaseRange(); });
|
2013-03-21 06:26:13 -07:00
|
|
|
|
2013-07-13 10:30:51 -07:00
|
|
|
self.queryForm.find("button[name=inc_end]").click(function() { self.increaseEnd(); });
|
|
|
|
self.queryForm.find("button[name=dec_end]").click(function() { self.decreaseEnd(); });
|
2013-03-21 06:26:13 -07:00
|
|
|
|
2016-01-11 05:53:32 -08:00
|
|
|
self.insertMetric.change(function() {
|
|
|
|
self.expr.selection("replace", {text: self.insertMetric.val(), mode: "before"});
|
|
|
|
self.expr.focus(); // refocusing
|
|
|
|
});
|
|
|
|
|
2016-07-31 07:30:23 -07:00
|
|
|
var removeBtn = graphWrapper.find("[name=remove]");
|
|
|
|
removeBtn.click(function() {
|
|
|
|
self.remove();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2016-01-11 05:53:32 -08:00
|
|
|
self.populateInsertableMetrics();
|
2013-02-06 08:08:05 -08:00
|
|
|
|
2013-01-24 04:55:32 -08:00
|
|
|
if (self.expr.val()) {
|
|
|
|
self.submitQuery();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-01-11 05:53:32 -08:00
|
|
|
Prometheus.Graph.prototype.populateInsertableMetrics = function() {
|
2013-02-06 08:08:05 -08:00
|
|
|
var self = this;
|
|
|
|
$.ajax({
|
|
|
|
method: "GET",
|
2015-06-25 03:42:18 -07:00
|
|
|
url: PATH_PREFIX + "/api/v1/label/__name__/values",
|
2013-02-06 08:08:05 -08:00
|
|
|
dataType: "json",
|
|
|
|
success: function(json, textStatus) {
|
2015-06-25 03:42:18 -07:00
|
|
|
if (json.status !== "success") {
|
2015-11-11 11:04:37 -08:00
|
|
|
self.showError("Error loading available metrics!");
|
2015-06-25 03:42:18 -07:00
|
|
|
return;
|
2016-08-05 14:35:11 -07:00
|
|
|
}
|
2016-01-11 05:53:32 -08:00
|
|
|
var metrics = json.data;
|
|
|
|
for (var i = 0; i < metrics.length; i++) {
|
|
|
|
self.insertMetric[0].options.add(new Option(metrics[i], metrics[i]));
|
2015-06-25 03:42:18 -07:00
|
|
|
}
|
2015-07-20 11:24:08 -07:00
|
|
|
|
2015-02-05 17:03:08 -08:00
|
|
|
self.expr.typeahead({
|
2016-01-11 05:53:32 -08:00
|
|
|
source: metrics,
|
2015-02-05 17:03:08 -08:00
|
|
|
items: "all"
|
|
|
|
});
|
2015-01-19 04:33:56 -08:00
|
|
|
// This needs to happen after attaching the typeahead plugin, as it
|
|
|
|
// otherwise breaks the typeahead functionality.
|
|
|
|
self.expr.focus();
|
2013-02-06 08:08:05 -08:00
|
|
|
},
|
|
|
|
error: function() {
|
2014-10-30 08:18:05 -07:00
|
|
|
self.showError("Error loading available metrics!");
|
2013-02-06 08:08:05 -08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2013-01-24 04:55:32 -08:00
|
|
|
Prometheus.Graph.prototype.onChange = function(handler) {
|
|
|
|
this.changeHandler = handler;
|
|
|
|
};
|
|
|
|
|
2013-02-06 08:08:05 -08:00
|
|
|
Prometheus.Graph.prototype.getOptions = function() {
|
2013-01-24 04:55:32 -08:00
|
|
|
var self = this;
|
|
|
|
var options = {};
|
|
|
|
|
|
|
|
var optionInputs = [
|
|
|
|
"range_input",
|
2013-03-21 09:06:37 -07:00
|
|
|
"end_input",
|
2013-01-24 04:55:32 -08:00
|
|
|
"step_input",
|
|
|
|
"stacked"
|
|
|
|
];
|
|
|
|
|
|
|
|
self.queryForm.find("input").each(function(index, element) {
|
2015-11-11 11:04:37 -08:00
|
|
|
var name = element.name;
|
|
|
|
if ($.inArray(name, optionInputs) >= 0) {
|
2016-07-25 11:58:21 -07:00
|
|
|
if (element.value.length > 0) {
|
|
|
|
options[name] = element.value;
|
|
|
|
}
|
2015-11-11 11:04:37 -08:00
|
|
|
}
|
2013-01-24 04:55:32 -08:00
|
|
|
});
|
2015-11-11 11:04:37 -08:00
|
|
|
options.expr = self.expr.val();
|
|
|
|
options.tab = self.options.tab;
|
2013-01-24 04:55:32 -08:00
|
|
|
return options;
|
|
|
|
};
|
|
|
|
|
2013-04-17 07:49:21 -07:00
|
|
|
Prometheus.Graph.prototype.parseDuration = function(rangeText) {
|
2013-01-24 04:55:32 -08:00
|
|
|
var rangeRE = new RegExp("^([0-9]+)([ywdhms]+)$");
|
|
|
|
var matches = rangeText.match(rangeRE);
|
2015-11-11 11:04:37 -08:00
|
|
|
if (!matches) { return; }
|
2013-01-24 04:55:32 -08:00
|
|
|
if (matches.length != 3) {
|
|
|
|
return 60;
|
|
|
|
}
|
|
|
|
var value = parseInt(matches[1]);
|
|
|
|
var unit = matches[2];
|
|
|
|
return value * Prometheus.Graph.timeFactors[unit];
|
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.prototype.increaseRange = function() {
|
|
|
|
var self = this;
|
2013-04-17 07:49:21 -07:00
|
|
|
var rangeSeconds = self.parseDuration(self.rangeInput.val());
|
2013-01-24 04:55:32 -08:00
|
|
|
for (var i = 0; i < Prometheus.Graph.stepValues.length; i++) {
|
2013-04-17 07:49:21 -07:00
|
|
|
if (rangeSeconds < self.parseDuration(Prometheus.Graph.stepValues[i])) {
|
2013-01-24 04:55:32 -08:00
|
|
|
self.rangeInput.val(Prometheus.Graph.stepValues[i]);
|
|
|
|
if (self.expr.val()) {
|
|
|
|
self.submitQuery();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.prototype.decreaseRange = function() {
|
|
|
|
var self = this;
|
2013-04-17 07:49:21 -07:00
|
|
|
var rangeSeconds = self.parseDuration(self.rangeInput.val());
|
2013-01-24 04:55:32 -08:00
|
|
|
for (var i = Prometheus.Graph.stepValues.length - 1; i >= 0; i--) {
|
2013-04-17 07:49:21 -07:00
|
|
|
if (rangeSeconds > self.parseDuration(Prometheus.Graph.stepValues[i])) {
|
2013-01-24 04:55:32 -08:00
|
|
|
self.rangeInput.val(Prometheus.Graph.stepValues[i]);
|
|
|
|
if (self.expr.val()) {
|
|
|
|
self.submitQuery();
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-03-21 06:26:13 -07:00
|
|
|
Prometheus.Graph.prototype.getEndDate = function() {
|
2013-03-21 09:54:03 -07:00
|
|
|
var self = this;
|
2013-03-21 06:26:13 -07:00
|
|
|
if (!self.endDate || !self.endDate.val()) {
|
2015-06-25 03:42:18 -07:00
|
|
|
return new Date();
|
2013-03-21 06:26:13 -07:00
|
|
|
}
|
2015-01-14 06:09:58 -08:00
|
|
|
return self.endDate.data('datetimepicker').getDate().getTime();
|
2013-03-21 06:26:13 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.prototype.getOrSetEndDate = function() {
|
2013-03-21 09:54:03 -07:00
|
|
|
var self = this;
|
2013-03-21 06:26:13 -07:00
|
|
|
var date = self.getEndDate();
|
2013-03-21 09:54:03 -07:00
|
|
|
self.setEndDate(date);
|
|
|
|
return date;
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2013-03-21 06:26:13 -07:00
|
|
|
|
|
|
|
Prometheus.Graph.prototype.setEndDate = function(date) {
|
|
|
|
var self = this;
|
2015-01-12 05:18:28 -08:00
|
|
|
self.endDate.data('datetimepicker').setValue(date);
|
2013-03-21 06:26:13 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.prototype.increaseEnd = function() {
|
|
|
|
var self = this;
|
2015-11-11 11:04:37 -08:00
|
|
|
self.setEndDate(new Date(self.getOrSetEndDate() + self.parseDuration(self.rangeInput.val()) * 1000/2 )); // increase by 1/2 range & convert ms in s
|
2013-03-21 09:44:21 -07:00
|
|
|
self.submitQuery();
|
2013-03-21 06:26:13 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.prototype.decreaseEnd = function() {
|
|
|
|
var self = this;
|
2015-11-11 11:04:37 -08:00
|
|
|
self.setEndDate(new Date(self.getOrSetEndDate() - self.parseDuration(self.rangeInput.val()) * 1000/2 ));
|
2013-03-21 09:44:21 -07:00
|
|
|
self.submitQuery();
|
2013-03-21 06:26:13 -07:00
|
|
|
};
|
|
|
|
|
2013-01-24 04:55:32 -08:00
|
|
|
Prometheus.Graph.prototype.submitQuery = function() {
|
|
|
|
var self = this;
|
2014-10-30 08:18:05 -07:00
|
|
|
self.clearError();
|
2013-05-02 07:55:47 -07:00
|
|
|
if (!self.expr.val()) {
|
2013-07-23 17:21:31 -07:00
|
|
|
return;
|
2013-05-02 07:55:47 -07:00
|
|
|
}
|
2013-01-24 04:55:32 -08:00
|
|
|
|
|
|
|
self.spinner.show();
|
|
|
|
self.evalStats.empty();
|
|
|
|
|
|
|
|
var startTime = new Date().getTime();
|
2013-04-17 07:49:21 -07:00
|
|
|
var rangeSeconds = self.parseDuration(self.rangeInput.val());
|
2013-01-24 04:55:32 -08:00
|
|
|
var resolution = self.queryForm.find("input[name=step_input]").val() || Math.max(Math.floor(rangeSeconds / 250), 1);
|
2013-03-21 09:36:04 -07:00
|
|
|
var endDate = self.getEndDate() / 1000;
|
2013-01-24 04:55:32 -08:00
|
|
|
|
2013-04-17 07:49:21 -07:00
|
|
|
if (self.queryXhr) {
|
2013-07-23 17:18:49 -07:00
|
|
|
self.queryXhr.abort();
|
2013-04-17 07:49:21 -07:00
|
|
|
}
|
2013-07-23 17:18:49 -07:00
|
|
|
var url;
|
|
|
|
var success;
|
2015-06-25 03:42:18 -07:00
|
|
|
var params = {
|
|
|
|
"query": self.expr.val()
|
|
|
|
};
|
2015-11-11 11:04:37 -08:00
|
|
|
if (self.options.tab === 0) {
|
|
|
|
params.start = endDate - rangeSeconds;
|
|
|
|
params.end = endDate;
|
|
|
|
params.step = resolution;
|
2015-06-25 03:42:18 -07:00
|
|
|
url = PATH_PREFIX + "/api/v1/query_range";
|
2013-07-23 17:18:49 -07:00
|
|
|
success = function(json, textStatus) { self.handleGraphResponse(json, textStatus); };
|
2013-04-26 07:50:59 -07:00
|
|
|
} else {
|
2015-11-11 11:04:37 -08:00
|
|
|
params.time = startTime / 1000;
|
2015-06-25 03:42:18 -07:00
|
|
|
url = PATH_PREFIX + "/api/v1/query";
|
|
|
|
success = function(json, textStatus) { self.handleConsoleResponse(json, textStatus); };
|
2013-04-26 07:50:59 -07:00
|
|
|
}
|
|
|
|
|
2013-04-17 07:49:21 -07:00
|
|
|
self.queryXhr = $.ajax({
|
2013-01-24 04:55:32 -08:00
|
|
|
method: self.queryForm.attr("method"),
|
2013-04-26 07:50:59 -07:00
|
|
|
url: url,
|
2013-07-23 17:18:49 -07:00
|
|
|
dataType: "json",
|
2015-06-25 03:42:18 -07:00
|
|
|
data: params,
|
|
|
|
success: function(json, textStatus) {
|
|
|
|
if (json.status !== "success") {
|
|
|
|
self.showError(json.error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
success(json.data, textStatus);
|
|
|
|
},
|
2013-04-26 07:50:59 -07:00
|
|
|
error: function(xhr, resp) {
|
2014-10-15 07:38:09 -07:00
|
|
|
if (resp != "abort") {
|
2015-06-25 03:42:18 -07:00
|
|
|
var err;
|
|
|
|
if (xhr.responseJSON !== undefined) {
|
|
|
|
err = xhr.responseJSON.error;
|
|
|
|
} else {
|
|
|
|
err = xhr.statusText;
|
|
|
|
}
|
|
|
|
self.showError("Error executing query: " + err);
|
2014-10-15 07:38:09 -07:00
|
|
|
}
|
2013-01-24 04:55:32 -08:00
|
|
|
},
|
|
|
|
complete: function() {
|
|
|
|
var duration = new Date().getTime() - startTime;
|
2015-01-09 05:23:09 -08:00
|
|
|
self.evalStats.html("Load time: " + duration + "ms <br /> Resolution: " + resolution + "s");
|
2013-01-24 04:55:32 -08:00
|
|
|
self.spinner.hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2014-10-30 08:18:05 -07:00
|
|
|
Prometheus.Graph.prototype.showError = function(msg) {
|
|
|
|
var self = this;
|
|
|
|
self.error.text(msg);
|
|
|
|
self.error.show();
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2014-10-30 08:18:05 -07:00
|
|
|
|
|
|
|
Prometheus.Graph.prototype.clearError = function(msg) {
|
|
|
|
var self = this;
|
|
|
|
self.error.text('');
|
|
|
|
self.error.hide();
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2014-10-30 08:18:05 -07:00
|
|
|
|
2013-04-17 07:49:21 -07:00
|
|
|
Prometheus.Graph.prototype.updateRefresh = function() {
|
|
|
|
var self = this;
|
|
|
|
|
|
|
|
if (self.timeoutID) {
|
2013-07-23 17:21:31 -07:00
|
|
|
window.clearTimeout(self.timeoutID);
|
2013-04-17 07:49:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
interval = self.parseDuration(self.refreshInterval.val());
|
2015-11-11 11:04:37 -08:00
|
|
|
if (!interval) { return; }
|
2013-04-17 07:49:21 -07:00
|
|
|
|
|
|
|
self.timeoutID = window.setTimeout(function() {
|
2013-07-23 17:21:31 -07:00
|
|
|
self.submitQuery();
|
|
|
|
self.updateRefresh();
|
|
|
|
}, interval * SECOND);
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2013-04-17 07:49:21 -07:00
|
|
|
|
2013-04-12 01:39:15 -07:00
|
|
|
Prometheus.Graph.prototype.renderLabels = function(labels) {
|
2013-01-24 04:55:32 -08:00
|
|
|
var labelStrings = [];
|
2015-11-11 11:04:37 -08:00
|
|
|
for (var label in labels) {
|
2014-03-14 04:51:33 -07:00
|
|
|
if (label != "__name__") {
|
2015-03-22 13:59:14 -07:00
|
|
|
labelStrings.push("<strong>" + label + "</strong>: " + escapeHTML(labels[label]));
|
2013-01-24 04:55:32 -08:00
|
|
|
}
|
|
|
|
}
|
2013-07-23 17:21:31 -07:00
|
|
|
return labels = "<div class=\"labels\">" + labelStrings.join("<br>") + "</div>";
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2013-04-12 01:39:15 -07:00
|
|
|
|
|
|
|
Prometheus.Graph.prototype.metricToTsName = function(labels) {
|
2015-11-11 11:04:37 -08:00
|
|
|
var tsName = (labels.__name__ || '') + "{";
|
2013-04-15 01:04:09 -07:00
|
|
|
var labelStrings = [];
|
2015-11-11 11:04:37 -08:00
|
|
|
for (var label in labels) {
|
2014-03-14 04:51:33 -07:00
|
|
|
if (label != "__name__") {
|
2015-11-11 11:04:37 -08:00
|
|
|
labelStrings.push(label + "=\"" + labels[label] + "\"");
|
2013-04-15 01:04:09 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
tsName += labelStrings.join(",") + "}";
|
|
|
|
return tsName;
|
2013-01-24 04:55:32 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.prototype.parseValue = function(value) {
|
2015-03-16 14:50:35 -07:00
|
|
|
var val = parseFloat(value);
|
|
|
|
if (isNaN(val)) {
|
|
|
|
// "+Inf", "-Inf", "+Inf" will be parsed into NaN by parseFloat(). The
|
|
|
|
// can't be graphed, so show them as gaps (null).
|
2015-11-11 11:04:37 -08:00
|
|
|
return null;
|
2013-01-24 04:55:32 -08:00
|
|
|
}
|
2015-03-16 14:50:35 -07:00
|
|
|
return val;
|
2013-01-24 04:55:32 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
Prometheus.Graph.prototype.transformData = function(json) {
|
2015-03-16 14:50:35 -07:00
|
|
|
var self = this;
|
2013-01-24 04:55:32 -08:00
|
|
|
var palette = new Rickshaw.Color.Palette();
|
2015-06-25 03:42:18 -07:00
|
|
|
if (json.resultType != "matrix") {
|
2014-10-30 08:18:05 -07:00
|
|
|
self.showError("Result is not of matrix type! Please enter a correct expression.");
|
2013-01-24 04:55:32 -08:00
|
|
|
return [];
|
|
|
|
}
|
2015-06-25 03:42:18 -07:00
|
|
|
var data = json.result.map(function(ts) {
|
|
|
|
var name;
|
|
|
|
var labels;
|
|
|
|
if (ts.metric === null) {
|
|
|
|
name = "scalar";
|
|
|
|
labels = {};
|
|
|
|
} else {
|
|
|
|
name = escapeHTML(self.metricToTsName(ts.metric));
|
|
|
|
labels = ts.metric;
|
|
|
|
}
|
2013-01-24 04:55:32 -08:00
|
|
|
return {
|
2015-06-25 03:42:18 -07:00
|
|
|
name: name,
|
|
|
|
labels: labels,
|
More efficient JSON query result format.
This depends on https://github.com/prometheus/client_golang/pull/51.
For vectors, the result format looks like this:
```json
{
"version": 1,
"type" : "vector",
"value" : [
{
"timestamp" : 1421765411.045,
"value" : "65.475000",
"metric" : {
"quantile" : "0.5",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "/static/",
"method" : "get",
"code" : "304"
}
},
{
"timestamp" : 1421765411.045,
"value" : "5826.339000",
"metric" : {
"quantile" : "0.9",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "prometheus",
"method" : "get",
"code" : "200"
}
},
/* ... */
]
}
```
For matrices, it looks like this:
```json
{
"version": 1,
"type" : "matrix",
"value" : [
{
"metric" : {
"quantile" : "0.99",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "/static/",
"method" : "get",
"code" : "200"
},
"values" : [
[
1421765547.659,
"29162.953000"
],
[
1421765548.659,
"29162.953000"
],
[
1421765549.659,
"29162.953000"
],
/* ... */
]
}
]
}
```
2015-01-20 06:13:49 -08:00
|
|
|
data: ts.values.map(function(value) {
|
2013-01-24 04:55:32 -08:00
|
|
|
return {
|
More efficient JSON query result format.
This depends on https://github.com/prometheus/client_golang/pull/51.
For vectors, the result format looks like this:
```json
{
"version": 1,
"type" : "vector",
"value" : [
{
"timestamp" : 1421765411.045,
"value" : "65.475000",
"metric" : {
"quantile" : "0.5",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "/static/",
"method" : "get",
"code" : "304"
}
},
{
"timestamp" : 1421765411.045,
"value" : "5826.339000",
"metric" : {
"quantile" : "0.9",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "prometheus",
"method" : "get",
"code" : "200"
}
},
/* ... */
]
}
```
For matrices, it looks like this:
```json
{
"version": 1,
"type" : "matrix",
"value" : [
{
"metric" : {
"quantile" : "0.99",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "/static/",
"method" : "get",
"code" : "200"
},
"values" : [
[
1421765547.659,
"29162.953000"
],
[
1421765548.659,
"29162.953000"
],
[
1421765549.659,
"29162.953000"
],
/* ... */
]
}
]
}
```
2015-01-20 06:13:49 -08:00
|
|
|
x: value[0],
|
|
|
|
y: self.parseValue(value[1])
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2013-01-24 04:55:32 -08:00
|
|
|
}),
|
|
|
|
color: palette.color()
|
|
|
|
};
|
|
|
|
});
|
|
|
|
Rickshaw.Series.zeroFill(data);
|
|
|
|
return data;
|
|
|
|
};
|
|
|
|
|
2015-02-06 07:20:46 -08:00
|
|
|
Prometheus.Graph.prototype.updateGraph = function() {
|
2013-01-24 04:55:32 -08:00
|
|
|
var self = this;
|
2015-11-11 11:04:37 -08:00
|
|
|
if (self.data.length === 0) { return; }
|
2015-02-06 07:20:46 -08:00
|
|
|
|
|
|
|
// Remove any traces of an existing graph.
|
|
|
|
self.legend.empty();
|
|
|
|
if (self.graphArea.children().length > 0) {
|
|
|
|
self.graph.remove();
|
|
|
|
self.yAxis.remove();
|
|
|
|
}
|
|
|
|
self.graph = $('<div class="graph"></div>');
|
|
|
|
self.yAxis = $('<div class="y_axis"></div>');
|
|
|
|
self.graphArea.append(self.graph);
|
|
|
|
self.graphArea.append(self.yAxis);
|
|
|
|
|
2015-06-25 03:42:18 -07:00
|
|
|
var endTime = self.getEndDate() / 1000; // Convert to UNIX timestamp.
|
2015-06-12 08:20:02 -07:00
|
|
|
var duration = self.parseDuration(self.rangeInput.val()) || 3600; // 1h default.
|
|
|
|
var startTime = endTime - duration;
|
|
|
|
self.data.forEach(function(s) {
|
|
|
|
// Padding series with invisible "null" values at the configured x-axis boundaries ensures
|
|
|
|
// that graphs are displayed with a fixed x-axis range instead of snapping to the available
|
|
|
|
// time range in the data.
|
|
|
|
if (s.data[0].x > startTime) {
|
|
|
|
s.data.unshift({x: startTime, y: null});
|
|
|
|
}
|
|
|
|
if (s.data[s.data.length - 1].x < endTime) {
|
|
|
|
s.data.push({x: endTime, y: null});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-02-06 07:20:46 -08:00
|
|
|
// Now create the new graph.
|
2013-01-24 04:55:32 -08:00
|
|
|
self.rickshawGraph = new Rickshaw.Graph({
|
|
|
|
element: self.graph[0],
|
2013-03-21 11:12:04 -07:00
|
|
|
height: Math.max(self.graph.innerHeight(), 100),
|
2013-07-01 05:47:43 -07:00
|
|
|
width: Math.max(self.graph.innerWidth() - 80, 200),
|
2015-01-14 08:56:03 -08:00
|
|
|
renderer: (self.isStacked() ? "stack" : "line"),
|
2013-01-24 04:55:32 -08:00
|
|
|
interpolation: "linear",
|
2013-05-21 07:54:33 -07:00
|
|
|
series: self.data,
|
|
|
|
min: "auto",
|
2013-01-24 04:55:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
var xAxis = new Rickshaw.Graph.Axis.Time({ graph: self.rickshawGraph });
|
|
|
|
|
|
|
|
var yAxis = new Rickshaw.Graph.Axis.Y({
|
|
|
|
graph: self.rickshawGraph,
|
2013-07-01 05:47:43 -07:00
|
|
|
orientation: "left",
|
2013-01-24 04:55:32 -08:00
|
|
|
tickFormat: Rickshaw.Fixtures.Number.formatKMBT,
|
2013-07-01 05:47:43 -07:00
|
|
|
element: self.yAxis[0],
|
2013-01-24 04:55:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
self.rickshawGraph.render();
|
|
|
|
|
|
|
|
var hoverDetail = new Rickshaw.Graph.HoverDetail({
|
2013-04-11 09:17:33 -07:00
|
|
|
graph: self.rickshawGraph,
|
|
|
|
formatter: function(series, x, y) {
|
2016-04-22 14:00:18 -07:00
|
|
|
var date = '<span class="date">' + new Date(x * 1000).toUTCString() + '</span>';
|
2013-04-11 09:17:33 -07:00
|
|
|
var swatch = '<span class="detail_swatch" style="background-color: ' + series.color + '"></span>';
|
2016-04-22 14:00:18 -07:00
|
|
|
var content = swatch + (series.labels.__name__ || 'value') + ": <strong>" + y + '</strong>';
|
|
|
|
return date + '<br>' + content + '<br>' + self.renderLabels(series.labels);
|
2015-02-06 06:02:13 -08:00
|
|
|
}
|
2013-01-24 04:55:32 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
var legend = new Rickshaw.Graph.Legend({
|
|
|
|
element: self.legend[0],
|
2013-04-12 01:39:15 -07:00
|
|
|
graph: self.rickshawGraph,
|
2013-01-24 04:55:32 -08:00
|
|
|
});
|
|
|
|
|
2013-04-11 09:21:00 -07:00
|
|
|
var highlighter = new Rickshaw.Graph.Behavior.Series.Highlight( {
|
|
|
|
graph: self.rickshawGraph,
|
|
|
|
legend: legend
|
|
|
|
});
|
|
|
|
|
2013-01-24 04:55:32 -08:00
|
|
|
var shelving = new Rickshaw.Graph.Behavior.Series.Toggle({
|
|
|
|
graph: self.rickshawGraph,
|
|
|
|
legend: legend
|
|
|
|
});
|
|
|
|
|
|
|
|
self.changeHandler();
|
|
|
|
};
|
2013-03-26 06:07:56 -07:00
|
|
|
|
2013-03-21 11:12:04 -07:00
|
|
|
Prometheus.Graph.prototype.resizeGraph = function() {
|
|
|
|
var self = this;
|
2015-11-11 11:04:37 -08:00
|
|
|
if (self.rickshawGraph !== null) {
|
2013-07-23 17:20:42 -07:00
|
|
|
self.rickshawGraph.configure({
|
|
|
|
width: Math.max(self.graph.innerWidth() - 80, 200),
|
|
|
|
});
|
|
|
|
self.rickshawGraph.render();
|
|
|
|
}
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2013-04-26 07:50:59 -07:00
|
|
|
|
|
|
|
Prometheus.Graph.prototype.handleGraphResponse = function(json, textStatus) {
|
2015-11-11 11:04:37 -08:00
|
|
|
var self = this;
|
2015-02-06 07:20:46 -08:00
|
|
|
// Rickshaw mutates passed series data for stacked graphs, so we need to save
|
|
|
|
// the original AJAX response in order to re-transform it into series data
|
|
|
|
// when the user disables the stacking.
|
|
|
|
self.graphJSON = json;
|
2013-04-26 07:50:59 -07:00
|
|
|
self.data = self.transformData(json);
|
2015-11-11 11:04:37 -08:00
|
|
|
if (self.data.length === 0) {
|
2014-10-30 08:18:05 -07:00
|
|
|
self.showError("No datapoints found.");
|
2013-04-26 07:50:59 -07:00
|
|
|
return;
|
|
|
|
}
|
2013-07-23 17:21:31 -07:00
|
|
|
self.graphTab.removeClass("reload");
|
2015-02-06 07:20:46 -08:00
|
|
|
self.updateGraph();
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2013-04-26 07:50:59 -07:00
|
|
|
|
2013-07-23 17:18:49 -07:00
|
|
|
Prometheus.Graph.prototype.handleConsoleResponse = function(data, textStatus) {
|
2013-04-26 07:50:59 -07:00
|
|
|
var self = this;
|
2013-07-23 17:18:49 -07:00
|
|
|
self.consoleTab.removeClass("reload");
|
2015-02-06 07:20:46 -08:00
|
|
|
self.graphJSON = null;
|
2013-07-23 17:18:49 -07:00
|
|
|
|
|
|
|
var tBody = self.consoleTab.find(".console_table tbody");
|
|
|
|
tBody.empty();
|
|
|
|
|
2015-06-25 03:42:18 -07:00
|
|
|
switch(data.resultType) {
|
2013-07-23 17:18:49 -07:00
|
|
|
case "vector":
|
2015-06-25 03:42:18 -07:00
|
|
|
if (data.result.length === 0) {
|
2015-01-19 05:27:07 -08:00
|
|
|
tBody.append("<tr><td colspan='2'><i>no data</i></td></tr>");
|
2015-01-14 08:56:03 -08:00
|
|
|
return;
|
|
|
|
}
|
2015-06-25 03:42:18 -07:00
|
|
|
for (var i = 0; i < data.result.length; i++) {
|
|
|
|
var s = data.result[i];
|
|
|
|
var tsName = self.metricToTsName(s.metric);
|
2015-07-09 15:43:43 -07:00
|
|
|
tBody.append("<tr><td>" + escapeHTML(tsName) + "</td><td>" + s.value[1] + "</td></tr>");
|
2013-07-23 17:18:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "matrix":
|
2015-06-25 03:42:18 -07:00
|
|
|
if (data.result.length === 0) {
|
2015-01-19 05:27:07 -08:00
|
|
|
tBody.append("<tr><td colspan='2'><i>no data</i></td></tr>");
|
2015-01-14 08:56:03 -08:00
|
|
|
return;
|
|
|
|
}
|
2015-06-25 03:42:18 -07:00
|
|
|
for (var i = 0; i < data.result.length; i++) {
|
|
|
|
var v = data.result[i];
|
More efficient JSON query result format.
This depends on https://github.com/prometheus/client_golang/pull/51.
For vectors, the result format looks like this:
```json
{
"version": 1,
"type" : "vector",
"value" : [
{
"timestamp" : 1421765411.045,
"value" : "65.475000",
"metric" : {
"quantile" : "0.5",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "/static/",
"method" : "get",
"code" : "304"
}
},
{
"timestamp" : 1421765411.045,
"value" : "5826.339000",
"metric" : {
"quantile" : "0.9",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "prometheus",
"method" : "get",
"code" : "200"
}
},
/* ... */
]
}
```
For matrices, it looks like this:
```json
{
"version": 1,
"type" : "matrix",
"value" : [
{
"metric" : {
"quantile" : "0.99",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "/static/",
"method" : "get",
"code" : "200"
},
"values" : [
[
1421765547.659,
"29162.953000"
],
[
1421765548.659,
"29162.953000"
],
[
1421765549.659,
"29162.953000"
],
/* ... */
]
}
]
}
```
2015-01-20 06:13:49 -08:00
|
|
|
var tsName = self.metricToTsName(v.metric);
|
2013-07-23 17:18:49 -07:00
|
|
|
var valueText = "";
|
More efficient JSON query result format.
This depends on https://github.com/prometheus/client_golang/pull/51.
For vectors, the result format looks like this:
```json
{
"version": 1,
"type" : "vector",
"value" : [
{
"timestamp" : 1421765411.045,
"value" : "65.475000",
"metric" : {
"quantile" : "0.5",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "/static/",
"method" : "get",
"code" : "304"
}
},
{
"timestamp" : 1421765411.045,
"value" : "5826.339000",
"metric" : {
"quantile" : "0.9",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "prometheus",
"method" : "get",
"code" : "200"
}
},
/* ... */
]
}
```
For matrices, it looks like this:
```json
{
"version": 1,
"type" : "matrix",
"value" : [
{
"metric" : {
"quantile" : "0.99",
"instance" : "http://localhost:9090/metrics",
"job" : "prometheus",
"__name__" : "http_request_duration_microseconds",
"handler" : "/static/",
"method" : "get",
"code" : "200"
},
"values" : [
[
1421765547.659,
"29162.953000"
],
[
1421765548.659,
"29162.953000"
],
[
1421765549.659,
"29162.953000"
],
/* ... */
]
}
]
}
```
2015-01-20 06:13:49 -08:00
|
|
|
for (var j = 0; j < v.values.length; j++) {
|
|
|
|
valueText += v.values[j][1] + " @" + v.values[j][0] + "<br/>";
|
2013-07-23 17:18:49 -07:00
|
|
|
}
|
2015-11-11 11:04:37 -08:00
|
|
|
tBody.append("<tr><td>" + escapeHTML(tsName) + "</td><td>" + valueText + "</td></tr>");
|
2013-07-23 17:18:49 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "scalar":
|
2015-07-06 01:24:50 -07:00
|
|
|
tBody.append("<tr><td>scalar</td><td>" + data.result[1] + "</td></tr>");
|
2013-07-23 17:18:49 -07:00
|
|
|
break;
|
2015-06-25 03:42:18 -07:00
|
|
|
case "string":
|
2015-10-01 04:16:49 -07:00
|
|
|
tBody.append("<tr><td>string</td><td>" + escapeHTML(data.result[1]) + "</td></tr>");
|
2013-08-02 00:04:13 -07:00
|
|
|
break;
|
2013-07-23 17:18:49 -07:00
|
|
|
default:
|
2014-10-30 08:18:05 -07:00
|
|
|
self.showError("Unsupported value type!");
|
2013-07-23 17:18:49 -07:00
|
|
|
break;
|
2013-07-13 10:30:51 -07:00
|
|
|
}
|
2015-11-11 11:04:37 -08:00
|
|
|
};
|
2013-01-24 04:55:32 -08:00
|
|
|
|
2016-07-31 07:30:23 -07:00
|
|
|
Prometheus.Graph.prototype.remove = function() {
|
|
|
|
var self = this;
|
2016-08-05 14:35:11 -07:00
|
|
|
$(self.graphHTML).remove();
|
2016-07-31 07:30:23 -07:00
|
|
|
graphs = graphs.filter(function(e) {return e !== self});
|
|
|
|
storeGraphOptionsInURL();
|
|
|
|
};
|
|
|
|
|
2015-01-14 08:56:03 -08:00
|
|
|
function parseGraphOptionsFromURL() {
|
2013-01-24 04:55:32 -08:00
|
|
|
var hashOptions = window.location.hash.slice(1);
|
|
|
|
if (!hashOptions) {
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
var optionsJSON = decodeURIComponent(window.location.hash.slice(1));
|
2013-04-26 07:50:59 -07:00
|
|
|
options = JSON.parse(optionsJSON);
|
|
|
|
return options;
|
2013-01-24 04:55:32 -08:00
|
|
|
}
|
|
|
|
|
2014-07-25 05:23:47 -07:00
|
|
|
// NOTE: This needs to be kept in sync with rules/helpers.go:GraphLinkForExpression!
|
2015-01-14 08:56:03 -08:00
|
|
|
function storeGraphOptionsInURL() {
|
2013-01-24 04:55:32 -08:00
|
|
|
var allGraphsOptions = [];
|
|
|
|
for (var i = 0; i < graphs.length; i++) {
|
|
|
|
allGraphsOptions.push(graphs[i].getOptions());
|
|
|
|
}
|
|
|
|
var optionsJSON = JSON.stringify(allGraphsOptions);
|
|
|
|
window.location.hash = encodeURIComponent(optionsJSON);
|
|
|
|
}
|
|
|
|
|
|
|
|
function addGraph(options) {
|
|
|
|
var graph = new Prometheus.Graph($("#graph_container"), options);
|
|
|
|
graphs.push(graph);
|
|
|
|
graph.onChange(function() {
|
2015-01-14 08:56:03 -08:00
|
|
|
storeGraphOptionsInURL();
|
2013-01-24 04:55:32 -08:00
|
|
|
});
|
2013-03-21 11:12:04 -07:00
|
|
|
$(window).resize(function() {
|
|
|
|
graph.resizeGraph();
|
|
|
|
});
|
2013-01-24 04:55:32 -08:00
|
|
|
}
|
|
|
|
|
2014-10-15 08:03:08 -07:00
|
|
|
function escapeHTML(string) {
|
|
|
|
var entityMap = {
|
|
|
|
"&": "&",
|
|
|
|
"<": "<",
|
|
|
|
">": ">",
|
|
|
|
'"': '"',
|
|
|
|
"'": ''',
|
|
|
|
"/": '/'
|
|
|
|
};
|
|
|
|
|
|
|
|
return String(string).replace(/[&<>"'\/]/g, function (s) {
|
|
|
|
return entityMap[s];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2013-01-24 04:55:32 -08:00
|
|
|
function init() {
|
2013-04-12 04:43:53 -07:00
|
|
|
$.ajaxSetup({
|
2013-01-24 04:55:32 -08:00
|
|
|
cache: false
|
|
|
|
});
|
|
|
|
|
2013-05-21 07:54:33 -07:00
|
|
|
$.ajax({
|
2015-06-01 03:23:13 -07:00
|
|
|
url: PATH_PREFIX + "/static/js/graph_template.handlebar",
|
2013-04-02 10:14:02 -07:00
|
|
|
success: function(data) {
|
|
|
|
graphTemplate = Handlebars.compile(data);
|
2015-01-14 08:56:03 -08:00
|
|
|
var options = parseGraphOptionsFromURL();
|
2015-11-11 11:04:37 -08:00
|
|
|
if (options.length === 0) {
|
2013-04-02 10:14:02 -07:00
|
|
|
options.push({});
|
|
|
|
}
|
|
|
|
for (var i = 0; i < options.length; i++) {
|
|
|
|
addGraph(options[i]);
|
|
|
|
}
|
|
|
|
$("#add_graph").click(function() { addGraph({}); });
|
2013-05-21 07:54:33 -07:00
|
|
|
}
|
2015-11-11 11:04:37 -08:00
|
|
|
});
|
2013-01-24 04:55:32 -08:00
|
|
|
}
|
2013-06-13 07:10:05 -07:00
|
|
|
|
2013-01-24 04:55:32 -08:00
|
|
|
$(init);
|