Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for otlpcommon (0.19 sec)

  1. pilot/pkg/model/telemetry_logging_test.go

    				},
    				DisableBuiltinLabels: true,
    				Body: &otlpcommon.AnyValue{
    					Value: &otlpcommon.AnyValue_StringValue{
    						StringValue: EnvoyTextLogFormat,
    					},
    				},
    				Attributes: &otlpcommon.KeyValueList{
    					Values: []*otlpcommon.KeyValue{
    						{
    							Key:   "protocol",
    							Value: &otlpcommon.AnyValue{Value: &otlpcommon.AnyValue_StringValue{StringValue: "%PROTOCOL%"}},
    						},
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    	if len(labels) == 0 {
    		return nil
    	}
    	attrList := make([]*otlpcommon.KeyValue, 0, len(labels))
    	// Sort keys to ensure stable XDS generation
    	for _, key := range slices.Sort(maps.Keys(labels)) {
    		value := labels[key]
    		kv := &otlpcommon.KeyValue{
    			Key:   key,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top