hi, not sure this is the best place but I have question about a config option for Kapacitor
I am trying to understand what the "snapshot-interval" config option is doing in better detail
edrocks joined the channel
edrocks has quit
pauldix joined the channel
replay has quit
pauldix has quit
pauldix joined the channel
pauldix has quit
mt has quit
pakerfeldt has quit
daedric has quit
OmIkRoNiXz has quit
Xevian has quit
trahma joined the channel
Xevian joined the channel
pakerfeldt joined the channel
OmIkRoNiXz joined the channel
robins joined the channel
woltage joined the channel
nickc2 joined the channel
betawaffle joined the channel
mt joined the channel
daedric joined the channel
Graypup_
hm apparently I'm supposed to use the centos/redhat repo for fedora. Doesn't matter one bit anyway because go is all statically linked :-)
alden has quit
pauldix joined the channel
pauldix has quit
edrocks joined the channel
edrocks has quit
hanine_ joined the channel
Hanynowsky has quit
aviau has quit
aviau joined the channel
spuder joined the channel
hillar joined the channel
SkyRocknRoll joined the channel
spuder has quit
hillar has quit
spuder joined the channel
spuder has quit
hillar joined the channel
robins is now known as robinsmidsrod
edrocks joined the channel
edrocks has quit
absolutejam joined the channel
netopejr joined the channel
Druid_ joined the channel
Druid_ is now known as Guest96487
Guest96487 is now known as Druide_
edvorg joined the channel
laf has quit
laf joined the channel
overlord_tm joined the channel
overlord_tm has quit
knutix has quit
absolutejam has quit
knutix joined the channel
overlord_tm joined the channel
absolutejam joined the channel
edrocks joined the channel
edrocks has quit
Bico_Fino joined the channel
hillar has quit
hillar joined the channel
pauldix joined the channel
kapsel has quit
undersys has quit
dominikh has quit
zeus- joined the channel
descrepes joined the channel
zeus- is now known as zeus
kapsel joined the channel
\ask joined the channel
octane--_ joined the channel
undersys joined the channel
dominikh joined the channel
zeus is now known as Guest74290
undersys is now known as Guest61147
drawks joined the channel
serverascode has quit
serverascode joined the channel
ronator joined the channel
Bico_Fino_ joined the channel
Bico_Fino has quit
Bico_Fino_ is now known as Bico_Fino
hanine_ has quit
Hanynowsky joined the channel
babilen has quit
babilen joined the channel
Issif joined the channel
edvorg has quit
babilen has quit
Issif has quit
Elbandi
i have a test mysql db with >100M rows, how can i import data _fast_ to influxdb?
calling http api 100M times is not the best solution...
babilen joined the channel
B1nny
Elbandi: maybe the HTTP API you're using has some batching option?
elefant1311 joined the channel
babilen has quit
Anticimex joined the channel
edrocks joined the channel
Guest61147 is now known as undersys
undersys has quit
undersys joined the channel
pauldix has quit
babilen joined the channel
Mongey has quit
hazardous joined the channel
natem joined the channel
zeus` is now known as zeus
zeus has quit
zeus joined the channel
gmuslera joined the channel
pauldix joined the channel
pauldix has quit
pauldix joined the channel
pauldix has quit
gabriel_ joined the channel
gabriel_ is now known as ghounds
gmuslera
is there another way to remotely pull stats from a remote telegraf instance other than prometheus client output+inputs.prometheus? can't connect to the influxdb server directly from the remote telegraf and the prometheus combo seem to mess with typical series names
hillar has quit
pauldix joined the channel
pauldix has quit
pauldix joined the channel
BBGw_Rookie joined the channel
BBGw_Rookie
hi there!
i try to query from cli with "tags". it seems it doesnt work when my tag has colon characters
is this a known bug?
it says: error parsing query: found :, expected ; at line 1, char 64
my query looks like this: influx -database MessageDatabase -format 'csv' -execute 'SELECT "SOC" FROM "Values" WHERE "MAC_ADR" = '2c:f7:f1:01:1d:92' ' > socdata.csv
can anybody help me with this problem plz?
gmuslera
double quotes in the mac field value?
BBGw_Rookie
doesnt work :(
if i use double quotes or leave them blank, there is no error. but nothing is stored... influxdb says u have to use single quotes
i cant test right know if the query works when i dont use colon and just store the tag without them
spuder joined the channel
gmuslera
you can try to do a pipe if the problem is shell interpreting/messing with the quotes, i.e. echo "your query" | influx -database etc
BBGw_Rookie
i am sorry, i dont know exactly what do you mean?
gmuslera
your command line have a mix of ' and ", and the shell don't know where commands and parameters end. If influx don't support \' inside the quotes, you can echo the "right" query with i.e. echo "SELECT \"SOC\" FROM \"Values\" WHERE \"MAC_ADR\" = '2c:f7:f1:01:1d:92' " and pipe it to influx
if need to use double quotes and single ones in the query, of course
just covering the case that influx dont like the \ around
BBGw_Rookie
ok, and how does the "pipe it to influx" command look like?
gmuslera
echo "that from above" | influx -database MessageDatabase -format csv
BBGw_Rookie
ok, thx! i will try
tdasilva- is now known as tdasilva
ok, this works! how can i save the output to a *.csv file now?