Grafana difference between two datapoints





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















In a Graphana dashboard with several datapoints, how can I get the difference between the last value and the previouse one for the same metric?
Perhaps the tricky part is that the tiem between 2 datapoins for the same metric is not know.



so the desired result is the <metric>.$current_value - <metric>.$previouse_value for each point in the metricstring.



Edit:
The metrics are stored in graphite/Carbon DB.



thanks










share|improve this question

























  • Which data source are you using?

    – AussieDan
    Nov 23 '18 at 14:48











  • The metrics are stored in graphite/Carbon DB.

    – Lou_Ds
    Nov 24 '18 at 0:32


















0















In a Graphana dashboard with several datapoints, how can I get the difference between the last value and the previouse one for the same metric?
Perhaps the tricky part is that the tiem between 2 datapoins for the same metric is not know.



so the desired result is the <metric>.$current_value - <metric>.$previouse_value for each point in the metricstring.



Edit:
The metrics are stored in graphite/Carbon DB.



thanks










share|improve this question

























  • Which data source are you using?

    – AussieDan
    Nov 23 '18 at 14:48











  • The metrics are stored in graphite/Carbon DB.

    – Lou_Ds
    Nov 24 '18 at 0:32














0












0








0








In a Graphana dashboard with several datapoints, how can I get the difference between the last value and the previouse one for the same metric?
Perhaps the tricky part is that the tiem between 2 datapoins for the same metric is not know.



so the desired result is the <metric>.$current_value - <metric>.$previouse_value for each point in the metricstring.



Edit:
The metrics are stored in graphite/Carbon DB.



thanks










share|improve this question
















In a Graphana dashboard with several datapoints, how can I get the difference between the last value and the previouse one for the same metric?
Perhaps the tricky part is that the tiem between 2 datapoins for the same metric is not know.



so the desired result is the <metric>.$current_value - <metric>.$previouse_value for each point in the metricstring.



Edit:
The metrics are stored in graphite/Carbon DB.



thanks







dashboard grafana difference graphite graphite-carbon






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 24 '18 at 0:32







Lou_Ds

















asked Nov 23 '18 at 14:15









Lou_DsLou_Ds

106117




106117













  • Which data source are you using?

    – AussieDan
    Nov 23 '18 at 14:48











  • The metrics are stored in graphite/Carbon DB.

    – Lou_Ds
    Nov 24 '18 at 0:32



















  • Which data source are you using?

    – AussieDan
    Nov 23 '18 at 14:48











  • The metrics are stored in graphite/Carbon DB.

    – Lou_Ds
    Nov 24 '18 at 0:32

















Which data source are you using?

– AussieDan
Nov 23 '18 at 14:48





Which data source are you using?

– AussieDan
Nov 23 '18 at 14:48













The metrics are stored in graphite/Carbon DB.

– Lou_Ds
Nov 24 '18 at 0:32





The metrics are stored in graphite/Carbon DB.

– Lou_Ds
Nov 24 '18 at 0:32












1 Answer
1






active

oldest

votes


















1














You need to use the derivative function




This is the opposite of the integral function. This is useful for taking a running total metric and calculating the delta between subsequent data points.



This function does not normalize for periods of time, as a true derivative would. Instead see the perSecond() function to calculate a rate of change over time.




Together with the keepLastValue




Takes one metric or a wildcard seriesList, and optionally a limit to the number of ‘None’ values to skip over.



Continues the line with the last received value when gaps (‘None’ values) appear in your data, rather than breaking your line.




Like this



derivative(keepLastValue(your_mteric))


A good example can be found here http://www.perehospital.cat/blog/graphite-getting-derivative-to-work-with-empty-data-points






share|improve this answer
























  • Many thanks, this works. Great Idea. :)

    – Lou_Ds
    Nov 28 '18 at 8:50






  • 1





    @Lou_Ds Sure! good luck :)

    – Gal S
    Nov 28 '18 at 9:11












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53448307%2fgrafana-difference-between-two-datapoints%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














You need to use the derivative function




