Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for auditID (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    // Event captures all the information that can be included in an API audit log.
    type Event struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// AuditLevel at which event was generated
    	Level Level `json:"level" protobuf:"bytes,1,opt,name=level,casttype=Level"`
    
    	// Unique audit ID, generated for each request.
    	AuditID types.UID `json:"auditID" protobuf:"bytes,2,opt,name=auditID,casttype=k8s.io/apimachinery/pkg/types.UID"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/timeout_test.go

    	// This is not part of the Kubernetes API and could change.
    	if !strings.Contains(capturedOutput, `"Timeout or abort while handling" logger="UnhandledError" method="GET" URI="/" auditID=""`) {
    		t.Errorf("unexpected output captured actual = %v", capturedOutput)
    	}
    }
    
    type panicOnNonReuseTransport struct {
    	Transport   http.RoundTripper
    	gotConnSeen bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	}
    
    	return true
    }
    
    func (a *fakeAudit) requestAudited(auditID string) bool {
    	a.lock.Lock()
    	defer a.lock.Unlock()
    	_, exists := a.audits[auditID]
    	return exists
    }
    
    func (a *fakeAudit) EvaluatePolicyRule(attrs authorizer.Attributes) audit.RequestAuditConfig {
    	return audit.RequestAuditConfig{
    		Level: auditinternal.LevelMetadata,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

    message Event {
      // AuditLevel at which event was generated
      optional string level = 1;
    
      // Unique audit ID, generated for each request.
      optional string auditID = 2;
    
      // Stage of the request handling when this event instance was generated.
      optional string stage = 3;
    
      // RequestURI is the request URI as sent by the client to a server.
      optional string requestURI = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// server or kube-aggregator).
    	//
    	// Audit ID is also returned to client by http response header.
    	// It's not guaranteed Audit-Id http header is sent for all requests. When kube-apiserver didn't
    	// audit the events according to the audit policy, no Audit-ID is returned. Also, for request to
    	// pods/exec, pods/attach, pods/proxy, kube-apiserver works like a proxy and redirect the request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  6. cmd/metrics-v3.go

    		[]MetricDescriptor{
    			webhookFailedMessagesMD,
    			webhookQueueLengthMD,
    			webhookTotalMessagesMD,
    		},
    		loadLoggerWebhookMetrics,
    	)
    
    	auditMG := NewMetricsGroup(auditCollectorPath,
    		[]MetricDescriptor{
    			auditFailedMessagesMD,
    			auditTargetQueueLengthMD,
    			auditTotalMessagesMD,
    		},
    		loadAuditMetrics,
    	)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options_test.go

    		"--audit-log-truncate-max-batch-size=45",
    		"--audit-log-truncate-max-event-size=44",
    		"--audit-log-version=audit.k8s.io/v1",
    		"--audit-policy-file=/policy",
    		"--audit-webhook-config-file=/webhook-config",
    		"--audit-webhook-mode=blocking",
    		"--audit-webhook-batch-buffer-size=42",
    		"--audit-webhook-batch-max-size=43",
    		"--audit-webhook-batch-max-wait=1s",
    		"--audit-webhook-batch-throttle-enable=false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. cmd/kube-apiserver/app/options/options_test.go

    		"--audit-log-truncate-max-batch-size=45",
    		"--audit-log-truncate-max-event-size=44",
    		"--audit-log-version=audit.k8s.io/v1",
    		"--audit-policy-file=/policy",
    		"--audit-webhook-config-file=/webhook-config",
    		"--audit-webhook-mode=blocking",
    		"--audit-webhook-batch-buffer-size=42",
    		"--audit-webhook-batch-max-size=43",
    		"--audit-webhook-batch-max-wait=1s",
    		"--audit-webhook-batch-throttle-enable=false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-kubeapiserver.sh

        if [[ "${ADVANCED_AUDIT_BACKEND:-log}" == *"log"* ]]; then
          # The advanced audit log backend config matches the basic audit log config.
          params+=" --audit-log-path=/var/log/kube-apiserver-audit.log"
          params+=" --audit-log-maxage=0"
          params+=" --audit-log-maxbackup=0"
          # Lumberjack doesn't offer any way to disable size-based rotation. It also
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. docs/logging/README.md

    export MINIO_LOGGER_WEBHOOK_ENDPOINT_target1=http://localhost:8080/minio/logs
    minio server /mnt/data
    ```
    
    ## Audit Targets
    
    Assuming `mc` is already [configured](https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart)
    
    ### Audit HTTP Target
    
    ```
    mc admin config get myminio/ audit_webhook
    audit_webhook:name1 enable=off endpoint= auth_token= client_cert= client_key=
    ```
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top