Re: [influxdb] influxdb-1.1.0-1.x86_64 admin UI not listening on port 8083

2016-12-02 Thread Kaushal Shriyan
On Thursday, 1 December 2016 22:11:07 UTC+5:30, Ross McDonald wrote: > > > Any reason to deprecate admin ui in influxdb-1.1.0-1.x86_64? > > This has been discussed in more detail here: > > https://groups.google.com/forum/#!topic/influxdb/1jhjX8kQF6M/discussion > > > I did set enabled = true in [

[influxdb] Re: CPU usage Query !

2016-12-02 Thread kmg
I checked the docs and tried multiple queries. Final I stopped at this stage. select sum(value) from ucd_cpu where hostname='localhost' and oid=~ /^ssCpuRaw*/ and time > '2016-09-18T22:47:53.408149394Z' and time < '2016-09-18T22:52:53.531283581Z' group by time(5m) this query just sum all the

[influxdb] Issues with Enterprise Replication

2016-12-02 Thread apgriffiths79
Hi, Just downloaded the trial of the Enterprise version and am having some issues getting the replication working. I followed the procedure here http://docs.influxdata.com/enterprise/v1.1/guides/migration/ to migrate data in from an OSS test cluster and everything want fine until the rebalan

Re: [influxdb] Re: Telegraf statsd timing repeat the last value even when task is finished

2016-12-02 Thread Vick Khera
On Thursday, December 1, 2016 at 10:12:09 PM UTC-5, Pierre Caserta wrote: > > I did not change the default config so I have the good config. > > Then try explicitly setting it to "true". I do that and I get expected results with the timing being cleared. Maybe the comment in the config file is

[influxdb] Re: Can't start as service on FreeBSD jail FreeNAS

2016-12-02 Thread Erik Näsström
Sweet, never knew where to look for it earlier, had a permission error when it was trying to create */var/lib/* Probably not the right way to do it but a *chmod -R 777 /var *sorted the problem! :D Den torsdag 1 december 2016 kl. 20:45:26 UTC+1 skrev Vick Khera: > > Check the influxdb log file in

Re: [influxdb] Issues with Enterprise Replication

2016-12-02 Thread Ross McDonald
Hi Alan, Can you open an issue with supp...@influxdb.com? That doesn't sound like the expected behavior, and may be a symptom of an issue with the rebalance. Thanks, Ross On Fri, Dec 2, 2016 at 8:13 AM, wrote: > Hi, > > Just downloaded the trial of the Enterprise version and am having some > i

[influxdb] How to map my matrix-like data to InfluxDB?

2016-12-02 Thread nsarkulova
We have a matrix-like data like below. So per timestamp we have thousands of fields but also each field has a distance value. How can I store data like this in InfluxDB? Distance values are not evenly distributed so I can't just calculate it, it needs to be stored with data. Ideally I should be

Re: [influxdb] influxdb python tutorial not working

2016-12-02 Thread Ross McDonald
What if you set the RP to infinite? You'll want to change the "3d" to "inf": ``` client.create_retention_policy(retention_policy, 'inf', 3, default=True) ``` On Thu, Dec 1, 2016 at 5:42 PM, wrote: > On Thursday, December 1, 2016 at 2:13:39 PM UTC-8, Ross McDonald wrote: > > There is no precisio

[influxdb] Are time series within a result from a select statement guaranteed to be in any particular order?

2016-12-02 Thread Travis Keep
I am using influx 0.13.0 If I run a query like the following from within the influx client: select mean(value) from /process/ where time >= now() - 40m and time < now() - 20m group by host, time(5m) I see four time series shown in the following order: *name: process_atags: host=apple* time

[influxdb] Chronograf Connecting to Influx with Self-Signed Cert

2016-12-02 Thread ralph
We have an InfluxDB running and using a self-signed cert. We can successfully push stats into it using Telegraf, which uses a self-signed cert too. However, Chronograf won't connect to the InfluxDB instance. We can turn SSL on, but it just says: Get https://api:@myserver:8086/query?q=SHOW+S

[influxdb] Re: Are time series within a result from a select statement guaranteed to be in any particular order?

2016-12-02 Thread Travis Keep
I had hypothesized that time series are ordered by name first and then ordered by the tags hash key using the HashKey() method in models/points.go. To test my hypothesis, I used tag foo=hello.there on one time series and tag foo=hello there on another and named the time series the same. The time

[influxdb] Install Influxdb to raspberry pi

2016-12-02 Thread vaghar
Hello, I am trying to install version 0.9.6.1 of the Influxdb on my Raspberry Pi 3. I followed instructions from here: http://www.lindleyhome.com/?p=88 When I ran "./package.sh -t deb -p 0.9.6.1", I got this error: /main.go:5:2: can't find package "context" in any of: I looked insi

[influxdb] Export CSV from simple GET request?

2016-12-02 Thread Ryan McKinley
Influx 1.1 added the ability to get the response as CSV -- this is great! curl -H "Accept: application/csv" -G 'http://localhost:8086/query [...] Is there any way to make this request without chaining the Accept header? I am trying to build an HTML form that downloads directly from Influx, bu

[influxdb] sum of rate

2016-12-02 Thread ihashu
hi sum of derivative() rather than derivative(sum(value),10s)? I wonder if influxdb could have sum of rate opiton. Thanks Shu -- Remember to include the version number! --- You received this message because you are subscribed to the Google Groups "InfluxData" group. To unsubscribe from this g

Re: [influxdb] Re: Can't start as service on FreeBSD jail FreeNAS

2016-12-02 Thread Vick Khera
FreeBSD standard is to put it in /var/db but the port doesn't do it. I changed the config file. > On Dec 2, 2016, at 10:49, Erik Näsström wrote: > > Sweet, never knew where to look for it earlier, had a permission error when > it was trying to create /var/lib/ > Probably not the right way to

[influxdb] a measurement with counts and tags to calculate rates

2016-12-02 Thread joblx88
I'm struggling to get a count table with tags. The closest I've been able to get to it is using continuous queries. If you read this group you will see many questions that I've posted about my many attempts on this and the group has been awesome in helping me. I've tried several ways but ope