This is the opposite of the integral function. This is useful for taking a running total metric and calculating the delta between subsequent data points.



This function does not normalize for periods of time, as a true derivative would. Instead see the perSecond() function to calculate a rate of change over time.




Together with the keepLastValue




Takes one metric or a wildcard seriesList, and optionally a limit to the number of ‘None’ values to skip over.



Continues the line with the last received value when gaps (‘None’ values) appear in your data, rather than breaking your line.




Like this



derivative(keepLastValue(your_mteric))


A good example can be found here http://www.perehospital.cat/blog/graphite-getting-derivative-to-work-with-empty-data-points






share|improve this answer
























  • Many thanks, this works. Great Idea. :)

    – Lou_Ds
    Nov 28 '18 at 8:50






  • 1





    @Lou_Ds Sure! good luck :)

    – Gal S
    Nov 28 '18 at 9:11
















1














You need to use the derivative function




This is the opposite of the integral function. This is useful for taking a running total metric and calculating the delta between subsequent data points.



This function does not normalize for periods of time, as a true derivative would. Instead see the perSecond() function to calculate a rate of change over time.




Together with the keepLastValue




Takes one metric or a wildcard seriesList, and optionally a limit to the number of ‘None’ values to skip over.



Continues the line with the last received value when gaps (‘None’ values) appear in your data, rather than breaking your line.




Like this



derivative(keepLastValue(your_mteric))


A good example can be found here http://www.perehospital.cat/blog/graphite-getting-derivative-to-work-with-empty-data-points






share|improve this answer
























  • Many thanks, this works. Great Idea. :)

    – Lou_Ds
    Nov 28 '18 at 8:50






  • 1





    @Lou_Ds Sure! good luck :)

    – Gal S
    Nov 28 '18 at 9:11














1












1








1







You need to use the derivative function




This is the opposite of the integral function. This is useful for taking a running total metric and calculating the delta between subsequent data points.



This function does not normalize for periods of time, as a true derivative would. Instead see the perSecond() function to calculate a rate of change over time.




Together with the keepLastValue




Takes one metric or a wildcard seriesList, and optionally a limit to the number of ‘None’ values to skip over.



Continues the line with the last received value when gaps (‘None’ values) appear in your data, rather than breaking your line.




Like this



derivative(keepLastValue(your_mteric))


A good example can be found here http://www.perehospital.cat/blog/graphite-getting-derivative-to-work-with-empty-data-points






share|improve this answer













You need to use the derivative function




This is the opposite of the integral function. This is useful for taking a running total metric and calculating the delta between subsequent data points.



This function does not normalize for periods of time, as a true derivative would. Instead see the perSecond() function to calculate a rate of change over time.




Together with the keepLastValue




Takes one metric or a wildcard seriesList, and optionally a limit to the number of ‘None’ values to skip over.



Continues the line with the last received value when gaps (‘None’ values) appear in your data, rather than breaking your line.




Like this



derivative(keepLastValue(your_mteric))


A good example can be found here http://www.perehospital.cat/blog/graphite-getting-derivative-to-work-with-empty-data-points







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 27 '18 at 14:00









Gal SGal S

767415




767415













  • Many thanks, this works. Great Idea. :)

    – Lou_Ds
    Nov 28 '18 at 8:50






  • 1





    @Lou_Ds Sure! good luck :)

    – Gal S
    Nov 28 '18 at 9:11



















  • Many thanks, this works. Great Idea. :)

    – Lou_Ds
    Nov 28 '18 at 8:50






  • 1





    @Lou_Ds Sure! good luck :)

    – Gal S
    Nov 28 '18 at 9:11

















Many thanks, this works. Great Idea. :)

– Lou_Ds
Nov 28 '18 at 8:50





Many thanks, this works. Great Idea. :)

– Lou_Ds
Nov 28 '18 at 8:50




1




1





@Lou_Ds Sure! good luck :)

– Gal S
Nov 28 '18 at 9:11





@Lou_Ds Sure! good luck :)

– Gal S
Nov 28 '18 at 9:11




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53448307%2fgrafana-difference-between-two-datapoints%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini