[influxdb] alerts showing tim but not then umber of alerts

2016-10-27 Thread vipul . khullar
hi all I have written the following tick script stream |from() .database('tech') .retentionPolicy('autogen') .measurement('passenger_queue') |log() |eval( lambda: if("host" == '172.30.2.198','true','false') ) .as('val') |alert() .id

Re: [influxdb] Re: continuous query backfill

2016-10-27 Thread joblx88
On Thursday, October 27, 2016 at 9:43:39 AM UTC-5, Sean Beckett wrote: > I'm not sure I understand. The COUNT() function is creating new data, and the > timestamps will the the start of the 1d interval over which the count is > being applied. > > > What timestamp are you trying to preserve? >

[influxdb] Re: Understanding Morgoth

2016-10-27 Thread nathaniel
Clarification from Amith: Hi Nathaniel, Thanks a lot for your quick reply, what is confusing for me here is how morgoth calculated anomalyScore field whose value has turned out to be 0.9897172236503856. And how is this being used to detect anomaly. How does this particular node function …

Re: [influxdb] Graphite template

2016-10-27 Thread Sean Beckett
My team tells me that this should be the template for all metrics: templates = [ "restubucks.jvm.gc.* .measurement.measurement.measurement.field*" ] On Thu, Oct 27, 2016 at 5:26 AM, Adrian Lewis wrote: > Hi, > > I'd like to store some gc metrics using the Graphite line format. > > restbucks.j

[influxdb] Re: Need help in completing the .tick script

2016-10-27 Thread nathaniel
To detect if data has stopped arriving you should use a deadman's switch. The reason for this is that a `select count ...` for a time range doesn't return a 0 but rather an empty response if no data exists. Try something like this // Changed this to 7d since that is want you had in your query

[influxdb] Re: Understanding Morgoth

2016-10-27 Thread nathaniel
In short there are two parts to Morgoth. 1. A system that counts the frequency of different kinds of events. This is the lossy counting part 2. A system that determines if a window of data is the same as an existing event being tracked or something new. This is the fingerprinting part. Here is

Re: [influxdb] Summary of mean grouped by tag. How?

2016-10-27 Thread Sean Beckett
Are you asking for how to get SUM(MEAN(value))? Use CQs to perform the inner function, then use the outer function on that new data. https://docs.influxdata.com/influxdb/v1.0/query_language/continuous_queries/#substituting-for-nested-functions On Thu, Oct 27, 2016 at 2:15 AM, wrote: > Hi all,

Re: [influxdb] Re: Summary of mean grouped by tag. How?

2016-10-27 Thread Sean Beckett
Order of items in the group by clause is irrelevant. On Thu, Oct 27, 2016 at 3:11 AM, wrote: > Op donderdag 27 oktober 2016 10:15:34 UTC+2 schreef gine...@gmail.com: > > Hi all, > > > > Let's say we have a measurement "storage/free" which has a tag "host" > and I want to have a single value whic

Re: [influxdb] Setting up influx-relay

2016-10-27 Thread Sean Beckett
https://github.com/influxdata/influxdb-relay/blob/master/README.md is the full documentation. There are no other docs. On Thu, Oct 27, 2016 at 3:02 AM, wrote: > Hello, > > I am trying to setup multiple influxdb-relay servers. I have tried setting > up the relays with the provided documentation,

Re: [influxdb] Re: continuous query backfill

2016-10-27 Thread Sean Beckett
I'm not sure I understand. The COUNT() function is creating new data, and the timestamps will the the start of the 1d interval over which the count is being applied. What timestamp are you trying to preserve? On Wed, Oct 26, 2016 at 8:27 PM, wrote: > On Wednesday, October 26, 2016 at 12:38:12 P

[influxdb] Re: Telegraf-statsd-droptag

2016-10-27 Thread kostas
On Tuesday, October 25, 2016 at 9:35:57 AM UTC+3, Biplab Sarkar wrote: > Hi, > Is there was way to stop telegraf from sending a particular set of gauge to > influxdb? I wanted to have a "delete_gauges=true" like option for a > particular set of gauge. > Or is there a "droptag" plugin option for s

[influxdb] Re: how to query for the total number of n_cpus

2016-10-27 Thread kostas
On Friday, October 21, 2016 at 10:24:30 PM UTC+3, yee...@gmail.com wrote: > i'm using telegraf and i can see that the n_cpus field is available under > systems. i also see that there is the load1 field. > > what i would like to do is to plot the total total stacked loads of a > selection of host

[influxdb] Re: error reading from socket '/var/run/ceph/ceph-osd.112.asok': error running ceph dump: exit status 22 - Telegraf

2016-10-27 Thread kostas
On Wednesday, October 26, 2016 at 11:55:11 PM UTC+3, Bennett, Conrad wrote: > Hello can anyone advise how exactly to have telegraf run as root user or > correct the problem reported? I am able to pull cpu, mem etc but nothing > related to ceph. > > > Telegraf - version 1.0.1 > > > 2016/10/26

[influxdb] Understanding Morgoth

2016-10-27 Thread amith . hegde
Hi All, I am trying to run morgoth as a child process to kapacitor, but I am failing understand how morgoth functions. Below is the sample tick script I tried out of the Morgoth docs. This is generating some alerts but I am unable to figure out if they are suppose to get triggered way they have

[influxdb] Graphite template

2016-10-27 Thread Adrian Lewis
Hi, I'd like to store some gc metrics using the Graphite line format. restbucks.jvm.gc.eden.pause_msec.count 2 1477409221 restbucks.jvm.gc.eden.pause_msec.max 77 1477409221 restbucks.jvm.gc.eden.pause_msec.mean 47.50 1477409221 restbucks.jvm.gc.eden.pause_msec.min 18 1477409221 restbucks.jv

[influxdb] Re: Summary of mean grouped by tag. How?

2016-10-27 Thread pellebraam
Op donderdag 27 oktober 2016 10:15:34 UTC+2 schreef gine...@gmail.com: > Hi all, > > Let's say we have a measurement "storage/free" which has a tag "host" and I > want to have a single value which shows summarized value of free space among > all hosts. > > If I run this I get average among all

[influxdb] Setting up influx-relay

2016-10-27 Thread pellebraam
Hello, I am trying to setup multiple influxdb-relay servers. I have tried setting up the relays with the provided documentation, but so far I have failed to get it up and running. Could someone provide me with a more detailed manual on how to setup the relay servers? Kind regards, PB -- Re

[influxdb] Summary of mean grouped by tag. How?

2016-10-27 Thread ginermail
Hi all, Let's say we have a measurement "storage/free" which has a tag "host" and I want to have a single value which shows summarized value of free space among all hosts. If I run this I get average among all hosts: SELECT mean("value") FROM "storage/free" WHERE time > now() - 1d GROUP BY tim