Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,331 for logb (0.12 sec)

  1. internal/logger/target/testlogger/testlogger.go

    	tb := t.current.Load()
    	var logf func(format string, args ...any)
    	if tb != nil {
    		tbb := *tb
    		tbb.Helper()
    		switch t.action.Load() {
    		case errorMessage:
    			logf = tbb.Errorf
    		case fatalMessage:
    			logf = tbb.Fatalf
    		default:
    			logf = tbb.Logf
    		}
    	} else {
    		switch t.action.Load() {
    		case errorMessage:
    			logf = func(format string, args ...any) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    					c.Name(), pod.Namespace, pod.Name, container.Name, terminateState, prow.ArtifactsURL(fname))
    			}
    
    			// Get envoy logs if the pod is a VM, since kubectl logs only shows the logs from iptables for VMs
    			if isVM && proxyContainer.IsContainer(container) {
    				if stdout, stderr, err := c.PodExec(pod.Name, pod.Namespace, container.Name, "cat /var/log/istio/istio.err.log"); err == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. cmd/kube-apiserver/app/options/options_test.go

    		"--apiserver-count=5",
    		"--audit-log-maxage=11",
    		"--audit-log-maxbackup=12",
    		"--audit-log-maxsize=13",
    		"--audit-log-path=/var/log",
    		"--audit-log-mode=blocking",
    		"--audit-log-batch-buffer-size=46",
    		"--audit-log-batch-max-size=47",
    		"--audit-log-batch-max-wait=48s",
    		"--audit-log-batch-throttle-enable=true",
    		"--audit-log-batch-throttle-qps=49.5",
    		"--audit-log-batch-throttle-burst=50",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cni/pkg/log/uds.go

    	go func() {
    		if err := l.loggingServer.Serve(unixListener); network.IsUnexpectedListenerError(err) {
    			log.Errorf("Error running UDS log server: %v", err)
    		}
    	}()
    
    	go func() {
    		<-stop
    		if err := l.loggingServer.Close(); err != nil {
    			log.Errorf("CNI log server terminated with error: %v", err)
    		} else {
    			log.Debug("CNI log server terminated")
    		}
    	}()
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/pcln.go

    		// add terminating varint-encoded 0, which is just 0
    		dst = append(dst, 0)
    	}
    
    	if dbg {
    		ctxt.Logf("wrote %d bytes to %p\n", len(dst), dst)
    		for _, p := range dst {
    			ctxt.Logf(" %02x", p)
    		}
    		ctxt.Logf("\n")
    	}
    
    	sym.Size = int64(len(dst))
    	sym.P = dst
    	return sym
    }
    
    // pctofileline computes either the file number (arg == 0)
    // or the line number (arg == 1) to use at p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  6. src/main/assemblies/files/logging.properties

    java.util.logging.ConsoleHandler.formatter=java.util.logging.SimpleFormatter
    
    java.util.logging.FileHandler.level=INFO
    java.util.logging.FileHandler.pattern=${fess.log.path}/server_%g.log
    java.util.logging.FileHandler.formatter=java.util.logging.SimpleFormatter
    java.util.logging.FileHandler.count=10
    
    # Suppress warning logs
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Aug 21 11:31:50 UTC 2016
    - 475 bytes
    - Viewed (0)
  7. tests/integration/pilot/mirror_test.go

    		if err != nil {
    			return -1, fmt.Errorf("failed to get Subsets: %v", err)
    		}
    		var logs string
    		for _, w := range workloads {
    			l, err := w.Logs()
    			if err != nil {
    				return -1, fmt.Errorf("failed getting logs: %v", err)
    			}
    			logs += l
    		}
    		if c := float64(strings.Count(logs, testID)); c > 0 {
    			counts[instance.Config().Cluster.Name()] = c
    		}
    	}
    	var total float64
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. samples/open-telemetry/loki/REAME.md

          health_check:
        service:
          extensions:
          - health_check
          pipelines:
            logs:
              receivers: [otlp]
              processors: [attributes]
              exporters: [loki, logging]
    ```
    
    ## Apply Telemetry API
    
    Next, add a Telemetry resource that tells Istio to send access logs to the OpenTelemetry collector.
    
    ```bash
    kubectl apply -f telemetry.yaml
    ```
    
    ## Check ALS output
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/internal/trace/trace_test.go

    				case trace.EventRegionBegin, trace.EventRegionEnd:
    					reg := ev.Region()
    					match = reg.Task == wantEv.task && reg.Type == wantEv.args[0]
    				case trace.EventLog:
    					log := ev.Log()
    					match = log.Task == wantEv.task && log.Category == wantEv.args[0] && log.Message == wantEv.args[1]
    				}
    				if match {
    					want[i] = want[len(want)-1]
    					want = want[:len(want)-1]
    					break
    				}
    			}
    		}
    		if len(want) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/testing/testserver.go

    	}
    
    	if errs := completedOptions.Validate(); len(errs) != 0 {
    		return result, fmt.Errorf("failed to validate ServerRunOptions: %v", utilerrors.NewAggregate(errs))
    	}
    
    	t.Logf("runtime-config=%v", completedOptions.APIEnablement.RuntimeConfig)
    	t.Logf("Starting kube-apiserver on port %d...", s.SecureServing.BindPort)
    
    	config, err := app.NewConfig(completedOptions)
    	if err != nil {
    		return result, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top