Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for auditID (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/audit_test.go

    limitations under the License.
    */
    
    package admission
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/audit"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    )
    
    // fakeHandler implements Interface
    type fakeHandler struct {
    	// return value of Admit()
    	admit error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/doc.go

    limitations under the License.
    */
    
    // Package buffered provides an implementation for the audit.Backend interface
    // that batches incoming audit events and sends batches to the delegate audit.Backend.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:40:46 UTC 2018
    - 809 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/audit/log/backend.go

    }
    
    type backend struct {
    	out     io.Writer
    	format  string
    	encoder runtime.Encoder
    }
    
    var _ audit.Backend = &backend{}
    
    func NewBackend(out io.Writer, format string, groupVersion schema.GroupVersion) audit.Backend {
    	return &backend{
    		out:     out,
    		format:  format,
    		encoder: audit.Codecs.LegacyCodec(groupVersion),
    	}
    }
    
    func (b *backend) ProcessEvents(events ...*auditinternal.Event) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 03 14:38:47 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/audit/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-audit-approvers
    reviewers:
      - sig-auth-audit-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 152 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/plugin/pkg/audit/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package audit contains implementations for pkg/audit/AuditBackend interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 10:39:33 UTC 2017
    - 710 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/doc.go

    limitations under the License.
    */
    
    // +k8s:deepcopy-gen=package
    // +k8s:protobuf-gen=package
    // +k8s:conversion-gen=k8s.io/apiserver/pkg/apis/audit
    // +k8s:openapi-gen=true
    // +k8s:defaulter-gen=TypeMeta
    
    // +groupName=audit.k8s.io
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 07:36:14 UTC 2019
    - 827 bytes
    - Viewed (0)
  7. src/main/resources/log4j2.xml

    				</Delete>
    			</DefaultRolloverStrategy>
    		</RollingFile>
    		<RollingFile name="AuditFile" fileName="${log.file.basedir}/audit.log"
    			filePattern="${log.file.basedir}/audit${backup.date.suffix}-%i.log.gz">
    			<PatternLayout>
    				<Pattern>${audit.log.pattern}</Pattern>
    			</PatternLayout>
    			<Policies>
    				<TimeBasedTriggeringPolicy />
    				<SizeBasedTriggeringPolicy size="100 MB" />
    			</Policies>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 20 13:17:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. internal/logger/help.go

    			Optional:    true,
    			Type:        "number",
    		},
    		config.HelpKV{
    			Key:         QueueDir,
    			Description: `staging dir for undelivered audit messages e.g. '/home/audit-events'`,
    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         config.Comment,
    			Description: config.DefaultComment,
    			Optional:    true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 07 20:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/context_test.go

    }
    
    func TestAuditAnnotationsWithAuditLoggingSetup(t *testing.T) {
    	// No audit context data in the request context
    	ctx := context.Background()
    	AddAuditAnnotation(ctx, "nil", "0")
    
    	// initialize audit context, policy not evaluated yet
    	ctx = WithAuditContext(ctx)
    	AddAuditAnnotation(ctx, "before-evaluation", "1")
    
    	// policy evaluated, audit logging enabled
    	if ac := AuditContextFrom(ctx); ac != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/audit/OWNERS

    # See the OWNERS docs at https://go.k8s.io/owners
    
    approvers:
      - sig-auth-audit-approvers
    reviewers:
      - sig-auth-audit-reviewers
    labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 10 02:31:26 UTC 2021
    - 152 bytes
    - Viewed (0)
Back to top