Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for process_start (4.48 sec)

  1. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

        <source>
          @type exec
          command /bin/sh -c 'date +%s'
          tag process_start
          time_format %Y-%m-%d %H:%M:%S
          keys process_start_timestamp
        </source>
    
        # This filter is used to convert process start timestamp to integer
        # value for correct ingestion in the prometheus output plugin.
        <filter process_start>
          @type record_transformer
          enable_ruby true
          auto_typecast true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  2. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        <source>
          @type exec
          command /bin/sh -c 'date +%s'
          tag process_start
          time_format %Y-%m-%d %H:%M:%S
          keys process_start_timestamp
        </source>
    
        # This filter is used to convert process start timestamp to integer
        # value for correct ingestion in the prometheus output plugin.
        <filter process_start>
          @type record_transformer
          enable_ruby true
          auto_typecast true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            executer.withArguments("-i").run()
    
            then:
            def log = readLog(executer.daemonBaseDir)
    
            //output before started relying logs via connection
            log.count(DaemonMessages.PROCESS_STARTED) == 1
            //output after started relying logs via connection
            log.count(DaemonMessages.STARTED_RELAYING_LOGS) == 1
            //output from the build
            log.count('Hello build!') == 1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/logging/DaemonMessages.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.logging;
    
    public abstract class DaemonMessages {
        public final static String PROCESS_STARTED = "Daemon server started.";
        public final static String ABOUT_TO_CLOSE_STREAMS = "Daemon started. About to close the streams. Daemon details: ";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

                registryUpdater.onStart(connectorAddress);
            } finally {
                lifecycleLock.unlock();
            }
    
            LOGGER.lifecycle(DaemonMessages.PROCESS_STARTED);
        }
    
        /**
         * Stops the daemon, blocking until any current requests/connections have been satisfied.
         * <p>
         * This is the semantically the same as sending the daemon the Stop command.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top