fluentd Questions
3
I have some JSON being emitted from a docker container via the FluentD driver like:
'{"timeMillis":1485917543709,"thread":"main","level":"INFO","loggerName":"com.imageintelligence.ava.api.Boot","m...
0
I am setting up my fluentD configuration and for certain events, I need to push them to both loggly and elasticsearch. I am using copy plugin for that but see a considerable difference in the time ...
Radcliff asked 22/8, 2017 at 17:33
1
When using OpenShift Aggregated Logging I get logs nicely fed into elasticsearch. However, the line as logged by apache ends up in a message field.
I'd like to create queries in Kibana where I can...
Diarthrosis asked 20/3, 2017 at 8:32
2
Solved
I have a sort of ELK stack, with fluentd instead of logstash, running as a DaemonSet on a Kubernetes cluster and sending all logs from all containers, in logstash format, to an Elasticsearch server...
Vonvona asked 16/2, 2017 at 10:2
1
Solved
I'm following this post:
http://eric-price.net/blog/centralized-logging-docker-aws-elasticsearch
This is what my docker-compose.yml looks like :
version: "2"
services:
fluentd:
image: fluent...
Tribade asked 23/9, 2016 at 16:55
1
Configured Google Stackdriver Logging in one of the GCE VM and everything works except Log Level . Have used the parameter log_level in the file
/etc/google-fluentd/config.d/tomcat.conf
as pe...
Sella asked 31/3, 2016 at 19:15
1
How can we easily transform with fluentd( and plugins ) something like this
{
"remote": "87.85.14.126",
"city": "saint-hubert"
}
To this:
{
"geoip": {
"remote": "87.85.14.126",
"city": "sa...
4
Solved
I want to monitor docker containers log from non-root user(td-agent) and on host server,
sudo chmod o+rx /var/lib/docker
sudo find /var/lib/docker/containers/ -type d -exec chmod o+rx {} \;
sudo f...
0
I currently have the following config:
<match docker.nginx>
@type rewrite_tag_filter
rewriterule1 source stdout docker.nginx.stdout
rewriterule2 source stderr docker.nginx.stderr
</mat...
1
Solved
Out of available open source log management tools, I have come across these two but couldn't figure out which one to use. I tried searching articles for Graylog vs Fluentd but couldn't find.
Could...
Ifill asked 12/2, 2016 at 11:13
2
Solved
By reading the following post from 12factor I have come up with a question I'd like to check how you guys handle this.
Basically, an app should write directly to stdout/stderr. Is there anyway to ...
1
Solved
To log to fluentd in java API, we need first to create a hashmap and then convert it to map, and then pass the map to the log function like:
Map<String, String> data = new HashMap<String,...
1
Solved
I was wondering how to use env vars in the Fluentd config, I tried:
<match **>
type elasticsearch
logstash_format true
logstash_prefix $ENV_VAR
host ***
port ***
include_tag_key true
tag_key...
Mistranslate asked 1/12, 2014 at 17:22
2
Solved
I am trying to set up a Fluentd log handler from a Django project using a logger from code:
def get_fluentd_logger(name):
import logging
from fluent import handler
logging.basicConfig(level=lo...
© 2022 - 2024 — McMap. All rights reserved.