Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for connection_string (0.23 sec)

  1. internal/event/target/postgresql.go

    )
    
    // PostgreSQLArgs - PostgreSQL target arguments.
    type PostgreSQLArgs struct {
    	Enable             bool      `json:"enable"`
    	Format             string    `json:"format"`
    	ConnectionString   string    `json:"connectionString"`
    	Table              string    `json:"table"`
    	Host               xnet.Host `json:"host"`     // default: localhost
    	Port               string    `json:"port"`     // default: 5432
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. internal/config/notify/legacy.go

    			Value: config.EnableOn,
    		},
    		config.KV{
    			Key:   target.PostgresFormat,
    			Value: cfg.Format,
    		},
    		config.KV{
    			Key:   target.PostgresConnectionString,
    			Value: cfg.ConnectionString,
    		},
    		config.KV{
    			Key:   target.PostgresTable,
    			Value: cfg.Table,
    		},
    		config.KV{
    			Key:   target.PostgresHost,
    			Value: cfg.Host.String(),
    		},
    		config.KV{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. internal/config/notify/parse.go

    		if cErr != nil {
    			return nil, cErr
    		}
    
    		psqlArgs := target.PostgreSQLArgs{
    			Enable:             enabled,
    			Format:             env.Get(formatEnv, kv.Get(target.PostgresFormat)),
    			ConnectionString:   env.Get(connectionStringEnv, kv.Get(target.PostgresConnectionString)),
    			Table:              env.Get(tableEnv, kv.Get(target.PostgresTable)),
    			QueueDir:           env.Get(queueDirEnv, kv.Get(target.PostgresQueueDir)),
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 47K bytes
    - Viewed (0)
Back to top