TandyUK does source machines are i any clusters? What I mean is if they are in separate datacenters, then I would put kafka as close to those datacenters as possible and then add inter-region replication to another kafka - to have a buffer
so I would suggest writing to kafka from one side with various tools and read fro kafka from other side with logstash
this way you can scale kafka and logstash independently in the future
and it would be possible to create HA setup much more easily
Itkovian joined the channel
wandering_vagran joined the channel
hugh_jass joined the channel
horus joined the channel
antgel joined the channel
hugh_jass joined the channel
laurent\ joined the channel
wandering_vagran has quit
Darcidride has quit
Itkovian joined the channel
Darcidride joined the channel
finalbeta has quit
finalbeta joined the channel
wandering_vagran joined the channel
Itkovian has quit
noresult has quit
hugh_jass joined the channel
Itkovian joined the channel
sp90 joined the channel
sp90
Hi everyone, im new to logstash, and standing infront of installing logstash on a EC2 instance
Anyone have some good pointers when using dynamodb and elastic search with logstash inbetween?
im new to elk and i cant to seem to make sence out of it. Why is my nginx body_sent.bytes is parsed as string altough i specify %{NUMBER:[nginx][access][body_sent][bytes]:long} in my grok filter in logstash.conf?
can someone please give me a hand?
bjorn_
It's probably in your index template
If the field is already registered as a string, it won't change until a new index is created
(Or until you reindex)
jegaxd26
bjorn_: I haven't specified any templates manually, i'm using those filebeat setup uploaded
Darcidride joined the channel
hugh_jass joined the channel
bjorn_: I've already tried to delete whole index but it's still shows as string - Bytes in kibana field view
bjorn_: so i cannot actually perform sum aggregation on this field
bjorn_
You can override ES' index template
Also, in logstash, you can try to convert explicitly
convert => [ "[your][field]" => integer ]
jegaxd26
bjorn_: Actually somehow only geoip fields get parsed as numbers, other fields like response_code are also strings
bjorn_
Bbl, lunch
jegaxd26
bjorn_: Yeah but is it necessary? I thought this one should work out of the box. It actually does work if i choose to send my logs directly to elasticsearch in my filebeats