How to ignore FileNamePattern when removing logs longer than MaxHistory? The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceIterating through a Collection, avoiding ConcurrentModificationException when removing objects in a loopUse Variable Substitution for Logback Appender Class AttributeTimeBasedRollingPolicy failed to rollover logfiles yesterday, but I see no RolloverFailure?archiving logback files which has the process namelogback SiftingAppender generated log files cannot be deleted untill stop the tomcat serverlogback : SizeAndTimeBasedRollingPolicy not deleting files with 4 digit “%i”logback deletes the logs before the MaxHistory during hourly rollbackRollingFileAppender not working when used inside SiftingAppenderDropwizard log deletion doesnt work with archivedFileCount setLogback: Remove only based on date and not file pattern?

Road tyres vs "Street" tyres for charity ride on MTB Tandem

Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?

Can smartphones with the same camera sensor have different image quality?

What information about me do stores get via my credit card?

Netflix Recommendations?

Relations between two reciprocal partial derivatives?

Is every episode of "Where are my Pants?" identical?

Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?

Didn't get enough time to take a Coding Test - what to do now?

How can I define good in a religion that claims no moral authority?

Are spiders unable to hurt humans, especially very small spiders?

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

The variadic template constructor of my class cannot modify my class members, why is that so?

University's motivation for having tenure-track positions

What is special about square numbers here?

What aspect of planet Earth must be changed to prevent the industrial revolution?

Why is superheterodyning better than direct conversion?

Match Roman Numerals

Did God make two great lights or did He make the great light two?

If the empty set is a subset of every set, why write ... ∪ ∅?

Can a 1st-level character have an ability score above 18?

How do I add random spotting to the same face in cycles?

What are these Gizmos at Izaña Atmospheric Research Center in Spain?

Can withdrawing asylum be illegal?



How to ignore FileNamePattern when removing logs longer than MaxHistory?



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceIterating through a Collection, avoiding ConcurrentModificationException when removing objects in a loopUse Variable Substitution for Logback Appender Class AttributeTimeBasedRollingPolicy failed to rollover logfiles yesterday, but I see no RolloverFailure?archiving logback files which has the process namelogback SiftingAppender generated log files cannot be deleted untill stop the tomcat serverlogback : SizeAndTimeBasedRollingPolicy not deleting files with 4 digit “%i”logback deletes the logs before the MaxHistory during hourly rollbackRollingFileAppender not working when used inside SiftingAppenderDropwizard log deletion doesnt work with archivedFileCount setLogback: Remove only based on date and not file pattern?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















Since I don't find an answer to this, apologies if it's seen as a duplicate to some other questions.



I use SiftingAppender to create different log files for each service (3 services) and TimeBasedRollingPolicy so the rollover of log files happens every day.



The LogDiscriminator.java generates the log_discriminator for SiftingAppender policy for logback. Two cases here:



  • Case 1 (LogDiscriminator.java) - logback is able to delete log files after 10 days (maxHistory set to 10)

  • Case 2 (LogDiscriminator.java) - added UUID (just to distingush between instances of the same service - e.g. 2 instances of ser_1), logback is not able to remove log files after 10 days.

Please, is it possible to remove logs older than MaxHistory only based on date? I mean no matter the name (case 2), logback will be able to remove log files. Is there another way to achieve this?



Logback



<?xml version="1.0"?>
<configuration>
<!-- ... -->
<appender name="MAIN" class="ch.qos.logback.classic.sift.SiftingAppender">
<discriminator>
<key>log_discriminator</key>
<defaultValue>LOG_FILE_KEY_UNKNOWN</defaultValue>
</discriminator>
<sift>
<appender name="FILE-$log_discriminator" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>$log.folder/$log_discriminator.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<!-- daily roll-over -->
<FileNamePattern>$log.folder/$log_discriminator.%dyyyy-MM-dd.log</FileNamePattern>
<maxHistory>10</maxHistory>
<cleanHistoryOnStart>true</cleanHistoryOnStart>
</rollingPolicy>
<encoder>
<pattern>$log.pattern</pattern>
</encoder>
<prudent>true</prudent>
</appender>
</sift>
</appender>
<!-- ... -->
</configuration>


