Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for auditID (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		if r.Context() != audit.WithAuditContext(r.Context()) {
    			t.Error("unexpected double wrapping of context")
    		}
    
    		// confirm that we have an audit event
    		ae := audit.AuditEventFrom(r.Context())
    		if ae == nil {
    			t.Error("unexpected nil audit event")
    		}
    
    		// confirm that the indirect way of setting audit annotations later in the chain also works
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      // both for allowed or denied admission responses.
      //
      // "Audit" specifies that a validation failure is included in the published
      // audit event for the request. The audit event will contain a
      // `validation.policy.admission.k8s.io/validation_failure` audit annotation
      // with a value containing the details of the validation failures, formatted as
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top