Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for elasticsearch (0.4 sec)

  1. internal/event/target/elasticsearch.go

    	ElasticPassword   = "password"
    
    	EnvElasticEnable     = "MINIO_NOTIFY_ELASTICSEARCH_ENABLE"
    	EnvElasticFormat     = "MINIO_NOTIFY_ELASTICSEARCH_FORMAT"
    	EnvElasticURL        = "MINIO_NOTIFY_ELASTICSEARCH_URL"
    	EnvElasticIndex      = "MINIO_NOTIFY_ELASTICSEARCH_INDEX"
    	EnvElasticQueueDir   = "MINIO_NOTIFY_ELASTICSEARCH_QUEUE_DIR"
    	EnvElasticQueueLimit = "MINIO_NOTIFY_ELASTICSEARCH_QUEUE_LIMIT"
    	EnvElasticUsername   = "MINIO_NOTIFY_ELASTICSEARCH_USERNAME"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 15K bytes
    - Viewed (0)
  2. internal/config/notify/config.go

    // Config - notification target configuration structure, holds
    // information about various notification targets.
    type Config struct {
    	AMQP          map[string]target.AMQPArgs          `json:"amqp"`
    	Elasticsearch map[string]target.ElasticsearchArgs `json:"elasticsearch"`
    	Kafka         map[string]target.KafkaArgs         `json:"kafka"`
    	MQTT          map[string]target.MQTTArgs          `json:"mqtt"`
    	MySQL         map[string]target.MySQLArgs         `json:"mysql"`
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jun 01 21:59:40 GMT 2021
    - 2.8K bytes
    - Viewed (0)
  3. internal/config/notify/help.go

    		},
    	}
    
    	HelpES = config.HelpKVS{
    		config.HelpKV{
    			Key:         target.ElasticURL,
    			Description: "Elasticsearch server's address, with optional authentication info",
    			Type:        "url",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         target.ElasticIndex,
    			Description: `Elasticsearch index to store/update events, index is auto-created`,
    			Type:        "string",
    		},
    		config.HelpKV{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Mar 19 04:37:54 GMT 2024
    - 18.8K bytes
    - Viewed (0)
  4. cmd/config-migrate.go

    	compress.SetCompressionConfig(newCfg, cfg.Compression)
    
    	for k, args := range cfg.Notify.AMQP {
    		notify.SetNotifyAMQP(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.Elasticsearch {
    		notify.SetNotifyES(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.Kafka {
    		notify.SetNotifyKafka(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.MQTT {
    		notify.SetNotifyMQTT(newCfg, k, args)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Oct 18 18:05:24 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  5. internal/config/notify/parse.go

    		}
    		if err = webhookArgs.Validate(); err != nil {
    			return nil, err
    		}
    		webhookTargets[k] = webhookArgs
    	}
    	return webhookTargets, nil
    }
    
    // DefaultESKVS - default KV config for Elasticsearch target
    var (
    	DefaultESKVS = config.KVS{
    		config.KV{
    			Key:   config.Enable,
    			Value: config.EnableOff,
    		},
    		config.KV{
    			Key:   target.ElasticURL,
    			Value: "",
    		},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 46.4K bytes
    - Viewed (0)
  6. cmd/config-current.go

    			Description:     "publish bucket notifications to Postgres databases",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.NotifyESSubSys,
    			Description:     "publish bucket notifications to Elasticsearch endpoints",
    			MultipleTargets: true,
    		},
    		config.HelpKV{
    			Key:             config.NotifyRedisSubSys,
    			Description:     "publish bucket notifications to Redis datastores",
    			MultipleTargets: true,
    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)
Back to top