Graphite not showing correct valuesMaking Graphite UI data cumualtive by defaultWhy use statsd when graphite's Carbon aggregator can do the same job?StatsD and Graphite issues with stats_counts metricsGetting accurate graphite stats_countshow to get least possible count on graphite graphGraphite returning incorrect datapointGraphite and statsd, averaging percentile, stddev incorrectUnknown number of metrics received with statsd and graphiteGraphite and statsd - how to change graphe metric to 1 minHow to store data in Graphite with retention of 100ms?

Remove intersect line for one circle using venndiagram2sets

Aborting 'wrong username' logins

Why does the Earth have a z-component at the start of the J2000 epoch?

Is it rude to tell recruiters I would only change jobs for a better salary?

How can we better understand multiplicative inverse modulo something?

Crab Nebula short story from 1960s or '70s

Why does Hellboy file down his horns?

Cubic programming and beyond?

3D-Plot with an inequality condition for parameter values

Why are Japanese translated subtitles non-conversational?

How to make a niche out of an object

Deep Learning based time series forecasting

Did the Shuttle's rudder or elevons operate when flown on its carrier 747?

What exactly is the Tension force?

What are some symbols representing peasants/oppressed persons fighting back?

What is this old "lemon-squeezer" shaped pan

Doing research in academia and not liking competition

Behavior of the zero and negative/sign flags on classic instruction sets

Does entangle require vegetation?

Can I capture stereo IQ signals from WebSDR?

Can I activate an iPhone without an Apple ID?

Why hasn't the U.S. government paid war reparations to any country it attacked?

How do I define this subset using mathematical notation?

What caused Windows ME's terrible reputation?



Graphite not showing correct values


Making Graphite UI data cumualtive by defaultWhy use statsd when graphite's Carbon aggregator can do the same job?StatsD and Graphite issues with stats_counts metricsGetting accurate graphite stats_countshow to get least possible count on graphite graphGraphite returning incorrect datapointGraphite and statsd, averaging percentile, stddev incorrectUnknown number of metrics received with statsd and graphiteGraphite and statsd - how to change graphe metric to 1 minHow to store data in Graphite with retention of 100ms?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















Basically, my problem is Graphite is not showing the correct data, as if it is not aggregating the data properly.



What I want to do is create a view counter using Graphite.



My Configuration



I'm using Node-StatsD to send data to Carbon:



var client = new StatsD(
host: config.host,
port: config.port,
prefix: config.prefix
);
client.increment("bucketName");`


I have the following storage-schemas.conf:



[default]
pattern = .*
retentions = 1h:14d,1d:99y


and everything else is on default including storage-aggregation.conf, which by default uses the aggregation method sum and has xFilesFactor of 0.



The Problem



I've confirmed that the data is able to reach Graphite as it did create my bucket and stats.counters.statsd.metrics_received.count does increase.



However my bucket count does not increase, here are the results of my query:



  1. target=bucket.count&rawData=true gives
    bucket.count,1553497200,1553583600,3600|0.0,0.0,0.0,...,0.0,0.0


  2. target=summarize(bucket.count,"1d")&format=json gives
    "datapoints": [[0.0, 1553472000], [0.0, 1553558400]], "target":...


  3. hitcount(bucket.count,"1d") gives
    "datapoints": [[3600.0, 1553497200]], "target":...


hitcount does give something that is not 0 but the count is way more than I send to Graphite. I sent at most 1 or 2 dozen in the last hour.










share|improve this question






















  • What is your statsd flush interval?

    – Popieluch
    Mar 26 at 7:43











  • @Popieluch oh thanks it would seem its the flush interval that is the problem. I still have it on the default 10 seconds which might be causing the data to keep getting overwritten.

    – paneko
    Mar 26 at 8:40












  • So I changed the flush interval and the problem still persists. :(

    – paneko
    Mar 28 at 1:33











  • So apparently I manage to solve it by using deleteIdleStats: true, in StatsD's config.js

    – paneko
    Mar 29 at 1:20

















0















Basically, my problem is Graphite is not showing the correct data, as if it is not aggregating the data properly.



What I want to do is create a view counter using Graphite.



My Configuration



I'm using Node-StatsD to send data to Carbon:



var client = new StatsD(
host: config.host,
port: config.port,
prefix: config.prefix
);
client.increment("bucketName");`


I have the following storage-schemas.conf:



[default]
pattern = .*
retentions = 1h:14d,1d:99y


and everything else is on default including storage-aggregation.conf, which by default uses the aggregation method sum and has xFilesFactor of 0.



The Problem



I've confirmed that the data is able to reach Graphite as it did create my bucket and stats.counters.statsd.metrics_received.count does increase.



However my bucket count does not increase, here are the results of my query:



  1. target=bucket.count&rawData=true gives
    bucket.count,1553497200,1553583600,3600|0.0,0.0,0.0,...,0.0,0.0


  2. target=summarize(bucket.count,"1d")&format=json gives
    "datapoints": [[0.0, 1553472000], [0.0, 1553558400]], "target":...


  3. hitcount(bucket.count,"1d") gives
    "datapoints": [[3600.0, 1553497200]], "target":...


hitcount does give something that is not 0 but the count is way more than I send to Graphite. I sent at most 1 or 2 dozen in the last hour.










