mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 02:16:39 +00:00
Get timeseries data with timestamps
This commit is contained in:
parent
da07b294bd
commit
fb3a0b8659
6 changed files with 57 additions and 10 deletions
|
|
@ -512,6 +512,14 @@ function attachStackedChartCallback(chart, schema_name, chart_id, zoom_reset_id,
|
|||
pending_table_request = null;
|
||||
}
|
||||
|
||||
chart.getDataUrl = function() {
|
||||
var data_params = jQuery.extend({}, params);
|
||||
delete data_params.zoom;
|
||||
delete data_params.ts_compare;
|
||||
data_params.extended = 1; /* with extended timestamps */
|
||||
return url + "?" + $.param(data_params, true);
|
||||
}
|
||||
|
||||
var old_start, old_end, old_interval;
|
||||
|
||||
/* Returns false if zoom update is rejected. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue