Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for logb (0.04 sec)

  1. pilot/pkg/model/telemetry_logging.go

    		if len(mesh.AccessLogFormat) > 0 {
    			parsedJSONLogStruct := structpb.Struct{}
    			if err := protomarshal.UnmarshalAllowUnknown([]byte(mesh.AccessLogFormat), &parsedJSONLogStruct); err != nil {
    				log.Errorf("error parsing provided json log format, default log format will be used: %v", err)
    			} else {
    				jsonLogStruct = &parsedJSONLogStruct
    			}
    		}
    		formatters = accessLogJSONFormatters(jsonLogStruct)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    		}
    		go func() {
    			log.Infof("starting gRPC discovery service at %s", grpcListener.Addr())
    			if err := s.grpcServer.Serve(grpcListener); err != nil {
    				log.Errorf("error serving GRPC server: %v", err)
    			}
    		}()
    	}
    
    	if s.httpsServer != nil {
    		httpsListener, err := net.Listen("tcp", s.httpsServer.Addr)
    		if err != nil {
    			return err
    		}
    		go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    					}
    				}
    				// Fall back in case the caller is directly trying to query a file
    				// Example: kubectl get --raw /api/v1/nodes/$name/proxy/logs/foo.log
    				file.ServeHTTP(w, req)
    			}))
    		} else {
    			kl.logServer = http.StripPrefix("/logs/", file)
    		}
    	}
    	if kl.kubeClient == nil {
    		klog.InfoS("No API server defined - no node status update will be sent")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/accesslog_test.go

    				t.Errorf("expected to have 2 listeners, but got %v", len(listeners))
    			}
    			// Validate that access log filter uses the new format.
    			for _, l := range listeners {
    				if l.AccessLog[0].Filter == nil {
    					t.Fatal("expected filter config in listener access log configuration")
    				}
    				// Verify listener access log.
    				verify(t, tc.encoding, l.AccessLog[0], tc.wantFormat)
    
    				for _, fc := range l.FilterChains {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    	autoPassthrough := false
    
    	log.Debugf("MergeGateways: merging %d gateways", len(gateways))
    	for _, gwAndInstance := range gateways {
    		gatewayConfig := gwAndInstance.gateway
    		gatewayName := gatewayConfig.Namespace + "/" + gatewayConfig.Name // Format: %s/%s
    		gatewayCfg := gatewayConfig.Spec.(*networking.Gateway)
    		log.Debugf("MergeGateways: merging gateway %q :\n%v", gatewayName, gatewayCfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listenertest/match.go

    						continue
    					}
    					found++
    					VerifyFilterChain(t, have, want)
    				}
    				if found == 0 {
    					t.Fatalf("No matching chain found for %+v", want)
    				}
    				if found > 1 {
    					t.Logf("warning: multiple matching chains found for %+v", want)
    				}
    			}
    		}
    	}
    }
    
    func VerifyFilterChain(t test.Failer, have *listener.FilterChain, want FilterChainTest) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    		// unrecognized state
    		return kubecontainer.ContainerID{}, fmt.Errorf("container %q in pod %q is waiting to start - no logs yet", containerName, podName)
    	}
    
    	return kubecontainer.ParseContainerID(cID), nil
    }
    
    // GetKubeletContainerLogs returns logs from the container
    // TODO: this method is returning logs of random container attempts, when it should be returning the most recent attempt
    // or all of them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. pilot/pkg/simulation/traffic.go

    		t.Errorf("want cluster matched %q got %q", want.ClusterMatched, r.ClusterMatched)
    	} else {
    		want.ClusterMatched = r.ClusterMatched
    	}
    	if t.Failed() {
    		t.Logf("Diff: %+v", diff)
    		t.Logf("Full Diff: %+v", cmp.Diff(want, r, cmpopts.IgnoreUnexported(Result{}), cmpopts.EquateErrors()))
    	} else if want.Skip != "" {
    		t.Skipf("Known bug: %v", r.Skip)
    	}
    }
    
    type Simulation struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. go.mod

    	github.com/frankban/quicktest v1.14.4 // indirect
    	github.com/go-asn1-ber/asn1-ber v1.5.7 // indirect
    	github.com/go-jose/go-jose/v4 v4.0.2 // indirect
    	github.com/go-logr/logr v1.4.2 // indirect
    	github.com/go-logr/stdr v1.2.2 // indirect
    	github.com/go-ole/go-ole v1.3.0 // indirect
    	github.com/go-openapi/analysis v0.23.0 // indirect
    	github.com/go-openapi/errors v0.22.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    					if !ok {
    						t.Logf("expected kubernetes.io/os label to be present")
    						return false, nil
    					}
    					if val != goruntime.GOOS {
    						t.Logf("expected kubernetes.io/os to match runtime.GOOS but got %v", val)
    						return false, nil
    					}
    					val, ok = savedNode.Labels[v1.LabelArchStable]
    					if !ok {
    						t.Logf("expected kubernetes.io/arch label to be present")
    						return false, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top