Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 155 for Messages (0.12 sec)

  1. pkg/log/uds.go

    	"context"
    	"encoding/json"
    	"fmt"
    	"net"
    	"net/http"
    	"sync"
    	"time"
    
    	"go.uber.org/zap/buffer"
    	"go.uber.org/zap/zapcore"
    )
    
    // An udsCore write entries to an UDS server with HTTP Post. Log messages will be encoded into a JSON array.
    type udsCore struct {
    	client       http.Client
    	minimumLevel zapcore.Level
    	url          string
    	enc          zapcore.Encoder
    	buffers      []*buffer.Buffer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 00:20:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pkg/config/analysis/local/istiod_analyze.go

    func filterMessages(messages diag.Messages, namespaces sets.Set[resource.Namespace], suppressions []AnalysisSuppression) diag.Messages {
    	nsNames := sets.New[string]()
    	for k := range namespaces {
    		nsNames.Insert(k.String())
    	}
    
    	var msgs diag.Messages
    FilterMessages:
    	for _, m := range messages {
    		// Only keep messages for resources in namespaces we want to analyze if the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:06:13 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. releasenotes/notes/failover-validation.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Added** warning validation messages when a DestinationRule specifies failover policies but does not provide an OutlierDetection policy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 15:45:22 UTC 2022
    - 293 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    	if err != nil {
    		return local.AnalysisResult{}, err
    	}
    	return result, err
    }
    
    // Pull just the fields we want to check out of diag.Message
    func extractFields(msgs diag.Messages) []message {
    	result := make([]message, 0)
    	for _, m := range msgs {
    		expMsg := message{
    			messageType: m.Type,
    		}
    		if m.Resource != nil {
    			expMsg.origin = m.Resource.Origin.FriendlyName()
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. istioctl/pkg/analyze/analyze.go

    						fmt.Fprintln(cmd.ErrOrStderr(), "\t", a)
    					}
    				}
    				fmt.Fprintln(cmd.ErrOrStderr())
    			}
    
    			// Get messages for output
    			outputMessages := result.Messages.SetDocRef("istioctl-analyze").FilterOutLowerThan(outputThreshold.Level)
    
    			// Print all the messages to stdout in the specified format
    			output, err := formatting.Print(outputMessages, msgOutputFormat, colorize)
    			if err != nil {
    				return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. pilot/pkg/xds/v3/model.go

    	// nolint
    	HttpProtocolOptionsType = "envoy.extensions.upstreams.http.v3.HttpProtocolOptions"
    )
    
    // GetShortType returns an abbreviated form of a type, useful for logging or human friendly messages
    func GetShortType(typeURL string) string {
    	return model.GetShortType(typeURL)
    }
    
    // GetMetricType returns the form of a type reported for metrics
    func GetMetricType(typeURL string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. releasenotes/notes/40184.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 04 22:09:47 UTC 2022
    - 169 bytes
    - Viewed (0)
  8. releasenotes/notes/43998.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    issue:
      - 40027
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 20 14:36:43 UTC 2023
    - 210 bytes
    - Viewed (0)
  9. releasenotes/notes/47269.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    issue:
      - 47269
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 11:41:38 UTC 2023
    - 246 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/multicluster_analyzers_test.go

    			result, err := runAnalyzer(sa)
    			if err != nil {
    				t.Fatalf("Error running analysis on testcase %s: %v", tc.name, err)
    			}
    
    			g.Expect(extractFields(result.Messages)).To(ConsistOf(tc.expected), "%v", prettyPrintMessages(result.Messages))
    		})
    	}
    }
    
    func setupMultiClusterEnvironmentForCase(tc mcTestCase, cr local.CollectionReporterFn) (*local.IstiodAnalyzer, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top