41,687 questions
-1
votes
0
answers
40
views
Why is TDengine taosd spamming logs with continuous cluster_info and grants_info checks in a single-node deployment? [closed]
I am currently running a single-node deployment of TDengine Enterprise Edition in a production environment and am noticing some unexpected behavior in the logs. The taosd process seems to be stuck in ...
0
votes
0
answers
30
views
Python logging.config.fileConfig throws KeyError: 'formatters' despite section existing [duplicate]
I am following a Python tutorial and trying to use logging.config.fileConfig() to load a configuration file. Even though I have a [formatters] section in my logging.conf, I receive a KeyError: '...
Tooling
0
votes
0
replies
94
views
Spring boot structured logging issue
Current spring implementation of structured logging with ECS format creates object "service" with fields:
name, version, environment, node
I would like to add field "id" to the ...
3
votes
1
answer
71
views
Handling "level" keyword with structlog wide logging
I want to implement wide logging with Python's structlog. I also want to provide some unit tests for that and I'm really struggling with how to use structlog with underlying stdlib logging. In general ...
Tooling
0
votes
4
replies
76
views
KQL Script to check existence of a file on Azure VM file system
I'm working on some Azure VMs (a mix of Linux and Windows OS) and would like to set up a KQL script that can check for the presence of a named file (e.g. gold_image.dat) in a specific directory on ...
0
votes
1
answer
43
views
Updated Logging to application insights to use the OpenTelemetry SDK, this broke HTTP status code filtration
I've just updated my code for logging to application insights in my project to use the OpenTelementry SDKs, and for some reason I cant get the filtration of 404s Http status codes to work for stuff ...
-3
votes
1
answer
86
views
Flush a file write so that *another program* can read it [duplicate]
I have a python program that is writing a log.
The idea is to tail the log so I know what's going on in the program while it is running.
But no data ever comes until the python program exits.
Even if ...
0
votes
0
answers
51
views
Diagnostics Trace in one application not working, in a test it works
I use the diagnostics.trace functionality for logging.
I've the followin code in a dotnet framework 4.8.1 windows forms app.
private static readonly TraceSource _trace = new TraceSource("...
0
votes
0
answers
34
views
custom mongoid / mongo logger subscribe / unsubscribe to events in production
I have a rails application that uses mongoid. In development, I have a custom logger that basically logs the backtrace in a visual hierarchy. I'd like to roll this into production with the option ...
Best practices
0
votes
8
replies
124
views
.NET logging without passing an ILogger around
I'm trying to figure out how to implement Logging in my ASP.NET Core 9.0 Web API. I don't like having to inject a logger object in every service class, so have been exploring different ways of ...
Best practices
1
vote
5
replies
102
views
Postgres logging using log_statement in conjunction with log_min_duration_statement
I want to log all changes to existing data on the database which is done via
set log_statement to 'mod';
I also want to capture slowing running queries on top of this, e.g.
set ...
0
votes
0
answers
38
views
Add request id to mongoid logger
I am trying to build analytics for my mongo logger. In development mode, I have a custom mongo logger that backtracers the caller so I can see exactly which call triggered a db request. The problem ...
Best practices
0
votes
1
replies
73
views
What additional fields are needed to identify instances of services in metrics, traces, logs - After replicating services across multiple replicas?
After replicating services across multiple instances (replicas), we need to figure out what additional fields are required to identify instances in metrics, traces, logs, and health checks.
For ...
Tooling
1
vote
0
replies
67
views
Multi-Tenant Log Routing with OpenTelemetry?
I am architecting a "Bring Your Own Sink" logging platform. The goal is to allow users to register their own external endpoints (OTLP, S3, Webhooks), and have my platform route their ...
0
votes
1
answer
46
views
change Zookeeper logs location in .NET build folder to another folder
I use ZooKeeperNetEx.dll along side the Confluent.Kafka in my .NET app.
Every time I run the app, a log file with this naming "ZK.2026-02-05-10.06.05.601Z" is generated.
I tried to use use ...