Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for osStats (0.03 seconds)

  1. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

            append(buf, "percent", () -> osProbe.getSystemCpuPercent());
            final OsStats osStats = osProbe.osStats();
            buf.append("},");
            append(buf, "load_averages", () -> osStats.getCpu().getLoadAverage());
            buf.append("},");
        }
    
        private void appendFesenStats(final StringBuilder buf) {
            String stats = null;
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/timer/LoadControlMonitorTarget.java

    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.action.admin.cluster.node.stats.NodeStats;
    import org.opensearch.action.admin.cluster.node.stats.NodesStatsResponse;
    import org.opensearch.monitor.os.OsStats;
    
    /**
     * Timeout target that periodically monitors search engine CPU usage.
     */
    public class LoadControlMonitorTarget implements TimeoutTarget {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/admin/StatsTests.java

            // Log all available stats fields for debugging
            logger.info("Available stats fields: {}", res.keySet());
    
            // Verify response contains meaningful data
            assertNotNull(res, "Stats response should not be null");
            assertTrue(res.size() > 0, "Stats should contain at least some data");
    
            // Check for common stats fields (these may need to be adjusted based on actual implementation)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/env/crawler/resources/log4j2.xml

    		<Property name="log.file.basedir" value="${sys:fess.log.path:-target/logs}" />
    		<Property name="backup.date.suffix" value="_%d{yyyyMMdd}" />
    		<Property name="backup.max.history" value="10" />
    		<Property name="stats.log.pattern" value="%msg%n" />
    	</Properties>
    
    	<Appenders>
    		<RollingFile name="AppRollingFile" fileName="${log.file.basedir}/${domain.name}.log"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top