Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nsqd_address (0.04 sec)

  1. docs/bucket/notifications/README.md

    To update the configuration, use `mc admin config get` command to get the current configuration for `notify_nsq`.
    
    ```
    KEY:
    notify_nsq[:name]  publish bucket notifications to NSQ endpoints
    
    ARGS:
    nsqd_address*    (address)   NSQ server address e.g. '127.0.0.1:4150'
    topic*           (string)    NSQ topic
    tls              (on|off)    set to 'on' to enable TLS
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 84.2K bytes
    - Viewed (0)
  2. internal/config/notify/parse.go

    		}
    		queueDirEnv := target.EnvNSQQueueDir
    		if k != config.Default {
    			queueDirEnv = queueDirEnv + config.Default + k
    		}
    
    		nsqArgs := target.NSQArgs{
    			Enable:      enabled,
    			NSQDAddress: *nsqdAddress,
    			Topic:       env.Get(topicEnv, kv.Get(target.NSQTopic)),
    			QueueDir:    env.Get(queueDirEnv, kv.Get(target.NSQQueueDir)),
    			QueueLimit:  queueLimit,
    		}
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 47.5K bytes
    - Viewed (0)
Back to top