src/*: Fix codespell issues

See,
$ codespell -S './src/img/*.png,./.git*' -L que

Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
This commit is contained in:
Mario Trangoni
2019-04-10 19:35:34 +02:00
parent 86f2b879a2
commit 2f9be7a184
4 changed files with 8 additions and 8 deletions

View File

@@ -66,7 +66,7 @@ angular
}); });
$input.blur(function() { $input.blur(function() {
// clicking the function dropdown menu wont // clicking the function dropdown menu won't
// work if you remove class at once // work if you remove class at once
setTimeout(function() { setTimeout(function() {
$input.val(''); $input.val('');

View File

@@ -19,7 +19,7 @@ let AVERAGE = ts.AVERAGE;
let MIN = ts.MIN; let MIN = ts.MIN;
let MAX = ts.MAX; let MAX = ts.MAX;
let MEDIAN = ts.MEDIAN; let MEDIAN = ts.MEDIAN;
let PERCENTIL = ts.PERCENTIL; let PERCENTILE = ts.PERCENTILE;
function limit(order, n, orderByFunc, timeseries) { function limit(order, n, orderByFunc, timeseries) {
let orderByCallback = aggregationFunctions[orderByFunc]; let orderByCallback = aggregationFunctions[orderByFunc];
@@ -121,9 +121,9 @@ function aggregateWrapper(groupByCallback, interval, datapoints) {
return groupBy(sortedPoints, interval, groupByCallback); return groupBy(sortedPoints, interval, groupByCallback);
} }
function percentil(interval, n, datapoints) { function percentile(interval, n, datapoints) {
var flattenedPoints = ts.flattenDatapoints(datapoints); var flattenedPoints = ts.flattenDatapoints(datapoints);
var groupByCallback = _.partial(PERCENTIL, n); var groupByCallback = _.partial(PERCENTILE, n);
return groupBy(flattenedPoints, interval, groupByCallback); return groupBy(flattenedPoints, interval, groupByCallback);
} }
@@ -155,7 +155,7 @@ let metricFunctions = {
transformNull: transformNull, transformNull: transformNull,
aggregateBy: aggregateByWrapper, aggregateBy: aggregateByWrapper,
// Predefined aggs // Predefined aggs
percentil: percentil, percentile: percentile,
average: _.partial(aggregateWrapper, AVERAGE), average: _.partial(aggregateWrapper, AVERAGE),
min: _.partial(aggregateWrapper, MIN), min: _.partial(aggregateWrapper, MIN),
max: _.partial(aggregateWrapper, MAX), max: _.partial(aggregateWrapper, MAX),

View File

@@ -99,7 +99,7 @@
In order to use this feature it should be <a href="/datasources/new" target="_blank">created</a> and In order to use this feature it should be <a href="/datasources/new" target="_blank">created</a> and
configured first. Zabbix plugin uses this data source for querying history data directly from the database. configured first. Zabbix plugin uses this data source for querying history data directly from the database.
This way usually faster than pulling data from Zabbix API, especially on the wide time ranges, and reduces This way usually faster than pulling data from Zabbix API, especially on the wide time ranges, and reduces
amount of data transfered. amount of data transferred.
</info-popover> </info-popover>
</span> </span>
<div class="gf-form-select-wrapper max-width-16"> <div class="gf-form-select-wrapper max-width-16">

View File

@@ -333,7 +333,7 @@ function expMovingAverage(datapoints, n) {
return ema; return ema;
} }
function PERCENTIL(n, values) { function PERCENTILE(n, values) {
var sorted = _.sortBy(values); var sorted = _.sortBy(values);
return sorted[Math.floor(sorted.length * n / 100)]; return sorted[Math.floor(sorted.length * n / 100)];
} }
@@ -509,7 +509,7 @@ const exportedFunctions = {
MIN, MIN,
MAX, MAX,
MEDIAN, MEDIAN,
PERCENTIL, PERCENTILE,
sortByTime, sortByTime,
flattenDatapoints, flattenDatapoints,
}; };