Hello Devs ,
G'day all.
We have a small extension to log4j to append data into Azure data explorer (a
timeseries analytics platform on Azure) where we extend the RollingFile
appender and then ingest the logs created into the database
(The API's to ingest data use files that have been created through RollingFile
appender using a custom action and works well currently)
For example , we use the rolling files config & then when a new rolling file is
created , we use the Action to get the RenameAction and use that to flush this
file to the database
<RollingFile name="ADXRollingFile" fileName="C:/logs/logs.log"
filePattern="C:/logs/logs-%d{yyyy-MM-dd}-%i.log">
<KustoStrategy
Wanted to check how this artifact can be made into a contrib or has to be
maintained as an external contrib library in a different package space ?
The specific reason for the question was because of the fact that other
appenders have a full implementation of writing to database extending
DBAppender or NoSqlAppender etc
Kind Regards
Ram