serilog-sinks-azureblobstorage
serilog-sinks-azureblobstorage copied to clipboard
A Serilog sink that writes events to Azure Blob Storage
https://github.com/chriswill/serilog-sinks-azureblobstorage/issues/111
https://www.mend.io/vulnerability-database/CVE-2024-29992 Hi, can you please update the dependency? Thanks! @chriswill @jamesSampica
- Used the default for the QueueLimit (100000) - Changed the call to get properties from BlobClient, because its takes too much time. This only needed when the blobname is...
Logging with the option writeInBatches on true does not write all the data to the blob storage. It looks that the PeriodicBatchingSink is not flushed or to early disposed. In...
Hi, A problem was raised at the end of Issue #32, which was closed because it initially concerned only pre-.NET Standard 2.0 applications. The very same problem arises in Blazor...
Is there a way to find out what this sink is doing and why it is failing. With various configurations I can get it to log, but my pages don't...
If I add a Serilog filter the logging doesn't work anymore, not even in the console. I tried with both an expression: `.Filter.ByExcluding("@l= 'Debug' and SourceContext like '%Microsoft%'")` And a...
Hello, When configuring to write to blob storage like below: "Name": "AzureBlobStorage", "Args": { "connectionString": "[connection here]", "storageContainerName": "blobContainer", "storageFileName": "logs/{yyyy}{MM}/{dd}{HH}bloblogs.txt", "outputTemplate": "{Timestamp:o} [{Level:u3}] ({Application}/{MachineName}/{ThreadId}) {Message}{NewLine}{Exception}" } I'm seeing that...
Hi, When using the retainedBlobCountLimit parameter I get the below error after adding: Serilog.Debugging.SelfLog.Enable(msg => Debug.WriteLine(msg)); 2023-06-14T11:37:20.7223638Z Caught exception while emitting to sink Serilog.Sinks.AzureBlobStorage.AzureBlobStorageSink: System.IO.FileNotFoundException: Could not load file or...
I have a azure function v2, and configured all settings in appsettings.json. And in the function.cs, I use the ReadFrom.Configuration to try read settings and write log to azure blob...