grafana/public/app/components/kbn.js

514 lines
16 KiB
JavaScript
Raw Normal View History

define([
'jquery',
'lodash',
],
function($, _) {
2013-07-20 17:59:09 -05:00
'use strict';
2013-01-25 22:10:28 -06:00
2013-09-13 15:52:13 -05:00
var kbn = {};
kbn.valueFormats = {};
2013-01-25 22:10:28 -06:00
2015-10-14 14:41:20 -05:00
///// HELPER FUNCTIONS /////
kbn.round_interval = function(interval) {
switch (true) {
2013-07-20 17:59:09 -05:00
// 0.5s
2014-06-30 00:56:35 -05:00
case (interval <= 500):
2013-07-20 17:59:09 -05:00
return 100; // 0.1s
// 5s
2014-06-30 00:56:35 -05:00
case (interval <= 5000):
2013-07-20 17:59:09 -05:00
return 1000; // 1s
// 7.5s
2014-06-30 00:56:35 -05:00
case (interval <= 7500):
2013-07-20 17:59:09 -05:00
return 5000; // 5s
// 15s
2014-06-30 00:56:35 -05:00
case (interval <= 15000):
2013-07-20 17:59:09 -05:00
return 10000; // 10s
// 45s
2014-06-30 00:56:35 -05:00
case (interval <= 45000):
2013-07-20 17:59:09 -05:00
return 30000; // 30s
// 3m
2014-06-30 00:56:35 -05:00
case (interval <= 180000):
2013-07-20 17:59:09 -05:00
return 60000; // 1m
// 9m
2014-06-30 00:56:35 -05:00
case (interval <= 450000):
2013-07-20 17:59:09 -05:00
return 300000; // 5m
// 20m
2014-06-30 00:56:35 -05:00
case (interval <= 1200000):
2013-07-20 17:59:09 -05:00
return 600000; // 10m
// 45m
2014-06-30 00:56:35 -05:00
case (interval <= 2700000):
2013-07-20 17:59:09 -05:00
return 1800000; // 30m
// 2h
2014-06-30 00:56:35 -05:00
case (interval <= 7200000):
2013-07-20 17:59:09 -05:00
return 3600000; // 1h
// 6h
2014-06-30 00:56:35 -05:00
case (interval <= 21600000):
2013-07-20 17:59:09 -05:00
return 10800000; // 3h
// 24h
2014-06-30 00:56:35 -05:00
case (interval <= 86400000):
2013-07-20 17:59:09 -05:00
return 43200000; // 12h
// 48h
2014-06-30 00:56:35 -05:00
case (interval <= 172800000):
2013-07-20 17:59:09 -05:00
return 86400000; // 24h
// 1w
2014-06-30 00:56:35 -05:00
case (interval <= 604800000):
2013-07-20 17:59:09 -05:00
return 86400000; // 24h
// 3w
2014-06-30 00:56:35 -05:00
case (interval <= 1814400000):
2013-07-20 17:59:09 -05:00
return 604800000; // 1w
// 2y
2014-06-30 00:56:35 -05:00
case (interval < 3628800000):
2013-07-20 17:59:09 -05:00
return 2592000000; // 30d
default:
2013-07-20 17:59:09 -05:00
return 31536000000; // 1y
}
2013-07-20 17:59:09 -05:00
};
2013-01-25 22:10:28 -06:00
2014-06-06 23:38:33 -05:00
kbn.secondsToHms = function(seconds) {
2013-07-20 17:59:09 -05:00
var numyears = Math.floor(seconds / 31536000);
if(numyears){
return numyears + 'y';
}
var numdays = Math.floor((seconds % 31536000) / 86400);
if(numdays){
return numdays + 'd';
}
var numhours = Math.floor(((seconds % 31536000) % 86400) / 3600);
if(numhours){
return numhours + 'h';
}
var numminutes = Math.floor((((seconds % 31536000) % 86400) % 3600) / 60);
if(numminutes){
return numminutes + 'm';
}
var numseconds = Math.floor((((seconds % 31536000) % 86400) % 3600) % 60);
2013-07-20 17:59:09 -05:00
if(numseconds){
return numseconds + 's';
}
var nummilliseconds = Math.floor(seconds * 1000.0);
if(nummilliseconds){
return nummilliseconds + 'ms';
}
return 'less then a millisecond'; //'just now' //or other string you like;
2013-07-20 17:59:09 -05:00
};
2013-01-25 22:10:28 -06:00
kbn.to_percent = function(number,outof) {
2013-08-20 09:24:04 -05:00
return Math.floor((number/outof)*10000)/100 + "%";
2013-07-20 17:59:09 -05:00
};
2013-01-25 22:10:28 -06:00
kbn.addslashes = function(str) {
str = str.replace(/\\/g, '\\\\');
str = str.replace(/\'/g, '\\\'');
str = str.replace(/\"/g, '\\"');
str = str.replace(/\0/g, '\\0');
return str;
2013-07-20 17:59:09 -05:00
};
2013-01-25 22:10:28 -06:00
kbn.interval_regex = /(\d+(?:\.\d+)?)([Mwdhmsy])/;
// histogram & trends
kbn.intervals_in_seconds = {
y: 31536000,
M: 2592000,
w: 604800,
d: 86400,
h: 3600,
m: 60,
s: 1
};
kbn.calculateInterval = function(range, resolution, userInterval) {
var lowLimitMs = 1; // 1 millisecond default low limit
var intervalMs, lowLimitInterval;
if (userInterval) {
if (userInterval[0] === '>') {
lowLimitInterval = userInterval.slice(1);
lowLimitMs = kbn.interval_to_ms(lowLimitInterval);
}
else {
return userInterval;
}
}
intervalMs = kbn.round_interval((range.to.valueOf() - range.from.valueOf()) / resolution);
if (lowLimitMs > intervalMs) {
intervalMs = lowLimitMs;
}
return kbn.secondsToHms(intervalMs / 1000);
};
kbn.describe_interval = function (string) {
var matches = string.match(kbn.interval_regex);
if (!matches || !_.has(kbn.intervals_in_seconds, matches[2])) {
throw new Error('Invalid interval string, expexcting a number followed by one of "Mwdhmsy"');
} else {
return {
sec: kbn.intervals_in_seconds[matches[2]],
type: matches[2],
count: parseInt(matches[1], 10)
};
}
2013-07-20 17:59:09 -05:00
};
2013-01-25 22:10:28 -06:00
kbn.interval_to_ms = function(string) {
var info = kbn.describe_interval(string);
return info.sec * 1000 * info.count;
};
kbn.interval_to_seconds = function (string) {
var info = kbn.describe_interval(string);
return info.sec * info.count;
};
kbn.query_color_dot = function (color, diameter) {
return '<div class="icon-circle" style="' + [
2014-06-06 23:38:33 -05:00
'display:inline-block',
'color:' + color,
'font-size:' + diameter + 'px',
].join(';') + '"></div>';
};
2015-10-14 14:41:20 -05:00
kbn.slugifyForUrl = function(str) {
return str
.toLowerCase()
.replace(/[^\w ]+/g,'')
.replace(/ +/g,'-');
};
kbn.exportSeriesListToCsv = function(seriesList) {
var text = 'Series;Time;Value\n';
_.each(seriesList, function(series) {
_.each(series.datapoints, function(dp) {
text += series.alias + ';' + new Date(dp[1]).toISOString() + ';' + dp[0] + '\n';
});
});
var blob = new Blob([text], { type: "text/csv;charset=utf-8" });
window.saveAs(blob, 'grafana_data_export.csv');
};
kbn.stringToJsRegex = function(str) {
if (str[0] !== '/') {
return new RegExp(str);
}
var match = str.match(new RegExp('^/(.*?)/(g?i?m?y?)$'));
return new RegExp(match[1], match[2]);
};
kbn.toFixed = function(value, decimals) {
if (value === null) {
return "";
}
var factor = decimals ? Math.pow(10, Math.max(0, decimals)) : 1;
var formatted = String(Math.round(value * factor) / factor);
// if exponent return directly
if (formatted.indexOf('e') !== -1 || value === 0) {
return formatted;
}
// If tickDecimals was specified, ensure that we have exactly that
// much precision; otherwise default to the value's own precision.
if (decimals != null) {
var decimalPos = formatted.indexOf(".");
var precision = decimalPos === -1 ? 0 : formatted.length - decimalPos - 1;
if (precision < decimals) {
return (precision ? formatted : formatted + ".") + (String(factor)).substr(1, decimals - precision);
}
}
return formatted;
};
kbn.toFixedScaled = function(value, decimals, scaledDecimals, additionalDecimals, ext) {
if (scaledDecimals === null) {
return kbn.toFixed(value, decimals) + ext;
} else {
return kbn.toFixed(value, scaledDecimals + additionalDecimals) + ext;
}
};
kbn.roundValue = function (num, decimals) {
if (num === null) { return null; }
var n = Math.pow(10, decimals);
return Math.round((n * num).toFixed(decimals)) / n;
};
///// FORMAT FUNCTION CONSTRUCTORS /////
2015-10-14 15:07:34 -05:00
kbn.formatBuilders = {};
// Formatter which always appends a fixed unit string to the value. No
// scaling of the value is performed.
kbn.formatBuilders.fixedUnit = function(unit, separator) {
return function(size, decimals) {
if (size === null) { return ""; }
return kbn.toFixed(size, decimals) + (separator || ' ') + unit;
};
};
// Formatter which scales the unit string geometrically according to the given
// numeric factor. Repeatedly scales the value down by the factor until it is
// less than the factor in magnitude, or the end of the array is reached.
kbn.formatBuilders.scaledUnits = function(factor, extArray) {
return function(size, decimals, scaledDecimals) {
if (size === null) {
return "";
}
var steps = 0;
var limit = extArray.length;
while (Math.abs(size) >= factor) {
steps++;
size /= factor;
if (steps >= limit) { return "NA"; }
}
if (steps > 0 && scaledDecimals !== null) {
decimals = scaledDecimals + (3 * steps);
}
return kbn.toFixed(size, decimals) + extArray[steps];
};
};
// Extension of the scaledUnits builder which uses SI decimal prefixes. If an
// offset is given, it adjusts the starting units at the given prefix; a value
// of 0 starts at no scale; -3 drops to nano, +2 starts at mega, etc.
kbn.formatBuilders.decimalSIPrefix = function(unit, offset) {
var prefixes = ['n', 'µ', 'm', '', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'];
prefixes = prefixes.slice(3 + (offset || 0));
var units = prefixes.map(function(p) { return ' ' + p + unit; });
return kbn.formatBuilders.scaledUnits(1000, units);
};
// Extension of the scaledUnits builder which uses SI binary prefixes. If
// offset is given, it starts the units at the given prefix; otherwise, the
// offset defaults to zero and the initial unit is not prefixed.
kbn.formatBuilders.binarySIPrefix = function(unit, offset) {
var prefixes = ['', 'Ki', 'Mi', 'Gi', 'Ti', 'Pi', 'Ei', 'Zi', 'Yi'].slice(offset);
var units = prefixes.map(function(p) { return ' ' + p + unit; });
return kbn.formatBuilders.scaledUnits(1024, units);
};
2015-10-14 14:51:59 -05:00
///// VALUE FORMATS /////
// Dimensionless Units
2015-10-14 15:07:34 -05:00
kbn.valueFormats.none = kbn.toFixed;
kbn.valueFormats.short = kbn.formatBuilders.scaledUnits(1000, ['', ' K', ' Mil', ' Bil', ' Tri', ' Quadr', ' Quint', ' Sext', ' Sept']);
2015-10-14 15:07:34 -05:00
kbn.valueFormats.ppm = kbn.formatBuilders.fixedUnit('ppm');
kbn.valueFormats.percent = kbn.formatBuilders.fixedUnit('%', '');
2015-10-14 14:51:59 -05:00
// Data
kbn.valueFormats.bits = kbn.formatBuilders.binarySIPrefix('b');
kbn.valueFormats.bytes = kbn.formatBuilders.binarySIPrefix('B');
kbn.valueFormats.kbytes = kbn.formatBuilders.binarySIPrefix('B', 1);
kbn.valueFormats.mbytes = kbn.formatBuilders.binarySIPrefix('B', 2);
kbn.valueFormats.gbytes = kbn.formatBuilders.binarySIPrefix('B', 3);
2015-10-14 14:51:59 -05:00
// Data Rate
kbn.valueFormats.pps = kbn.formatBuilders.decimalSIPrefix('pps');
kbn.valueFormats.bps = kbn.formatBuilders.decimalSIPrefix('bps');
kbn.valueFormats.Bps = kbn.formatBuilders.decimalSIPrefix('Bps');
2015-10-14 14:51:59 -05:00
// Energy
kbn.valueFormats.watt = kbn.formatBuilders.decimalSIPrefix('W');
kbn.valueFormats.kwatt = kbn.formatBuilders.decimalSIPrefix('W', 1);
kbn.valueFormats.watth = kbn.formatBuilders.decimalSIPrefix('Wh');
kbn.valueFormats.kwatth = kbn.formatBuilders.decimalSIPrefix('Wh', 1);
kbn.valueFormats.joule = kbn.formatBuilders.decimalSIPrefix('J');
kbn.valueFormats.ev = kbn.formatBuilders.decimalSIPrefix('eV');
kbn.valueFormats.amp = kbn.formatBuilders.decimalSIPrefix('A');
kbn.valueFormats.volt = kbn.formatBuilders.decimalSIPrefix('V');
2015-10-14 14:51:59 -05:00
// Temperature
2015-10-14 15:07:34 -05:00
kbn.valueFormats.celsius = kbn.formatBuilders.fixedUnit('°C');
kbn.valueFormats.farenheit = kbn.formatBuilders.fixedUnit('°F');
kbn.valueFormats.humidity = kbn.formatBuilders.fixedUnit('%H');
2015-10-14 14:51:59 -05:00
// Pressure
2015-10-14 15:07:34 -05:00
kbn.valueFormats.pressurembar = kbn.formatBuilders.fixedUnit('mbar');
kbn.valueFormats.pressurehpa = kbn.formatBuilders.fixedUnit('hPa');
2015-10-14 14:51:59 -05:00
// Velocity
2015-10-14 15:07:34 -05:00
kbn.valueFormats.velocityms = kbn.formatBuilders.fixedUnit('m/s');
kbn.valueFormats.velocitykmh = kbn.formatBuilders.fixedUnit('km/h');
kbn.valueFormats.velocitymph = kbn.formatBuilders.fixedUnit('mph');
kbn.valueFormats.velocityknot = kbn.formatBuilders.fixedUnit('kn');
2015-10-14 14:51:59 -05:00
// Time
kbn.valueFormats.hertz = kbn.formatBuilders.decimalSIPrefix('Hz');
2015-10-14 14:51:59 -05:00
kbn.valueFormats.ms = function(size, decimals, scaledDecimals) {
if (size === null) { return ""; }
2014-09-19 06:24:15 -05:00
if (Math.abs(size) < 1000) {
return kbn.toFixed(size, decimals) + " ms";
}
// Less than 1 min
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 60000) {
return kbn.toFixedScaled(size / 1000, decimals, scaledDecimals, 3, " s");
}
// Less than 1 hour, devide in minutes
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 3600000) {
return kbn.toFixedScaled(size / 60000, decimals, scaledDecimals, 5, " min");
}
// Less than one day, devide in hours
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 86400000) {
return kbn.toFixedScaled(size / 3600000, decimals, scaledDecimals, 7, " hour");
}
// Less than one year, devide in days
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 31536000000) {
return kbn.toFixedScaled(size / 86400000, decimals, scaledDecimals, 8, " day");
}
return kbn.toFixedScaled(size / 31536000000, decimals, scaledDecimals, 10, " year");
};
kbn.valueFormats.s = function(size, decimals, scaledDecimals) {
if (size === null) { return ""; }
2014-09-19 06:24:15 -05:00
if (Math.abs(size) < 600) {
return kbn.toFixed(size, decimals) + " s";
2014-05-20 03:55:19 -05:00
}
// Less than 1 hour, devide in minutes
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 3600) {
return kbn.toFixedScaled(size / 60, decimals, scaledDecimals, 1, " min");
2014-05-20 03:55:19 -05:00
}
// Less than one day, devide in hours
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 86400) {
return kbn.toFixedScaled(size / 3600, decimals, scaledDecimals, 4, " hour");
2014-05-20 03:55:19 -05:00
}
// Less than one week, devide in days
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 604800) {
return kbn.toFixedScaled(size / 86400, decimals, scaledDecimals, 5, " day");
2014-05-20 03:55:19 -05:00
}
// Less than one year, devide in week
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 31536000) {
return kbn.toFixedScaled(size / 604800, decimals, scaledDecimals, 6, " week");
}
2014-05-20 03:55:19 -05:00
return kbn.toFixedScaled(size / 3.15569e7, decimals, scaledDecimals, 7, " year");
2014-05-20 03:55:19 -05:00
};
kbn.valueFormats['µs'] = function(size, decimals, scaledDecimals) {
if (size === null) { return ""; }
2014-09-19 06:24:15 -05:00
if (Math.abs(size) < 1000) {
return kbn.toFixed(size, decimals) + " µs";
}
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 1000000) {
return kbn.toFixedScaled(size / 1000, decimals, scaledDecimals, 3, " ms");
}
else {
return kbn.toFixedScaled(size / 1000000, decimals, scaledDecimals, 6, " s");
2014-02-25 08:34:56 -06:00
}
};
kbn.valueFormats.ns = function(size, decimals, scaledDecimals) {
if (size === null) { return ""; }
if (Math.abs(size) < 1000) {
return kbn.toFixed(size, decimals) + " ns";
2014-05-03 08:44:48 -05:00
}
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 1000000) {
return kbn.toFixedScaled(size / 1000, decimals, scaledDecimals, 3, " µs");
2014-05-03 08:44:48 -05:00
}
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 1000000000) {
return kbn.toFixedScaled(size / 1000000, decimals, scaledDecimals, 6, " ms");
2014-05-03 08:44:48 -05:00
}
2014-06-27 08:37:11 -05:00
else if (Math.abs(size) < 60000000000){
return kbn.toFixedScaled(size / 1000000000, decimals, scaledDecimals, 9, " s");
2014-05-03 08:44:48 -05:00
}
else {
return kbn.toFixedScaled(size / 60000000000, decimals, scaledDecimals, 12, " min");
2014-05-03 08:44:48 -05:00
}
};
2015-10-14 14:41:20 -05:00
///// FORMAT MENU /////
kbn.getUnitFormats = function() {
return [
{
text: 'none',
submenu: [
2015-10-14 15:34:48 -05:00
{text: 'none' , value: 'none' },
{text: 'short', value: 'short' },
{text: 'scaled percentage (0-100)', value: 'percent' },
{text: 'ppm', value: 'ppm' },
{text: 'decibel', value: 'dB' },
]
},
{
text: 'duration',
submenu: [
2015-10-14 15:34:48 -05:00
{text: 'Hertz (1/s)', value: 'hertz'},
{text: 'nanoseconds (ns)' , value: 'ns' },
{text: 'microseconds (µs)', value: 'µs' },
{text: 'milliseconds (ms)', value: 'ms' },
{text: 'seconds (s)', value: 's' },
]
},
{
text: 'data',
submenu: [
2015-10-14 15:34:48 -05:00
{text: 'bits', value: 'bits' },
{text: 'bytes', value: 'bytes' },
{text: 'kilobytes', value: 'kbytes'},
{text: 'megabytes', value: 'mbytes'},
2015-04-28 13:53:29 -05:00
{text: 'gigabytes', value: 'gbytes'},
]
},
{
text: 'data rate',
submenu: [
2015-05-22 10:08:10 -05:00
{text: 'packets/sec', value: 'pps'},
2015-10-14 15:34:48 -05:00
{text: 'bits/sec', value: 'bps'},
{text: 'bytes/sec', value: 'Bps'},
]
},
{
text: 'energy',
submenu: [
2015-10-14 15:34:48 -05:00
{text: 'watt (W)', value: 'watt' },
{text: 'kilowatt (kW)', value: 'kwatt' },
{text: 'watt-hour (Wh)', value: 'watth' },
{text: 'kilowatt-hour (kWh)', value: 'kwatth'},
{text: 'joule (J)', value: 'joule' },
{text: 'electron volt (eV)', value: 'ev' },
{text: 'Ampere (A)', value: 'amp' },
{text: 'Volt (V)', value: 'volt' },
]
},
{
text: 'weather',
submenu: [
2015-10-14 15:34:48 -05:00
{text: 'Celcius (°C)', value: 'celsius' },
{text: 'Farenheit (°F)', value: 'farenheit' },
{text: 'Humidity (%H)', value: 'humidity' },
{text: 'Pressure (mbar)', value: 'pressurembar'},
{text: 'Pressure (hPa)', value: 'pressurehpa' },
]
},
{
text: 'velocity',
submenu: [
2015-10-14 15:34:48 -05:00
{text: 'm/s', value: 'velocityms' },
{text: 'km/h', value: 'velocitykmh' },
{text: 'mph', value: 'velocitymph' },
{text: 'knot (kn)', value: 'velocityknot'},
]
},
];
};
2013-09-13 15:52:13 -05:00
return kbn;
});