Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
57 views

It appears that logging.handlers.QueueHandler/.QueueListener is breaking the .setLevel of an attached logging.FileHandler in Python 3.12.9 on Windows. Running the following minimal example results in ...
feetwet's user avatar
  • 3,507
0 votes
1 answer
88 views

I have configured NLog (5.3.4) in my ASP.NET Core project (.NET 5.0) and am using ILogger from Microsoft.Extensions.Logging which is injected through DI. Now I'm logging messages with parameters like ...
bleat interteiment's user avatar
0 votes
1 answer
110 views

I'm using Serilog in an ASP.NET Core Web API app deployed to Azure App Service. My logger configuration includes writing to the console with CompactJsonFormatter: public static class ...
SBAT's user avatar
  • 49
1 vote
0 answers
152 views

I'm building a production grade FastAPI app and would like to implement a structured logging system that: Captures per request context, like request ID, path, and method. Supports asynchronous ...
shalini moorthy's user avatar
0 votes
0 answers
54 views

I am using SparkKubernetesOperator to submit my SparkApplication (via the CRD manifest file) to our onprem Kubernetes cluster. The cluster authenticates our request via the kube api. We have defined a ...
lbvirgo's user avatar
  • 404
0 votes
0 answers
21 views

I have a setup that has more or less the following: devcontainer.json based on Docker Compose: { "name": "Frames API backend", "dockerComposeFile": [ &...
Destroy666's user avatar
  • 1,600
0 votes
1 answer
121 views

We have Azure App insights with 4 GB set as a daily cap. And it started to report that the daily cap is reached regularly. At the same time, based on a query for ingestion we see that only 2.5 GB of ...
JoeBloggs's user avatar
  • 175
1 vote
1 answer
106 views

I'm discovering Snowflake, and am currently using a few SET commands to set session variables values. Not going too much into the details (because I don't want anybody to focus on this part), I ...
arvymetal's user avatar
  • 3,413
1 vote
0 answers
53 views

I am trying to output some nested json in my custom log format. My current log-format is (pretty printed): { "type":"http", "datetime_gmt":"%T", "...
ITChap's user avatar
  • 4,842
1 vote
1 answer
56 views

In the targets package in R, does anyone know if it's possible to remove the progress when running tar_make(). I plan to save the logs as a text file but since the progress bar is being printed every ...
jvlandingin's user avatar
3 votes
1 answer
73 views

I'm using Go's standard log/slog package and have created a custom handler middleware (ContextHandler) to automatically add request-scoped attributes (like session_id) from the context.Context to log ...
Nazar Duma's user avatar
0 votes
0 answers
59 views

I feel like this might be a really dumb question, but I've spent all day trying and failing to get it to work. I have a an R script that will be run automatically overnight, and in it I copy a file ...
Heather's user avatar
0 votes
0 answers
50 views

Is there a way to disable logging in raylib-j INFO: Initializing raylib 4.2 INFO: Supported raylib modules: INFO: > rcore:..... loaded (mandatory) INFO: > rlgl:...... loaded (mandatory) ...
Gotve's user avatar
  • 1
0 votes
2 answers
303 views

I've added an external volume named "logs" to my Databricks Unity Catalog. Within a Databricks notebook I can verify that it exists (os.path.exists(path='/Volumes/my_catalog/schema_name/logs'...
the_economist's user avatar
3 votes
1 answer
125 views

JSch Log [level 1]: Connecting to 10.***.150 port 22 JSch Log [level 1]: Connection established JSch Log [level 1]: Remote version string: SSH-2.0-OpenSSH_8.7 JSch Log [level 1]: Local version string: ...
Lojini's user avatar
  • 166
0 votes
1 answer
78 views

I was looking at how stdout/stderr kubernetes pod logs are stored within gke. My problem is storing Airbyte connectors log to GCP (Airbyte is part of a GKE cluster). Unfortunately pod stdout/stderr is ...
Yak O'Poe's user avatar
  • 822
0 votes
0 answers
33 views

I need fluentd to store logs in files by-host. This is fluent that got logs forwarded from other one in efk. config <source> @type forward port 24224 bind "0.0.0.0" <...
Chenger's user avatar
0 votes
1 answer
91 views

I use Snowflake.Data nuget package in my .NET 4.7.2 project. All the debug logs in the decompiled Snowflake.Data library (v4.3.0) are appearing in my application log which is too much. My application ...
Savindya A's user avatar
1 vote
1 answer
277 views

When using logging and yfinance, if one queries for a incorrect ticker name, they will get an error and I am struggling to shield the user from that error: Code which triggers the error: ticker = yf....
Bogdan Ciocoiu's user avatar
0 votes
1 answer
67 views

In my SAS (version 9.4M8 for Windows) log, time elapsed (CPU time and real time) is by default displayed as x.xx seconds, i.e. to a precision of 10 milliseconds. In order to profile a program ...
h_bauer's user avatar
  • 33
3 votes
1 answer
251 views

I'm using std.log in Zig and I want to change the log level (e.g. to .debug or .info) when running tests using the command line. Is there a way to set the log level from zig build, for example like: ...
Filippo Zanelli's user avatar
1 vote
0 answers
301 views

I'm working on an ASP.NET Core application that uses OpenTelemetry for tracing and Serilog for logging. I'm exporting traces to Tempo and logs to Loki, both of which are then visualized in Grafana. My ...
ABDELILAH AIT LHAJ's user avatar
-1 votes
1 answer
63 views

I have a logging application and shared library, that write to this application via unix socket. I want to implement exclusive access of writing to logging application only for the dynamic library. I ...
dodik's user avatar
  • 11
0 votes
0 answers
73 views

I am attempting to move some of my programs from Perl to Python. Our Perl logging configuration has the following line: # perl_log.conf log4perl.appender.LOGFILE.filename= sub { return get_perl_log() ...
Alvin Li's user avatar
0 votes
1 answer
80 views

My promtail config is: server: http_listen_port: 9080 grpc_listen_port: 0 positions: filename: /tmp/positions.yaml clients: - url: http://loki:3100/loki/api/v1/push scrape_configs: - ...
Arabboy Mamadaliev's user avatar