Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Gaudin (0.19 sec)

  1. internal/logger/audit.go

    	internalAudit "github.com/minio/minio/internal/logger/message/audit"
    	"github.com/minio/minio/internal/mcontext"
    	"github.com/minio/pkg/v2/logger/message/audit"
    
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    const contextAuditKey = contextKeyType("audit-entry")
    
    // SetAuditEntry sets Audit info in the context.
    func SetAuditEntry(ctx context.Context, audit *audit.Entry) context.Context {
    	if ctx == nil {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  2. cmd/metrics-v3-cluster-audit.go

    		"Total number of messages sent since start",
    		targetID)
    )
    
    // loadClusterAuditMetrics - `MetricsLoaderFn` for cluster audit
    // such as failed messages and total messages.
    func loadClusterAuditMetrics(_ context.Context, m MetricValues, c *metricsCache) error {
    	audit := logger.CurrentStats()
    	for id, st := range audit {
    		labels := []string{targetID, id}
    		m.Set(auditFailedMessages, float64(st.FailedMessages), labels...)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 17 09:18:02 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  3. cmd/utils.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/minio/internal/logger/message/audit"
    	"github.com/minio/minio/internal/rest"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v2/certs"
    	"github.com/minio/pkg/v2/env"
    	xaudit "github.com/minio/pkg/v2/logger/message/audit"
    	xnet "github.com/minio/pkg/v2/net"
    	"golang.org/x/oauth2"
    )
    
    const (
    	slashSeparator = "/"
    )
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 31.3K bytes
    - Viewed (0)
  4. internal/logger/config.go

    	EnvKafkaEnable        = "MINIO_AUDIT_KAFKA_ENABLE"
    	EnvKafkaBrokers       = "MINIO_AUDIT_KAFKA_BROKERS"
    	EnvKafkaTopic         = "MINIO_AUDIT_KAFKA_TOPIC"
    	EnvKafkaTLS           = "MINIO_AUDIT_KAFKA_TLS"
    	EnvKafkaTLSSkipVerify = "MINIO_AUDIT_KAFKA_TLS_SKIP_VERIFY"
    	EnvKafkaTLSClientAuth = "MINIO_AUDIT_KAFKA_TLS_CLIENT_AUTH"
    	EnvKafkaSASLEnable    = "MINIO_AUDIT_KAFKA_SASL"
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    video/3g2=3g2\n\
    video/x-msvideo=avi\n\
    video/x-flv=flv\n\
    video/mpeg=mpeg\n\
    video/mp4=mp4\n\
    video/ogv=ogv\n\
    video/quicktime=qt\n\
    video/x-m4v=m4v\n\
    audio/x-aif=aif\n\
    audio/midi=midi\n\
    audio/mpga=mpga\n\
    audio/mp4=mp4a\n\
    audio/ogg=oga\n\
    audio/x-wav=wav\n\
    image/webp=webp\n\
    image/bmp=bmp\n\
    image/x-icon=ico\n\
    image/x-icon=ico\n\
    image/png=png\n\
    image/svg+xml=svg\n\
    image/tiff=tiff\n\
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  6. cmd/config-current.go

    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.AuditWebhookSubSys,
    			Description:     "send audit logs to webhook endpoints",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.AuditKafkaSubSys,
    			Description:     "send audit logs to kafka endpoints",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.NotifyWebhookSubSys,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 11:33:28 GMT 2024
    - 30.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

                defaultMap.put(FessConfig.INDEX_REINDEX_SIZE,...
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  8. docs/metrics/v3.md

    ### `/cluster/audit`
    
    | Name                                      | Type      | Help                                                     | Labels      |
    |-------------------------------------------|-----------|----------------------------------------------------------|-------------|
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 26K bytes
    - Viewed (0)
  9. cmd/metrics-v3.go

    	clusterUsageBucketsCollectorPath collectorPath = "/cluster/usage/buckets"
    	clusterErasureSetCollectorPath   collectorPath = "/cluster/erasure-set"
    	clusterAuditCollectorPath        collectorPath = "/cluster/audit"
    	clusterNotificationCollectorPath collectorPath = "/cluster/notification"
    )
    
    const (
    	clusterBasePath = "/cluster"
    )
    
    type metricsV3Collection struct {
    	mgMap       map[collectorPath]*MetricsGroup
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 10K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/list.md

    ## Audit Metrics
    
    | Name                              | Description                                               |
    |:----------------------------------|:----------------------------------------------------------|
    | `minio_audit_failed_messages`     | Total number of messages that failed to send since start. |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
Back to top