Skip to content

Commit

Permalink
Including non_negative_derivative function on influxdb
Browse files Browse the repository at this point in the history
Since version 0.9.0 of influxdb the non_negative_derivative function
is merged, this small patch includes it as an option on grafana.
  • Loading branch information
thuck committed Aug 6, 2015
1 parent 862e52a commit f3fc128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/app/plugins/datasource/influxdb/funcEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function (angular, _, $) {

var functionList = [
'count', 'mean', 'sum', 'min', 'max', 'mode', 'distinct', 'median',
'derivative', 'stddev', 'first', 'last', 'difference'
'derivative', 'non_negative_derivative', 'stddev', 'first', 'last', 'difference'
];

var functionMenu = _.map(functionList, function(func) {
Expand Down

0 comments on commit f3fc128

Please sign in to comment.