Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for _SYSTEMD_UNIT (0.4 sec)

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

        # cri container runtime rolls out.
        <source>
          @type systemd
          filters [{ "_SYSTEMD_UNIT": "docker.service" }]
          pos_file /var/log/gcp-journald-docker.pos
          read_from_head true
          tag docker
        </source>
    
        <source>
          @type systemd
          filters [{ "_SYSTEMD_UNIT": "{{ fluentd_container_runtime_service }}.service" }]
          pos_file /var/log/gcp-journald-container-runtime.pos
    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

        # cri container runtime rolls out.
        <source>
          @type systemd
          filters [{ "_SYSTEMD_UNIT": "docker.service" }]
          pos_file /var/log/gcp-journald-docker.pos
          read_from_head true
          tag docker
        </source>
    
        <source>
          @type systemd
          filters [{ "_SYSTEMD_UNIT": "{{ fluentd_container_runtime_service }}.service" }]
          pos_file /var/log/gcp-journald-container-runtime.pos
    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. pkg/kubelet/kubelet_server_journal_linux.go

    func checkForNativeLogger(ctx context.Context, service string) bool {
    	// This will return all the journald units
    	cmd := exec.CommandContext(ctx, "journalctl", []string{"--field", "_SYSTEMD_UNIT"}...)
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		// Returning false to allow checking if the service is logging to a file
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 11 01:09:28 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top