Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ndjson (0.18 sec)

  1. internal/logger/config.go

    		},
    	}
    )
    
    // Config console and http logger targets
    type Config struct {
    	Console      Console                 `json:"console"`
    	HTTP         map[string]http.Config  `json:"http"`
    	AuditWebhook map[string]http.Config  `json:"audit"`
    	AuditKafka   map[string]kafka.Config `json:"audit_kafka"`
    }
    
    // NewConfig - initialize new logger config.
    func NewConfig() Config {
    	cfg := Config{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. internal/config/identity/plugin/config.go

    type AuthNSuccessResponse struct {
    	User               string                 `json:"user"`
    	MaxValiditySeconds int                    `json:"maxValiditySeconds"`
    	Claims             map[string]interface{} `json:"claims"`
    }
    
    // AuthNErrorResponse - represents an error response from the authN plugin.
    type AuthNErrorResponse struct {
    	Reason string `json:"reason"`
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.3K bytes
    - Viewed (3)
  3. internal/config/config.go

    	for k, v := range helpDeprecatedKVMap {
    		HelpDeprecatedSubSysMap[k] = v
    	}
    }
    
    // KV - is a shorthand of each key value.
    type KV struct {
    	Key   string `json:"key"`
    	Value string `json:"value"`
    
    	HiddenIfEmpty bool `json:"-"`
    }
    
    func (kv KV) String() string {
    	var s strings.Builder
    	s.WriteString(kv.Key)
    	s.WriteString(KvSeparator)
    	spc := madmin.HasSpace(kv.Value)
    	if spc {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top