[influxdb] Re: Does the new subquery feature in influx 1.2 work in Continuous Queries

2017-01-31 Thread seidy01
I think my group by was originally incorrect, but this is working now. So incase anyone else is wondering, YES subqueries do work inside CQ's. -- Remember to include the version number! --- You received this message because you are subscribed to the Google Groups "InfluxData" group. To unsubs

[influxdb] Influxdb subscription output as json

2017-01-31 Thread Amit Chandak
Hi, I have a python client registering for influxdb subscription and i wanted to get the subscription output in json format, instead of the line protocol. Was wondering, if influxdb subscription supports this? Thanks Amit -- Remember to include the version number! --- You received this

[influxdb] Influxdb subscription support for WHERE clause

2017-01-31 Thread Amit Chandak
Hi, I was wondering if the influxdb pub sub subscription takes a WHERE clause as an input, just like the query. The examples here (https://docs.influxdata.com/influxdb/v1.2/query_language/spec/#create-subscription) don't talk about it. My use case is i want to register for some field v

Re: [influxdb] writes causing OOM killer to kill influx after 3-6 minutes.

2017-01-31 Thread Jeffery K
Does it make sense that this could be because everything is in a different retention policy? I guess this creates different WAL files, and thus, increases the memory requirement on the influx side. When I went back to writing everything to autogen, memory usage was greatly reduced on the influx

Re: [influxdb] Re: Kapacitor one shot alerts: any way to accomplish this.

2017-01-31 Thread Kristopher Cieplak
Awesome thanks!! That is what I was looking for On 31 January 2017 at 12:09, wrote: > You can turn off recovery notifications via the noRecoveries property > https://docs.influxdata.com/kapacitor/v1.2/nodes/alert_node/#norecoveries > This will make the alert node behave as you expect. > > On Tue

[influxdb] Re: Kapacitor one shot alerts: any way to accomplish this.

2017-01-31 Thread nathaniel
You can turn off recovery notifications via the noRecoveries property https://docs.influxdata.com/kapacitor/v1.2/nodes/alert_node/#norecoveries This will make the alert node behave as you expect. On Tuesday, January 31, 2017 at 6:50:24 AM UTC-7, Kristopher Cieplak wrote: > > I guess my descript

[influxdb] Results of subquery queries not as expected

2017-01-31 Thread stephen . thoma
When I query `> select uc from (select uc from (select sum(usageCount) as uc from cidMetrics group by cid) where uc > 1)` The result is: name: cidMetrics time uc -- 06.3858232e+07 09.576334e+06 03.37877e+07 020435 03.231056e+06 0222637 02.659245e+06 01.55

[influxdb] Re: Grafana RFC 3339 or epoch?

2017-01-31 Thread Vick Khera
On Wednesday, January 25, 2017 at 6:06:21 PM UTC-5, Nate wrote: > > Does Grafana support epoch time? > > I did a bunch of inserts using epoch time (unix) into influxdb, inserts > work fine. But when I try to chart with Grafana it sees no data. So I am > curious if I'm the only one having this pr

[influxdb] Writing a value in a payload in a Python script

2017-01-31 Thread Jb Tanguy
Hello, I am using a Python script in order to get back the value of a sensor, I tested this command and this is working : payload='air_quality,host=raspberrypi value=100' requests.post(url="http://localhost:8086/write?db=mydb";, data=payload) It's possible to see the value 100 in the database

[influxdb] Re: InfluxDB: Queries still logged

2017-01-31 Thread Vick Khera
Works for me setting the logging to off in the [http] seciton. Did you restart influxdb? -- Remember to include the version number! --- You received this message because you are subscribed to the Google Groups "InfluxData" group. To unsubscribe from this group and stop receiving emails from it

[influxdb] Re: decimals precision in chronograf visualization

2017-01-31 Thread goller
On Sunday, January 29, 2017 at 5:13:44 AM UTC-6, alexandre...@gmail.com wrote: > I collect presure measures which goes in range ~0.900 ~1.100. > The visualitaion range on the left of the graph only show two decimal places, > but I xould like to see 3 decimals position for the scale. > > I have'nt

[influxdb] Re: Kapacitor one shot alerts: any way to accomplish this.

2017-01-31 Thread Kristopher Cieplak
I guess my description of what I am looking for was not explained well. I really want a way to create a stateless alert that i can fire without it transitioning back to OK. I want to be able to fire an alert with no real level, when something happens. Example a docker container crashes, I wo