mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Graphite 1.0 functions (#8987)
* graphite-ds: add graphite version to config editor * graphite-ds: modify add-graphite-function to show only version-related functions * graphite-ds: refactor, move func filtering to gfunc.js * graphite-ds: add new functions for graphite 1.0.x * graphite-ds: fix unit tests (add jsonData)
This commit is contained in:
committed by
Torkel Ödegaard
parent
35522c475f
commit
4fe79edd40
@@ -20,9 +20,10 @@ function (angular, _, $, gfunc) {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
link: function($scope, elem) {
|
link: function($scope, elem) {
|
||||||
var categories = gfunc.getCategories();
|
|
||||||
var allFunctions = getAllFunctionNames(categories);
|
|
||||||
var ctrl = $scope.ctrl;
|
var ctrl = $scope.ctrl;
|
||||||
|
var graphiteVersion = ctrl.datasource.graphiteVersion;
|
||||||
|
var categories = gfunc.getCategories(graphiteVersion);
|
||||||
|
var allFunctions = getAllFunctionNames(categories);
|
||||||
|
|
||||||
$scope.functionMenu = createFunctionDropDownMenu(categories);
|
$scope.functionMenu = createFunctionDropDownMenu(categories);
|
||||||
|
|
||||||
@@ -94,14 +95,16 @@ function (angular, _, $, gfunc) {
|
|||||||
|
|
||||||
function createFunctionDropDownMenu(categories) {
|
function createFunctionDropDownMenu(categories) {
|
||||||
return _.map(categories, function(list, category) {
|
return _.map(categories, function(list, category) {
|
||||||
|
var submenu = _.map(list, function(value) {
|
||||||
|
return {
|
||||||
|
text: value.name,
|
||||||
|
click: "ctrl.addFunction('" + value.name + "')",
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
text: category,
|
text: category,
|
||||||
submenu: _.map(list, function(value) {
|
submenu: submenu
|
||||||
return {
|
|
||||||
text: value.name,
|
|
||||||
click: "ctrl.addFunction('" + value.name + "')",
|
|
||||||
};
|
|
||||||
})
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
20
public/app/plugins/datasource/graphite/config_ctrl.ts
Normal file
20
public/app/plugins/datasource/graphite/config_ctrl.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
///<reference path="../../../headers/common.d.ts" />
|
||||||
|
|
||||||
|
import angular from 'angular';
|
||||||
|
import _ from 'lodash';
|
||||||
|
|
||||||
|
export class GraphiteConfigCtrl {
|
||||||
|
static templateUrl = 'public/app/plugins/datasource/graphite/partials/config.html';
|
||||||
|
current: any;
|
||||||
|
|
||||||
|
/** @ngInject */
|
||||||
|
constructor($scope) {
|
||||||
|
this.current.jsonData.graphiteVersion = this.current.jsonData.graphiteVersion || '0.9';
|
||||||
|
}
|
||||||
|
|
||||||
|
graphiteVersions = [
|
||||||
|
{name: '0.9.x', value: '0.9'},
|
||||||
|
{name: '1.0.x', value: '1.0'},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
@@ -11,6 +11,7 @@ export function GraphiteDatasource(instanceSettings, $q, backendSrv, templateSrv
|
|||||||
this.basicAuth = instanceSettings.basicAuth;
|
this.basicAuth = instanceSettings.basicAuth;
|
||||||
this.url = instanceSettings.url;
|
this.url = instanceSettings.url;
|
||||||
this.name = instanceSettings.name;
|
this.name = instanceSettings.name;
|
||||||
|
this.graphiteVersion = instanceSettings.jsonData.graphiteVersion || '0.9';
|
||||||
this.cacheTimeout = instanceSettings.cacheTimeout;
|
this.cacheTimeout = instanceSettings.cacheTimeout;
|
||||||
this.withCredentials = instanceSettings.withCredentials;
|
this.withCredentials = instanceSettings.withCredentials;
|
||||||
this.render_method = instanceSettings.render_method || 'POST';
|
this.render_method = instanceSettings.render_method || 'POST';
|
||||||
|
|||||||
@@ -115,27 +115,6 @@ function (_, $) {
|
|||||||
category: categories.Combine,
|
category: categories.Combine,
|
||||||
});
|
});
|
||||||
|
|
||||||
addFuncDef({
|
|
||||||
name: 'mapSeries',
|
|
||||||
shortName: 'map',
|
|
||||||
params: [{ name: "node", type: 'int' }],
|
|
||||||
defaultParams: [3],
|
|
||||||
category: categories.Combine,
|
|
||||||
});
|
|
||||||
|
|
||||||
addFuncDef({
|
|
||||||
name: 'reduceSeries',
|
|
||||||
shortName: 'reduce',
|
|
||||||
params: [
|
|
||||||
{ name: "function", type: 'string', options: ['asPercent', 'diffSeries', 'divideSeries'] },
|
|
||||||
{ name: "reduceNode", type: 'int', options: [0,1,2,3,4,5,6,7,8,9,10,11,12,13] },
|
|
||||||
{ name: "reduceMatchers", type: 'string' },
|
|
||||||
{ name: "reduceMatchers", type: 'string' },
|
|
||||||
],
|
|
||||||
defaultParams: ['asPercent', 2, 'used_bytes', 'total_bytes'],
|
|
||||||
category: categories.Combine,
|
|
||||||
});
|
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'sumSeries',
|
name: 'sumSeries',
|
||||||
shortName: 'sum',
|
shortName: 'sum',
|
||||||
@@ -152,11 +131,6 @@ function (_, $) {
|
|||||||
defaultParams: [''],
|
defaultParams: [''],
|
||||||
});
|
});
|
||||||
|
|
||||||
addFuncDef({
|
|
||||||
name: 'isNonNull',
|
|
||||||
category: categories.Combine,
|
|
||||||
});
|
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'rangeOfSeries',
|
name: 'rangeOfSeries',
|
||||||
category: categories.Combine
|
category: categories.Combine
|
||||||
@@ -262,23 +236,6 @@ function (_, $) {
|
|||||||
defaultParams: [3, "sum"]
|
defaultParams: [3, "sum"]
|
||||||
});
|
});
|
||||||
|
|
||||||
addFuncDef({
|
|
||||||
name: "groupByNodes",
|
|
||||||
category: categories.Special,
|
|
||||||
params: [
|
|
||||||
{
|
|
||||||
name: "function",
|
|
||||||
type: "string",
|
|
||||||
options: ['sum', 'avg', 'maxSeries']
|
|
||||||
},
|
|
||||||
{ name: "node", type: "int", options: [0,1,2,3,4,5,6,7,8,9,10,12] },
|
|
||||||
{ name: "node", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
|
||||||
{ name: "node", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
|
||||||
{ name: "node", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
|
||||||
],
|
|
||||||
defaultParams: ["sum", 3]
|
|
||||||
});
|
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'aliasByNode',
|
name: 'aliasByNode',
|
||||||
category: categories.Special,
|
category: categories.Special,
|
||||||
@@ -381,11 +338,6 @@ function (_, $) {
|
|||||||
defaultParams: [10]
|
defaultParams: [10]
|
||||||
});
|
});
|
||||||
|
|
||||||
addFuncDef({
|
|
||||||
name: 'offsetToZero',
|
|
||||||
category: categories.Transform,
|
|
||||||
});
|
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'transformNull',
|
name: 'transformNull',
|
||||||
category: categories.Transform,
|
category: categories.Transform,
|
||||||
@@ -542,13 +494,6 @@ function (_, $) {
|
|||||||
defaultParams: ['exclude']
|
defaultParams: ['exclude']
|
||||||
});
|
});
|
||||||
|
|
||||||
addFuncDef({
|
|
||||||
name: "grep",
|
|
||||||
category: categories.Filter,
|
|
||||||
params: [{ name: "grep", type: 'string' }],
|
|
||||||
defaultParams: ['grep']
|
|
||||||
});
|
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'highestCurrent',
|
name: 'highestCurrent',
|
||||||
category: categories.Filter,
|
category: categories.Filter,
|
||||||
@@ -577,16 +522,6 @@ function (_, $) {
|
|||||||
defaultParams: [10]
|
defaultParams: [10]
|
||||||
});
|
});
|
||||||
|
|
||||||
addFuncDef({
|
|
||||||
name: 'weightedAverage',
|
|
||||||
category: categories.Filter,
|
|
||||||
params: [
|
|
||||||
{ name: 'other', type: 'value_or_series', optional: true },
|
|
||||||
{ name: "node", type: "int", options: [0,1,2,3,4,5,6,7,8,9,10,12] },
|
|
||||||
],
|
|
||||||
defaultParams: ['#A', 4]
|
|
||||||
});
|
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'movingMedian',
|
name: 'movingMedian',
|
||||||
category: categories.Filter,
|
category: categories.Filter,
|
||||||
@@ -643,11 +578,6 @@ function (_, $) {
|
|||||||
defaultParams: [5]
|
defaultParams: [5]
|
||||||
});
|
});
|
||||||
|
|
||||||
addFuncDef({
|
|
||||||
name: 'removeEmptySeries',
|
|
||||||
category: categories.Filter
|
|
||||||
});
|
|
||||||
|
|
||||||
addFuncDef({
|
addFuncDef({
|
||||||
name: 'useSeriesAbove',
|
name: 'useSeriesAbove',
|
||||||
category: categories.Filter,
|
category: categories.Filter,
|
||||||
@@ -659,6 +589,239 @@ function (_, $) {
|
|||||||
defaultParams: [0, 'search', 'replace']
|
defaultParams: [0, 'search', 'replace']
|
||||||
});
|
});
|
||||||
|
|
||||||
|
////////////////////
|
||||||
|
// Graphite 1.0.x //
|
||||||
|
////////////////////
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'aggregateLine',
|
||||||
|
category: categories.Combine,
|
||||||
|
params: [{ name: "func", type: "select", options: ['sum', 'avg', 'min', 'max', 'last']}],
|
||||||
|
defaultParams: ['avg'],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'averageOutsidePercentile',
|
||||||
|
category: categories.Filter,
|
||||||
|
params: [{ name: "n", type: "int", }],
|
||||||
|
defaultParams: [95],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'delay',
|
||||||
|
category: categories.Transform,
|
||||||
|
params: [{ name: 'steps', type: 'int', }],
|
||||||
|
defaultParams: [1],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'exponentialMovingAverage',
|
||||||
|
category: categories.Calculate,
|
||||||
|
params: [{ name: 'windowSize', type: 'int_or_interval', options: ['5', '7', '10', '5min', '10min', '30min', '1hour'] }],
|
||||||
|
defaultParams: [10],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'fallbackSeries',
|
||||||
|
category: categories.Special,
|
||||||
|
params: [{ name: 'fallback', type: 'string' }],
|
||||||
|
defaultParams: ['constantLine(0)'],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: "grep",
|
||||||
|
category: categories.Filter,
|
||||||
|
params: [{ name: "grep", type: 'string' }],
|
||||||
|
defaultParams: ['grep'],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: "groupByNodes",
|
||||||
|
category: categories.Special,
|
||||||
|
params: [
|
||||||
|
{
|
||||||
|
name: "function",
|
||||||
|
type: "string",
|
||||||
|
options: ['sum', 'avg', 'maxSeries']
|
||||||
|
},
|
||||||
|
{ name: "node", type: "int", options: [0,1,2,3,4,5,6,7,8,9,10,12] },
|
||||||
|
{ name: "node", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
||||||
|
{ name: "node", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
||||||
|
{ name: "node", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
||||||
|
],
|
||||||
|
defaultParams: ["sum", 3],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'integralByInterval',
|
||||||
|
category: categories.Transform,
|
||||||
|
params: [{ name: "intervalUnit", type: "select", options: ['1h', '6h', '12h', '1d', '2d', '7d', '14d', '30d'] }],
|
||||||
|
defaultParams: ['1d'],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'interpolate',
|
||||||
|
category: categories.Transform,
|
||||||
|
params: [{ name: 'limit', type: 'int', optional: true}],
|
||||||
|
defaultParams: [],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'invert',
|
||||||
|
category: categories.Transform,
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'isNonNull',
|
||||||
|
category: categories.Combine,
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'linearRegression',
|
||||||
|
category: categories.Calculate,
|
||||||
|
params: [
|
||||||
|
{ name: "startSourceAt", type: "select", options: ['-1h', '-6h', '-12h', '-1d', '-2d', '-7d', '-14d', '-30d'], optional: true },
|
||||||
|
{ name: "endSourceAt", type: "select", options: ['-1h', '-6h', '-12h', '-1d', '-2d', '-7d', '-14d', '-30d'], optional: true }
|
||||||
|
],
|
||||||
|
defaultParams: [],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'mapSeries',
|
||||||
|
shortName: 'map',
|
||||||
|
params: [{ name: "node", type: 'int' }],
|
||||||
|
defaultParams: [3],
|
||||||
|
category: categories.Combine,
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'movingMin',
|
||||||
|
category: categories.Calculate,
|
||||||
|
params: [{ name: 'windowSize', type: 'int_or_interval', options: ['5', '7', '10', '5min', '10min', '30min', '1hour'] }],
|
||||||
|
defaultParams: [10],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'movingMax',
|
||||||
|
category: categories.Calculate,
|
||||||
|
params: [{ name: 'windowSize', type: 'int_or_interval', options: ['5', '7', '10', '5min', '10min', '30min', '1hour'] }],
|
||||||
|
defaultParams: [10],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'movingSum',
|
||||||
|
category: categories.Calculate,
|
||||||
|
params: [{ name: 'windowSize', type: 'int_or_interval', options: ['5', '7', '10', '5min', '10min', '30min', '1hour'] }],
|
||||||
|
defaultParams: [10],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: "multiplySeriesWithWildcards",
|
||||||
|
category: categories.Calculate,
|
||||||
|
params: [
|
||||||
|
{ name: "position", type: "int", options: [0,1,2,3,4,5,6,7,8,9,10,12] },
|
||||||
|
{ name: "position", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
||||||
|
{ name: "position", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
||||||
|
{ name: "position", type: "int", options: [0,-1,-2,-3,-4,-5,-6,-7], optional: true },
|
||||||
|
],
|
||||||
|
defaultParams: [2],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'offsetToZero',
|
||||||
|
category: categories.Transform,
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'pow',
|
||||||
|
category: categories.Transform,
|
||||||
|
params: [{ name: 'factor', type: 'int' }],
|
||||||
|
defaultParams: [10],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'powSeries',
|
||||||
|
category: categories.Transform,
|
||||||
|
params: optionalSeriesRefArgs,
|
||||||
|
defaultParams: [''],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'reduceSeries',
|
||||||
|
shortName: 'reduce',
|
||||||
|
params: [
|
||||||
|
{ name: "function", type: 'string', options: ['asPercent', 'diffSeries', 'divideSeries'] },
|
||||||
|
{ name: "reduceNode", type: 'int', options: [0,1,2,3,4,5,6,7,8,9,10,11,12,13] },
|
||||||
|
{ name: "reduceMatchers", type: 'string' },
|
||||||
|
{ name: "reduceMatchers", type: 'string' },
|
||||||
|
],
|
||||||
|
defaultParams: ['asPercent', 2, 'used_bytes', 'total_bytes'],
|
||||||
|
category: categories.Combine,
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'removeBetweenPercentile',
|
||||||
|
category: categories.Filter,
|
||||||
|
params: [{ name: "n", type: "int", }],
|
||||||
|
defaultParams: [95],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'removeEmptySeries',
|
||||||
|
category: categories.Filter,
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'squareRoot',
|
||||||
|
category: categories.Transform,
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'timeSlice',
|
||||||
|
category: categories.Transform,
|
||||||
|
params: [
|
||||||
|
{ name: "startSliceAt", type: "select", options: ['-1h', '-6h', '-12h', '-1d', '-2d', '-7d', '-14d', '-30d']},
|
||||||
|
{ name: "endSliceAt", type: "select", options: ['-1h', '-6h', '-12h', '-1d', '-2d', '-7d', '-14d', '-30d'], optional: true }
|
||||||
|
],
|
||||||
|
defaultParams: ['-1h'],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
|
addFuncDef({
|
||||||
|
name: 'weightedAverage',
|
||||||
|
category: categories.Filter,
|
||||||
|
params: [
|
||||||
|
{ name: 'other', type: 'value_or_series', optional: true },
|
||||||
|
{ name: "node", type: "int", options: [0,1,2,3,4,5,6,7,8,9,10,12] },
|
||||||
|
],
|
||||||
|
defaultParams: ['#A', 4],
|
||||||
|
version: '1.0'
|
||||||
|
});
|
||||||
|
|
||||||
_.each(categories, function(funcList, catName) {
|
_.each(categories, function(funcList, catName) {
|
||||||
categories[catName] = _.sortBy(funcList, 'name');
|
categories[catName] = _.sortBy(funcList, 'name');
|
||||||
});
|
});
|
||||||
@@ -737,6 +900,16 @@ function (_, $) {
|
|||||||
this.text = text;
|
this.text = text;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function isVersionRelatedFunction(func, graphiteVersion) {
|
||||||
|
return isVersionGreaterOrEqual(graphiteVersion, func.version) || !func.version;
|
||||||
|
}
|
||||||
|
|
||||||
|
function isVersionGreaterOrEqual(a, b) {
|
||||||
|
var a_num = Number(a);
|
||||||
|
var b_num = Number(b);
|
||||||
|
return a_num >= b_num;
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
createFuncInstance: function(funcDef, options) {
|
createFuncInstance: function(funcDef, options) {
|
||||||
if (_.isString(funcDef)) {
|
if (_.isString(funcDef)) {
|
||||||
@@ -752,8 +925,18 @@ function (_, $) {
|
|||||||
return index[name];
|
return index[name];
|
||||||
},
|
},
|
||||||
|
|
||||||
getCategories: function() {
|
getCategories: function(graphiteVersion) {
|
||||||
return categories;
|
var filteredCategories = {};
|
||||||
|
_.each(categories, function(functions, category) {
|
||||||
|
var filteredFuncs = _.filter(functions, function(func) {
|
||||||
|
return isVersionRelatedFunction(func, graphiteVersion);
|
||||||
|
});
|
||||||
|
if (filteredFuncs.length) {
|
||||||
|
filteredCategories[category] = filteredFuncs;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return filteredCategories;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
import {GraphiteDatasource} from './datasource';
|
import {GraphiteDatasource} from './datasource';
|
||||||
import {GraphiteQueryCtrl} from './query_ctrl';
|
import {GraphiteQueryCtrl} from './query_ctrl';
|
||||||
|
import {GraphiteConfigCtrl} from './config_ctrl';
|
||||||
class GraphiteConfigCtrl {
|
|
||||||
static templateUrl = 'partials/config.html';
|
|
||||||
}
|
|
||||||
|
|
||||||
class GraphiteQueryOptionsCtrl {
|
class GraphiteQueryOptionsCtrl {
|
||||||
static templateUrl = 'partials/query.options.html';
|
static templateUrl = 'partials/query.options.html';
|
||||||
|
|||||||
@@ -3,3 +3,11 @@
|
|||||||
suggest-url="http://localhost:8080">
|
suggest-url="http://localhost:8080">
|
||||||
</datasource-http-settings>
|
</datasource-http-settings>
|
||||||
|
|
||||||
|
<h3 class="page-heading">Graphite details</h3>
|
||||||
|
|
||||||
|
<div class="gf-form-group">
|
||||||
|
<div class="gf-form">
|
||||||
|
<span class="gf-form-label width-8">Version</span>
|
||||||
|
<select class="gf-form-input gf-size-auto" ng-model="ctrl.current.jsonData.graphiteVersion" ng-options="f.value as f.name for f in ctrl.graphiteVersions"></select>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import {GraphiteDatasource} from "../datasource";
|
|||||||
|
|
||||||
describe('graphiteDatasource', function() {
|
describe('graphiteDatasource', function() {
|
||||||
var ctx = new helpers.ServiceTestContext();
|
var ctx = new helpers.ServiceTestContext();
|
||||||
var instanceSettings: any = {url: [''], name: 'graphiteProd'};
|
var instanceSettings: any = {url: [''], name: 'graphiteProd', jsonData: {}};
|
||||||
|
|
||||||
beforeEach(angularMocks.module('grafana.core'));
|
beforeEach(angularMocks.module('grafana.core'));
|
||||||
beforeEach(angularMocks.module('grafana.services'));
|
beforeEach(angularMocks.module('grafana.services'));
|
||||||
|
|||||||
Reference in New Issue
Block a user