LogDiscriminator.java



public class LogDiscriminator 
...
public static void setLogFileType(String appType)
// Case 1 - logback was able to delete after 10 days of log
// MDC.put("log_discriminator", appType); // e.g. ser_1, ser_2 or ser_3 (3 services)

// Case 2 - added UUID (just to distingush between instances of the same app - e.g. 2 instances of ser_1), logback is not able to delete
MDC.put("log_discriminator", String.format("%s_%s", appType, UUID.randomUUID().toString()));

...










share|improve this question




























    0















    Since I don't find an answer to this, apologies if it's seen as a duplicate to some other questions.



    I use SiftingAppender to create different log files for each service (3 services) and TimeBasedRollingPolicy so the rollover of log files happens every day.



    The LogDiscriminator.java generates the log_discriminator for SiftingAppender policy for logback. Two cases here:



    • Case 1 (LogDiscriminator.java) - logback is able to delete log files after 10 days (maxHistory set to 10)

    • Case 2 (LogDiscriminator.java) - added UUID (just to distingush between instances of the same service - e.g. 2 instances of ser_1), logback is not able to remove log files after 10 days.

    Please, is it possible to remove logs older than MaxHistory only based on date? I mean no matter the name (case 2), logback will be able to remove log files. Is there another way to achieve this?



    Logback



    <?xml version="1.0"?>
    <configuration>
    <!-- ... -->
    <appender name="MAIN" class="ch.qos.logback.classic.sift.SiftingAppender">
    <discriminator>
    <key>log_discriminator</key>
    <defaultValue>LOG_FILE_KEY_UNKNOWN</defaultValue>
    </discriminator>
    <sift>
    <appender name="FILE-$log_discriminator" class="ch.qos.logback.core.rolling.RollingFileAppender">
    <file>$log.folder/$log_discriminator.log</file>
    <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
    <!-- daily roll-over -->
    <FileNamePattern>$log.folder/$log_discriminator.%dyyyy-MM-dd.log</FileNamePattern>
    <maxHistory>10</maxHistory>
    <cleanHistoryOnStart>true</cleanHistoryOnStart>
    </rollingPolicy>
    <encoder>
    <pattern>$log.pattern</pattern>
    </encoder>
    <prudent>true</prudent>
    </appender>
    </sift>
    </appender>
    <!-- ... -->
    </configuration>


    LogDiscriminator.java



    public class LogDiscriminator 
    ...
    public static void setLogFileType(String appType)
    // Case 1 - logback was able to delete after 10 days of log
    // MDC.put("log_discriminator", appType); // e.g. ser_1, ser_2 or ser_3 (3 services)

    // Case 2 - added UUID (just to distingush between instances of the same app - e.g. 2 instances of ser_1), logback is not able to delete
    MDC.put("log_discriminator", String.format("%s_%s", appType, UUID.randomUUID().toString()));

    ...










    share|improve this question
























      0












      0








      0








      Since I don't find an answer to this, apologies if it's seen as a duplicate to some other questions.



      I use SiftingAppender to create different log files for each service (3 services) and TimeBasedRollingPolicy so the rollover of log files happens every day.



      The LogDiscriminator.java generates the log_discriminator for SiftingAppender policy for logback. Two cases here:



      • Case 1 (LogDiscriminator.java) - logback is able to delete log files after 10 days (maxHistory set to 10)

      • Case 2 (LogDiscriminator.java) - added UUID (just to distingush between instances of the same service - e.g. 2 instances of ser_1), logback is not able to remove log files after 10 days.

      Please, is it possible to remove logs older than MaxHistory only based on date? I mean no matter the name (case 2), logback will be able to remove log files. Is there another way to achieve this?



      Logback



      <?xml version="1.0"?>
      <configuration>
      <!-- ... -->
      <appender name="MAIN" class="ch.qos.logback.classic.sift.SiftingAppender">
      <discriminator>
      <key>log_discriminator</key>
      <defaultValue>LOG_FILE_KEY_UNKNOWN</defaultValue>
      </discriminator>
      <sift>
      <appender name="FILE-$log_discriminator" class="ch.qos.logback.core.rolling.RollingFileAppender">
      <file>$log.folder/$log_discriminator.log</file>
      <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
      <!-- daily roll-over -->
      <FileNamePattern>$log.folder/$log_discriminator.%dyyyy-MM-dd.log</FileNamePattern>
      <maxHistory>10</maxHistory>
      <cleanHistoryOnStart>true</cleanHistoryOnStart>
      </rollingPolicy>
      <encoder>
      <pattern>$log.pattern</pattern>
      </encoder>
      <prudent>true</prudent>
      </appender>
      </sift>
      </appender>
      <!-- ... -->
      </configuration>


      LogDiscriminator.java



      public class LogDiscriminator 
      ...
      public static void setLogFileType(String appType)
      // Case 1 - logback was able to delete after 10 days of log
      // MDC.put("log_discriminator", appType); // e.g. ser_1, ser_2 or ser_3 (3 services)

      // Case 2 - added UUID (just to distingush between instances of the same app - e.g. 2 instances of ser_1), logback is not able to delete
      MDC.put("log_discriminator", String.format("%s_%s", appType, UUID.randomUUID().toString()));

      ...










      share|improve this question














      Since I don't find an answer to this, apologies if it's seen as a duplicate to some other questions.



      I use SiftingAppender to create different log files for each service (3 services) and TimeBasedRollingPolicy so the rollover of log files happens every day.



      The LogDiscriminator.java generates the log_discriminator for SiftingAppender policy for logback. Two cases here:



      • Case 1 (LogDiscriminator.java) - logback is able to delete log files after 10 days (maxHistory set to 10)

      • Case 2 (LogDiscriminator.java) - added UUID (just to distingush between instances of the same service - e.g. 2 instances of ser_1), logback is not able to remove log files after 10 days.

      Please, is it possible to remove logs older than MaxHistory only based on date? I mean no matter the name (case 2), logback will be able to remove log files. Is there another way to achieve this?



      Logback



      <?xml version="1.0"?>
      <configuration>
      <!-- ... -->
      <appender name="MAIN" class="ch.qos.logback.classic.sift.SiftingAppender">
      <discriminator>
      <key>log_discriminator</key>
      <defaultValue>LOG_FILE_KEY_UNKNOWN</defaultValue>
      </discriminator>
      <sift>
      <appender name="FILE-$log_discriminator" class="ch.qos.logback.core.rolling.RollingFileAppender">
      <file>$log.folder/$log_discriminator.log</file>
      <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
      <!-- daily roll-over -->
      <FileNamePattern>$log.folder/$log_discriminator.%dyyyy-MM-dd.log</FileNamePattern>
      <maxHistory>10</maxHistory>
      <cleanHistoryOnStart>true</cleanHistoryOnStart>
      </rollingPolicy>
      <encoder>
      <pattern>$log.pattern</pattern>
      </encoder>
      <prudent>true</prudent>
      </appender>
      </sift>
      </appender>
      <!-- ... -->
      </configuration>


      LogDiscriminator.java



      public class LogDiscriminator 
      ...
      public static void setLogFileType(String appType)
      // Case 1 - logback was able to delete after 10 days of log
      // MDC.put("log_discriminator", appType); // e.g. ser_1, ser_2 or ser_3 (3 services)

      // Case 2 - added UUID (just to distingush between instances of the same app - e.g. 2 instances of ser_1), logback is not able to delete
      MDC.put("log_discriminator", String.format("%s_%s", appType, UUID.randomUUID().toString()));

      ...







      java logback rollingfileappender log-rotation sifting-appender






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 22 at 6:38









      Ster-BigDataSter-BigData

      448




      448






















          0






          active

          oldest

          votes












          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55294141%2fhow-to-ignore-filenamepattern-when-removing-logs-longer-than-maxhistory%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55294141%2fhow-to-ignore-filenamepattern-when-removing-logs-longer-than-maxhistory%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript