2024-05-14 04:43:47 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Set the environment variables for the RELP server URL and optionally for the webhook URL
|
|
|
|
export LOGGER_RELP_URL="tcp://10.201.1.18:20514"
|
|
|
|
export LOGGER_WEBHOOK_URL="https://example.com/webhook"
|
2024-05-14 11:50:42 +00:00
|
|
|
export RELP_DEBUG=1
|
2024-05-14 04:43:47 +00:00
|
|
|
|
|
|
|
# Run the Go program
|
|
|
|
go run relp_log_trial.go
|