Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for elasticsearch (0.25 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. docs/bucket/notifications/README.md

    MINIO_NOTIFY_ELASTICSEARCH_QUEUE_DIR    (path)               staging dir for undelivered messages e.g. '/home/events'
    MINIO_NOTIFY_ELASTICSEARCH_QUEUE_LIMIT  (number)             maximum limit for undelivered messages, defaults to '100000'
    MINIO_NOTIFY_ELASTICSEARCH_USERNAME     (string)             username for Elasticsearch basic-auth
    MINIO_NOTIFY_ELASTICSEARCH_PASSWORD     (string)             password for Elasticsearch basic-auth
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  4. 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)
  5. 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)
  6. 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)
  7. docs/config/README.md

    notify_mysql          publish bucket notifications to MySQL databases
    notify_postgres       publish bucket notifications to Postgres databases
    notify_elasticsearch  publish bucket notifications to Elasticsearch endpoints
    notify_redis          publish bucket notifications to Redis datastores
    ```
    
    ### Accessing configuration
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 11 21:48:54 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  8. go.sum

    github.com/eclipse/paho.mqtt.golang v1.4.3/go.mod h1:CSYvoAlsMkhYOXh/oKyxa8EcBci6dVkLCbo5tTC1RIE=
    github.com/elastic/go-elasticsearch/v7 v7.17.10 h1:TCQ8i4PmIJuBunvBS6bwT2ybzVFxxUhhltAs3Gyu1yo=
    github.com/elastic/go-elasticsearch/v7 v7.17.10/go.mod h1:OJ4wdbtDNk5g503kvlHLyErCgQwwzmDtaFC4XyOxXA4=
    github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 84.2K bytes
    - Viewed (0)
  9. 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)
  10. CREDITS

      You may add additional accurate notices of copyright ownership.
    
    ================================================================
    
    github.com/elastic/go-elasticsearch/v7
    https://github.com/elastic/go-elasticsearch/v7
    ----------------------------------------------------------------
                                     Apache License
                               Version 2.0, January 2004
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:31:35 GMT 2024
    - 1.6M bytes
    - Viewed (0)
Back to top