How to show delta from start of timespan to point in time for counter










0















I am trying to visualize a counter increase over time.

But I'm facing two problems:



  1. The graph doesn't start at zero for the timeframe and

  2. When ever the counter resets, the graph hits zero again

This leads to the graph being very hard to read cause what I realy would like is to see how quickly the counter increases over time while being able to quickly get an overview of total amounts of increases at a given point in time measured from the start of the time frame.



Visualisation of my problem



Update 20. November



Result of 'increase([your_metric_name][1m])'










share|improve this question
























  • What type of data source are you using (eg Prometheus, Graphite, InfluxDB, etc)? The specific aggregate functions you'll need to work with a counter will vary depending upon your data source.

    – parliamentowl
    Nov 14 '18 at 17:03











  • I have Prometheus as datasource

    – Troels T.
    Nov 15 '18 at 6:44















0















I am trying to visualize a counter increase over time.

But I'm facing two problems:



  1. The graph doesn't start at zero for the timeframe and

  2. When ever the counter resets, the graph hits zero again

This leads to the graph being very hard to read cause what I realy would like is to see how quickly the counter increases over time while being able to quickly get an overview of total amounts of increases at a given point in time measured from the start of the time frame.



Visualisation of my problem



Update 20. November



Result of 'increase([your_metric_name][1m])'










share|improve this question
























  • What type of data source are you using (eg Prometheus, Graphite, InfluxDB, etc)? The specific aggregate functions you'll need to work with a counter will vary depending upon your data source.

    – parliamentowl
    Nov 14 '18 at 17:03











  • I have Prometheus as datasource

    – Troels T.
    Nov 15 '18 at 6:44













0












0








0








I am trying to visualize a counter increase over time.

But I'm facing two problems:



  1. The graph doesn't start at zero for the timeframe and

  2. When ever the counter resets, the graph hits zero again

This leads to the graph being very hard to read cause what I realy would like is to see how quickly the counter increases over time while being able to quickly get an overview of total amounts of increases at a given point in time measured from the start of the time frame.



Visualisation of my problem



Update 20. November



Result of 'increase([your_metric_name][1m])'










share|improve this question
















I am trying to visualize a counter increase over time.

But I'm facing two problems:



  1. The graph doesn't start at zero for the timeframe and

  2. When ever the counter resets, the graph hits zero again

This leads to the graph being very hard to read cause what I realy would like is to see how quickly the counter increases over time while being able to quickly get an overview of total amounts of increases at a given point in time measured from the start of the time frame.



Visualisation of my problem



Update 20. November



Result of 'increase([your_metric_name][1m])'







grafana






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 '18 at 7:07







Troels T.

















asked Nov 14 '18 at 6:53









Troels T.Troels T.

11




11












  • What type of data source are you using (eg Prometheus, Graphite, InfluxDB, etc)? The specific aggregate functions you'll need to work with a counter will vary depending upon your data source.

    – parliamentowl
    Nov 14 '18 at 17:03











  • I have Prometheus as datasource

    – Troels T.
    Nov 15 '18 at 6:44

















  • What type of data source are you using (eg Prometheus, Graphite, InfluxDB, etc)? The specific aggregate functions you'll need to work with a counter will vary depending upon your data source.

    – parliamentowl
    Nov 14 '18 at 17:03











  • I have Prometheus as datasource

    – Troels T.
    Nov 15 '18 at 6:44
















What type of data source are you using (eg Prometheus, Graphite, InfluxDB, etc)? The specific aggregate functions you'll need to work with a counter will vary depending upon your data source.

– parliamentowl
Nov 14 '18 at 17:03





What type of data source are you using (eg Prometheus, Graphite, InfluxDB, etc)? The specific aggregate functions you'll need to work with a counter will vary depending upon your data source.

– parliamentowl
Nov 14 '18 at 17:03













I have Prometheus as datasource

– Troels T.
Nov 15 '18 at 6:44





I have Prometheus as datasource

