Librato is a cloud platform for real-time operations analytics that accepts metrics from any source for real-time aggregation and transformation, anomaly detection, alerting, visual analysis and storage.
Questions tagged [librato]
20 questions
13
votes
2 answers
Dropwizard Metric Annotations @Timed not working
I'm trying to automatically publish metrics to my MetricRegistry using annotations like @Timed (http://metrics.dropwizard.io/3.1.0/apidocs/com/codahale/metrics/annotation/package-summary.html).
This doesn't work out of the box. On searching for…

user2158382
- 4,430
- 12
- 55
- 97
8
votes
0 answers
Trouble with composite metric composition
I'm trying to create a simple composite of two metrics for a Big Number chart:
mean([
series("metric.a", {}),
series("metric.b", {})
])
But when I do I receive the following error. Is my syntax off?
Unable to execute composite: ["error":…

ledhed2222
- 675
- 6
- 11
3
votes
1 answer
Librato composite error: What does: Unable to execute composite: ["error": "Requested MD data from SD endpoint"]. mean?
I want to create an alert that triggers whenever one of the following counter statistics is not zero:
a.b.c.failed
a.b.e.failed
I already use these statistics separately on a dashboard page, but as they occur rarely, I'd like an alert.
It appears I…

Neil B.
- 61
- 5
2
votes
1 answer
How do I create an Apdex score in Librato?
Say I have a series of request timings and and I want to score them and I have 2 thresholds, 4s and 12s. A request completed in 4s or less gets +1, between 4s and 12s gets +0, and over 12s gets -1. I want to sum up the scores and then divide them by…

salmonthefish
- 93
- 1
- 6
1
vote
2 answers
Monitoring Agent for Sensu, Librato
Can we have a single agent/clients for following monitoring tools,
Sensu
Librato
Nagios
NewRelic
Thank you.
1
vote
1 answer
Retrieving metrics through librado using NodeJS
Good morning!
I'm having troubles trying to get a single number from librato to use in a html page.
I just want to get the last value of the metric AWS.Billing.EstimatedCharges.total, the name of the client that spent that value and put it all…

Rando1234
- 11
- 1
1
vote
1 answer
How can i count the total number of sources my metric has with Librato?
I'm trying to build a composite metric which displays the count of sources reporting for a metric, and alert on it (for example if the number of source count is less than 3). Is this possible?

Kevin
- 11
- 1
0
votes
1 answer
Setting tag property for librato metrics with librato-metrics node package
I am using node-metrics package for posting librato metrics and not able to figure out how to add tags to the metrics. I tried below code but it does not work. It posts the metrics fine but I do not see any tags attached to the metrics as shown…

tavier
- 1,744
- 4
- 24
- 53
0
votes
1 answer
Nesting aggregate functions in Librato
I have 3 measures, and I want to add measure1 and measure2 and then subtract measure3 from the result. I'm unable to get the composite metric below to work. Any help would be appreciated.
subtract([
sum([
sum(s("measure1", "*")),
…

Saurav
- 1
0
votes
1 answer
Spring Boot auto-configured metrics not arriving to Librato
I am using Spring Boot with auto-configure enabled (@EnableAutoConfiguration) and trying to send my Spring MVC metrics to Librato. Right now only my own created metrics are arriving to Librato but auto-configured metrics (CPU, file descriptors, …

diegoubi
- 1,101
- 13
- 17
0
votes
1 answer
Count number of point for a librato metric
I'm trying to build a composite metric to know how many point are sent on a period for a specific metric.
The closer stackoverflow response to this is about counting the number of source, and I failed to change it to do what I want (How can i count…

shorty_ponton
- 454
- 4
- 14
0
votes
2 answers
Librato installation fail with "Error: Reading the config file failed!"
The "Easy install" isn't working, no data are sent to Librato
I followed step by instructions for "Advanced" and end up with this error :
Error: Reading the config file failed!
Read the logs for details.
not restarting due to configuration error
And…

Pr Shadoko
- 1,649
- 2
- 15
- 16
0
votes
1 answer
Can we access Librato dashboard from AWS lambda
I am currently logging something into Librato metrics in my c# code as below:
// need to install librato4net nuget package
MetricsPublisher.Current.Increment("metricsName");
Now, I want to create a lambda function on Amazon Web service which will…

tavier
- 1,744
- 4
- 24
- 53
0
votes
1 answer
How to alert on an event that normally happens once a day?
I have a batch job that runs once per day.
At the end of the job I submit a meter metric with a count of the items processed.
I want to alert if one day this metric is not updated.
On http://metrics.librato.com the maximum time I can check "not…

Anentropic
- 32,188
- 12
- 99
- 147
0
votes
1 answer
Error 400/401 trying to create a webhook
I am brand new to webhooks and have had a nightmare trying to get my first one to function. I am trying to use a Particle Photon to send a single float temperature variable to a site that can graph the data. I've tried creating webhooks to…