Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for logNotificationJob (0.58 seconds)

  1. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

    import org.opensearch.search.sort.SortOrder;
    
    /**
     * Job for sending log notifications.
     */
    public class LogNotificationJob {
    
        /**
         * Default constructor.
         */
        public LogNotificationJob() {
            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(LogNotificationJob.class);
    
        private static final DateTimeFormatter TIMESTAMP_FORMATTER =
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/job/LogNotificationJobTest.java

        private LogNotificationJob logNotificationJob;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            logNotificationJob = new LogNotificationJob();
        }
    
        @Test
        public void test_constructor() {
            LogNotificationJob job = new LogNotificationJob();
            assertNotNull(job);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"log_notification"}}
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5K bytes
    - Click Count (0)
  4. src/main/resources/fess_job.xml

    	</component>
    	<!-- Backward Compatibility  -->
    	<component name="pingEsJob" class="org.codelibs.fess.job.PingSearchEngineJob" instance="prototype">
    	</component>
    	<component name="logNotificationJob" class="org.codelibs.fess.job.LogNotificationJob" instance="prototype">
    	</component>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java

            assertEquals(0, events.size());
        }
    
        @Test
        public void test_append_excludedLogger_logNotificationJob() {
            final LogEvent event = createLogEvent(Level.ERROR, "org.codelibs.fess.job.LogNotificationJob", "should be excluded");
            appender.append(event);
    
            final List<LogNotificationEvent> events = ComponentUtil.getLogNotificationHelper().drainAll();
            assertEquals(0, events.size());
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

        private static final Set<String> EXCLUDED_LOGGERS = Set.of( //
                "org.codelibs.fess.helper.NotificationHelper", //
                "org.codelibs.fess.util.LogNotificationAppender", //
                "org.codelibs.fess.job.LogNotificationJob", //
                "org.codelibs.fess.timer.LogNotificationTarget", //
                "org.codelibs.fess.helper.LogNotificationHelper", //
                "org.codelibs.curl" //
        );
    
        private final Level minLevel;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)
Back to Top