– Troels T.
Nov 15 '18 at 6:44












1 Answer
1






active

oldest

votes


















0














You need to use some type of rate or increase function to get the type of graph you're looking for. And since you're using Prometheus, your query will look something like this:



rate([your_metric_name][1m])


If you want the rate per second, OR



increase([your_metric_name][1m])


If you want something more like a delta.



These pages can give you more information too: https://prometheus.io/docs/prometheus/latest/querying/functions/#rate()
https://prometheus.io/docs/prometheus/latest/querying/functions/#increase()






share|improve this answer

























  • Thanks for the suggestion, I've updated the question with the result which unfortunatly doesn't quite reach the target.

    – Troels T.
    Nov 21 '18 at 7:01










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%2f53294607%2fhow-to-show-delta-from-start-of-timespan-to-point-in-time-for-counter%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









0














You need to use some type of rate or increase function to get the type of graph you're looking for. And since you're using Prometheus, your query will look something like this:



rate([your_metric_name][1m])


If you want the rate per second, OR



increase([your_metric_name][1m])


If you want something more like a delta.



These pages can give you more information too: https://prometheus.io/docs/prometheus/latest/querying/functions/#rate()
https://prometheus.io/docs/prometheus/latest/querying/functions/#increase()






share|improve this answer

























  • Thanks for the suggestion, I've updated the question with the result which unfortunatly doesn't quite reach the target.

    – Troels T.
    Nov 21 '18 at 7:01















0














You need to use some type of rate or increase function to get the type of graph you're looking for. And since you're using Prometheus, your query will look something like this:



rate([your_metric_name][1m])


If you want the rate per second, OR



increase([your_metric_name][1m])


If you want something more like a delta.



These pages can give you more information too: https://prometheus.io/docs/prometheus/latest/querying/functions/#rate()
https://prometheus.io/docs/prometheus/latest/querying/functions/#increase()






share|improve this answer

























  • Thanks for the suggestion, I've updated the question with the result which unfortunatly doesn't quite reach the target.

    – Troels T.
    Nov 21 '18 at 7:01













0












0








0







You need to use some type of rate or increase function to get the type of graph you're looking for. And since you're using Prometheus, your query will look something like this:



rate([your_metric_name][1m])


If you want the rate per second, OR



increase([your_metric_name][1m])


If you want something more like a delta.



These pages can give you more information too: https://prometheus.io/docs/prometheus/latest/querying/functions/#rate()
https://prometheus.io/docs/prometheus/latest/querying/functions/#increase()






share|improve this answer















You need to use some type of rate or increase function to get the type of graph you're looking for. And since you're using Prometheus, your query will look something like this:



rate([your_metric_name][1m])


If you want the rate per second, OR



increase([your_metric_name][1m])


If you want something more like a delta.



These pages can give you more information too: https://prometheus.io/docs/prometheus/latest/querying/functions/#rate()
https://prometheus.io/docs/prometheus/latest/querying/functions/#increase()







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 15 '18 at 18:26

























answered Nov 14 '18 at 17:00









parliamentowlparliamentowl

1078




1078












  • Thanks for the suggestion, I've updated the question with the result which unfortunatly doesn't quite reach the target.

    – Troels T.
    Nov 21 '18 at 7:01

















  • Thanks for the suggestion, I've updated the question with the result which unfortunatly doesn't quite reach the target.

    – Troels T.
    Nov 21 '18 at 7:01
















Thanks for the suggestion, I've updated the question with the result which unfortunatly doesn't quite reach the target.

– Troels T.
Nov 21 '18 at 7:01





Thanks for the suggestion, I've updated the question with the result which unfortunatly doesn't quite reach the target.

– Troels T.
Nov 21 '18 at 7:01



















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%2f53294607%2fhow-to-show-delta-from-start-of-timespan-to-point-in-time-for-counter%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







這個網誌中的熱門文章

What does pagestruct do in Eviews?

Dutch intervention in Lombok and Karangasem

Channel Islands