How to show delta from start of timespan to point in time for counter
I am trying to visualize a counter increase over time.
But I'm facing two problems:
- The graph doesn't start at zero for the timeframe and
- 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
add a comment |
I am trying to visualize a counter increase over time.
But I'm facing two problems:
- The graph doesn't start at zero for the timeframe and
- 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
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
add a comment |
I am trying to visualize a counter increase over time.
But I'm facing two problems:
- The graph doesn't start at zero for the timeframe and
- 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
I am trying to visualize a counter increase over time.
But I'm facing two problems:
- The graph doesn't start at zero for the timeframe and
- 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
grafana
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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()
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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()
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
add a comment |
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()
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
add a comment |
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()
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()
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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 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