Questions tagged [graphite-carbon]

Carbon refers to the daemons that listen for Graphite events. Use this tag with the [graphite] tag

Carbon refers to the daemons listening for Graphite events.

From the Graphite Carbon documentation

When we talk about “Carbon” we mean one or more of various daemons that make up the storage backend of a Graphite installation. All of the carbon daemons listen for time-series data and can accept it over a common set of protocols. However, they differ in what they do with the data once they receive it.

87 questions
0
votes
0 answers

Send lighthouse metrics using NodeJS to Graphite

I am trying to send some lighthouse reports to Graphite. I have come across this NodeJS project Github lighthouse Project which generates the lighthouse reports and send to graphite. So I've done few things - Spun up a graphite container on one my…
mikita agrawal
  • 571
  • 1
  • 12
  • 27
0
votes
1 answer

graphite storage schema retention

I have a question: I would like to keep whisper data for 1 year (7 days 5 seconds, 30 days 1 minute, 1y 5 minutes) Is this correct: [default] pattern = .* retentions = 5s:7d,1m:30d,5m:1y How long will my data be kept? 1 year ? or (7d+30d+1y)…
0
votes
1 answer

Graphite data loss after first retention policy

I am inserting the data in Graphite db with below retention policy in storage-schemas.conf [default_1min_for_1day] pattern = .* retentions = 10s:2m,20s:4m I have inserted data for the metrics key and the data is lost after 2min , i am not able to…
Pandit Biradar
  • 1,777
  • 3
  • 20
  • 35
0
votes
1 answer

How to debug carbon-aggregator not aggregating series?

I'm trying to aggregate values from multiple metrics into one (obviously) but that's not happening and I'm desperately trying to figure out why. There's not much to go on though and I'm hoping get some more information on how to debug this. Let's…
kwisatz
  • 21
  • 1
  • 5
0
votes
1 answer

Time series database "metrics limit"?

I'd like to know if a time-series database will crumble with this scenario: I have tens of thousands of IoTs sending 4 different values each 5min. I will query those values for each IoT, for certain time spans. My question is: Is a tsdb approach…
jonayreyes
  • 538
  • 1
  • 10
  • 27
0
votes
1 answer

How to emit metrics from remote Storm worker to a Graphite server when using a customized IScheduler?

I was collecting metrics nicely from Apache Storm to Graphite. Then I developed a customized scheduler which implements the IScheduler interface, and now on I cannot collect any metrics. Here is my scheduler: public class SiteAwareScheduler…
Felipe
  • 7,013
  • 8
  • 44
  • 102
0
votes
1 answer

Hadoop Namenode send FSNamesystem metrics to graphite with corrupted metric path

I use the following hadoop-metrics2.properties…
aryndin
  • 591
  • 5
  • 18
0
votes
1 answer

How to store data in Graphite with retention of 100ms?

I am using graphite to display our application stats. storage-schemas.conf [stats] pattern = ^stats\. retentions = 1s:1h,1m:1d,1h:100d storage-aggregation.conf [stats] pattern = ^stats.* xFilesFactor = 0 aggregationMethod = sum Per second I am…
Nishanth Duvva
  • 665
  • 8
  • 18
0
votes
1 answer

Grahite, Carbon, CollectD, StatsD - Tagged Series in Python Program

I am trying to run some some python/other language modules modules/workflows/workloads and collect their CPU, Mem, I/O etc resource usage with Grahite, Carbon, CollectD, StatsD. I have read the documentation (see:here) about creating tagged series…
Mover
  • 169
  • 12
0
votes
1 answer

Load a grafana dashboard using http api

I am trying to automate some parts of the monitoring infrastructure, and as part of that it would be really handy to load the dashboards I want using the grafana http api. I can list folders, and load dashboard metadata, but I am not able to load…
Gyanendra Singh
  • 895
  • 2
  • 13
  • 30
0
votes
1 answer

Example disk space, CPU and / or memory monitoring configuration for Graphite

We are looking for a simple monitoring tool for basic stuff like disk space, CPU, folder sizes, memory usage. Graphite looks promising. For a demo I want to create some example data to put in Graphite for one or more of such metrics. What is best…
onknows
  • 6,151
  • 12
  • 65
  • 109
0
votes
1 answer

Multi Workers Sanic App And pyformance Lib for Metrics Reporting

I am trying to add metrics to sanic based application using pyformance metrics library. import random import time from sanic import Sanic from sanic.response import json from pyformance import MetricsRegistry from…
Alex
  • 133
  • 3
  • 12
0
votes
0 answers

Split and reverse string purely with regular expression

First off: Yes, I know that trying to accomplish this purely with regular expressions is foolish, but I need to do this within the context of Carbon Rewrite Rules which are essentially Python regular expressions, eg: ^collectd\.([a-z0-9]+)\. =…
Sammitch
  • 30,782
  • 7
  • 50
  • 77
0
votes
2 answers

Grafana showing wrong data in graph for disk usage

Grafana is showing wrong disk use percentage in graph. Currently my glusterfs disk usage is 8%, but on graph its showing 7%. Below is the metrics which I am currently using. { "hide": true, "target":…
Vishal Bhosale
  • 51
  • 3
  • 11
0
votes
1 answer

How can I create and poll tags from Carbon?

Carbon 1.1.x added the feature for tagging series. I've attempted to add a tag to a series via the below: curl -vv -X POST "http://10.x.x.x:8080/tags/tagSeries" --data-urlencode…
MrDuk
  • 16,578
  • 18
  • 74
  • 133