share|improve this question






















  • What is your statsd flush interval?

    – Popieluch
    Mar 26 at 7:43











  • @Popieluch oh thanks it would seem its the flush interval that is the problem. I still have it on the default 10 seconds which might be causing the data to keep getting overwritten.

    – paneko
    Mar 26 at 8:40












  • So I changed the flush interval and the problem still persists. :(

    – paneko
    Mar 28 at 1:33











  • So apparently I manage to solve it by using deleteIdleStats: true, in StatsD's config.js

    – paneko
    Mar 29 at 1:20













0












0








0








Basically, my problem is Graphite is not showing the correct data, as if it is not aggregating the data properly.



What I want to do is create a view counter using Graphite.



My Configuration



I'm using Node-StatsD to send data to Carbon:



var client = new StatsD(
host: config.host,
port: config.port,
prefix: config.prefix
);
client.increment("bucketName");`


I have the following storage-schemas.conf:



[default]
pattern = .*
retentions = 1h:14d,1d:99y


and everything else is on default including storage-aggregation.conf, which by default uses the aggregation method sum and has xFilesFactor of 0.



The Problem



I've confirmed that the data is able to reach Graphite as it did create my bucket and stats.counters.statsd.metrics_received.count does increase.



However my bucket count does not increase, here are the results of my query:



  1. target=bucket.count&rawData=true gives
    bucket.count,1553497200,1553583600,3600|0.0,0.0,0.0,...,0.0,0.0


  2. target=summarize(bucket.count,"1d")&format=json gives
    "datapoints": [[0.0, 1553472000], [0.0, 1553558400]], "target":...


  3. hitcount(bucket.count,"1d") gives
    "datapoints": [[3600.0, 1553497200]], "target":...


hitcount does give something that is not 0 but the count is way more than I send to Graphite. I sent at most 1 or 2 dozen in the last hour.










share|improve this question














Basically, my problem is Graphite is not showing the correct data, as if it is not aggregating the data properly.



What I want to do is create a view counter using Graphite.



My Configuration



I'm using Node-StatsD to send data to Carbon:



var client = new StatsD(
host: config.host,
port: config.port,
prefix: config.prefix
);
client.increment("bucketName");`


I have the following storage-schemas.conf:



[default]
pattern = .*
retentions = 1h:14d,1d:99y


and everything else is on default including storage-aggregation.conf, which by default uses the aggregation method sum and has xFilesFactor of 0.



The Problem



I've confirmed that the data is able to reach Graphite as it did create my bucket and stats.counters.statsd.metrics_received.count does increase.



However my bucket count does not increase, here are the results of my query:



  1. target=bucket.count&rawData=true gives
    bucket.count,1553497200,1553583600,3600|0.0,0.0,0.0,...,0.0,0.0


  2. target=summarize(bucket.count,"1d")&format=json gives
    "datapoints": [[0.0, 1553472000], [0.0, 1553558400]], "target":...


  3. hitcount(bucket.count,"1d") gives
    "datapoints": [[3600.0, 1553497200]], "target":...


hitcount does give something that is not 0 but the count is way more than I send to Graphite. I sent at most 1 or 2 dozen in the last hour.







graphite statsd






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 26 at 6:41









panekopaneko

1




1












  • What is your statsd flush interval?

    – Popieluch
    Mar 26 at 7:43











  • @Popieluch oh thanks it would seem its the flush interval that is the problem. I still have it on the default 10 seconds which might be causing the data to keep getting overwritten.

    – paneko
    Mar 26 at 8:40












  • So I changed the flush interval and the problem still persists. :(

    – paneko
    Mar 28 at 1:33











  • So apparently I manage to solve it by using deleteIdleStats: true, in StatsD's config.js

    – paneko
    Mar 29 at 1:20

















  • What is your statsd flush interval?

    – Popieluch
    Mar 26 at 7:43











  • @Popieluch oh thanks it would seem its the flush interval that is the problem. I still have it on the default 10 seconds which might be causing the data to keep getting overwritten.

    – paneko
    Mar 26 at 8:40












  • So I changed the flush interval and the problem still persists. :(

    – paneko
    Mar 28 at 1:33











  • So apparently I manage to solve it by using deleteIdleStats: true, in StatsD's config.js

    – paneko
    Mar 29 at 1:20
















What is your statsd flush interval?

– Popieluch
Mar 26 at 7:43





What is your statsd flush interval?

– Popieluch
Mar 26 at 7:43













@Popieluch oh thanks it would seem its the flush interval that is the problem. I still have it on the default 10 seconds which might be causing the data to keep getting overwritten.

– paneko
Mar 26 at 8:40






@Popieluch oh thanks it would seem its the flush interval that is the problem. I still have it on the default 10 seconds which might be causing the data to keep getting overwritten.

– paneko
Mar 26 at 8:40














So I changed the flush interval and the problem still persists. :(

– paneko
Mar 28 at 1:33





So I changed the flush interval and the problem still persists. :(

– paneko
Mar 28 at 1:33













So apparently I manage to solve it by using deleteIdleStats: true, in StatsD's config.js

– paneko
Mar 29 at 1:20





So apparently I manage to solve it by using deleteIdleStats: true, in StatsD's config.js

– paneko
Mar 29 at 1:20












0






active

oldest

votes










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%2f55351175%2fgraphite-not-showing-correct-values%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















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%2f55351175%2fgraphite-not-showing-correct-values%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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현