Problem with logging in docker when using fluentd for logging of three flask...
I am facing a strange problem with logging when I set up a network of three docker containers each running a small flask app.My python application looks as follows:from flask import Flask,...
View ArticleWhat software ihandles shipping to ElasticSearch the standard output of a...
I have a ballpark idea of how the ELK stack works. I read that by default, standard output is captured and that output will make its way to the Elasticsearch repository. If I post something to stdout,...
View ArticleHow to parse command output (docker log) through goaccess?
How to parse docker logs output / tail output through goaccess? When I do: docker container logs mycontainer > logsand then goaccess -f logs it works perfectly, but if I do docker logs --tail all...
View ArticleHow to redirect tomcat logs TO console?
So I have a problem that is the reverse of what everyone else on the internet wants.. I want to take tomcat logs that are being written out to /usr/local/tomcat/logs and have them be output to console...
View ArticleWhat is a good logging practice for distributed tasks?
I have the following setting:Create multiple workers, do a computation and terminate them after the computation is done.So, every-time it’ll be a different instance running the task, so each host will...
View ArticleLooking for a good book explaining how things work in the industrial system...
Any advice on a good book explaining how things work in the industrial system test environment and production environment?It's my first time in this topic, so I would need a general overview.Key words:...
View ArticleMonitoring K8s Pods in case of outage
K8s has self-healing builtin features, if a pod crash then it will be replaced with the new pod but its log is gone. So what is the best way to monitor K8s pods in case of outage?
View ArticleUnable to send cloudwatch logs to loggly using a blueprint lambda - Invalid...
I am trying to use the loggly Lambda blueprint to send cloudwatch logs to loggly. I am doing this because I have a bunch of lambdas that I need to have a single point of viewing logs. I've followed...
View ArticleHow Do I Log Task Output To A File?
One of my ansible tasks imports an Oracle database using impdp.This generates a lot of output to the console so I have set no_log: True.However, when this fails I want to see the log!How can I make...
View ArticleLogging & Monitoring on multiple servers
I lead a small project with 2 groups of servers (servers in a single group are clones with the same microservices, like pods in the k8s), a balance loader, and a DB. Docker & k8s aren't used...
View ArticleHow to increase jenkins logger size?
I use Jenkins log recorders as described in docs:https://www.jenkins.io/doc/book/system-administration/viewing-logs/It works, but log is only about 255 lines long, which is too short for my...
View ArticleHow to deploy loki-stack helm chart with CRIO?
I am trying to configure loki-stack using a helm chart to my k8s cluster.Since my k8s cluster uses CRIO and not docker (which is common nowdays) I need to change the pipeline_stages: config map to use...
View ArticleHow do I find out exactly when a Github personal access token was last used?
A few days ago, I got an email from github saying that a personal access token that we used is in an 'outdated format':We noticed that an application, TeamCity(ci.support.example.com), owned by an...
View ArticleHow can I get logs in real time from a docker container hosted on Digital Ocean
I have a docker container in which I am running Flask and Scrapy.I noticed that when I run and build my container on my local machine I get logs in real time. However, on an Ubuntu instance hosted on...
View ArticleWhat is the difference between Fluent Bit and Prometheus?
From what I've seen, Prometheus scrapes data and metrics and displays them and Fluent Bit collects logs and metrics and can output them.So, are they doing the same thing, i.e. should I choose one over...
View Article".format(name, e)) ... google.protobuf.json_format.ParseError: Failed to...
I changed the logging in a Google Cloud Function from the built-in Python module logging to google.cloud.logging and I cannot seem to export exceptions and error messages since they have the wrong type...
View ArticleAzure Function App logs without Application Insights instance?
I'm a bit confused about my options for Function App logging on Azure. Is Application Insights the only mechanism available to observe the output logged through the function application's context? In...
View ArticleDoes GitLab support searching logs across jobs for specific strings?
I need to find all jobs that failed in a specific fashion, a few methods are viableOne method that would be viable is finding where GitLab stores its log files, and searching them with something like...
View ArticleHow to write output per builder into separate log files in Packer? [closed]
I have a few packer templates which have several builders - up to 5 per template. This makes it very easy to provision all the resources necessary in a pipeline -- however by default packer writes all...
View ArticleKeeping Docker logs only in memory
There are various log drivers available for Docker but it looks like all of them persist the logs to disk.To reduce disk usage I would like to keep the logs only in memory (and limited to a certain...
View ArticleHow can I log every command for which an Ansible playbook uses elevated...
I have an Ansible playbook that runs against a Linux target host and uses become to gain elevated permissions for those actions that require it.For auditing purposes, I need a list of all the Unix...
View ArticleAWS don't gather properly logs in non-blocking mode
I have faced a situation when some of the logs don't gather by awslogs driver.Awslogs driver with mode = non-blocking and maximum buffer size = 25mb (I have experimented with these values by looking at...
View ArticlePromtail vs. Grafana Agent
I'm running a couple of containers in a Docker Swarm and am setting up a logging system using Grafana Loki and Grafana (up to ~50GB/log per day max). For log shipping, I'm partly scraping container...
View ArticleView logrotated log continuously
Is there a command to view logrotated logs as a continuous stream with proper ordering?I need to view all entries in syslog in historical order starting from the oldest entry available. So far I was...
View ArticleWhat considerations should be taken into account for a good log file format?
We have a practical question I struggle to answer : What is a good logfile schema?Here are the caveats:There are several workloads, each writing more than one log fileApplications are on more than one...
View ArticleCollecting logs from Kubernetes container file system (not from stdout or...
I am trying to find a way to get Promtail collect logs from a container file system. These logs were not generated using the standard output, which automatically gets discovered by Promtail. They have...
View ArticleDocker log retrieval issue with local log driver
EDIT: this appears to be a problem with a long string of zeros getting dumped into the local logs; docker can't cope with this. Since sometimes the machine running our app loses power, when it comes...
View ArticleHow can I make AWS Elastic Beanstalk logs readable?
I just deployed to AWS - Elastic Beanstalk and found the logs undreadable. These are the logs directly downloaded from Elastic Beanstalk Environment GUI.Particularly, there is an ELB-Healthchecker...
View Articlek9s only shows around 50-100 lines of logs, despite more logs being available
I've started using k9s, a TUI for exploring a kubernetes cluster.When I use it to view logs, it however only shows me around 50-100 lines, instead of all the logs, or at least a decent chunk of them....
View ArticleLimiting Access to logs on a specific cluster to Grafana Admins
I have 3 cluster (A-B-C), I installed loki on cluster A using the grafana/loki helm chart, and on cluster B and C I have promtail installed pushing logs to cluster A, how can I make logs collected from...
View Article