Skip to content

Commit eea089c

Browse files
authored
internal/output/webhook: allow user-configured timeout (#97)
1 parent 2969e28 commit eea089c

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

.changelog/97.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
webhook output: Allow user-configured timeouts.
3+
```

internal/command/root.go

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ func ExecuteContext(ctx context.Context) error {
7474
rootCmd.PersistentFlags().StringArrayVar(&opts.WebhookOptions.Headers, "webhook-header", nil, "webhook header to add to request (e.g. Header=Value)")
7575
rootCmd.PersistentFlags().StringVar(&opts.WebhookOptions.Password, "webhook-password", "", "webhook password for basic authentication")
7676
rootCmd.PersistentFlags().StringVar(&opts.WebhookOptions.Username, "webhook-username", "", "webhook username for basic authentication")
77+
rootCmd.PersistentFlags().DurationVar(&opts.WebhookOptions.Timeout, "webhook-timeout", time.Second, "webhook request timeout (zero is no timeout)")
7778

7879
// GCP Pubsub output flags.
7980
rootCmd.PersistentFlags().StringVar(&opts.GCPPubsubOptions.Project, "gcppubsub-project", "test", "GCP Pubsub project name")

internal/output/options.go

+5-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ type Options struct {
2626
}
2727

2828
type WebhookOptions struct {
29-
ContentType string // Content-Type header.
30-
Headers []string // Headers in Key=Value format.
31-
Username string // Basic auth username.
32-
Password string // Basic auth password.
29+
ContentType string // Content-Type header.
30+
Headers []string // Headers in Key=Value format.
31+
Username string // Basic auth username.
32+
Password string // Basic auth password.
33+
Timeout time.Duration // Timeout for request handling.
3334
}
3435

3536
type GCPPubsubOptions struct {

internal/output/webhook/webhook.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import (
1212
"net/http"
1313
"net/url"
1414
"strings"
15-
"time"
1615

1716
"github.com/elastic/stream/internal/output"
1817
)
@@ -31,8 +30,11 @@ func New(opts *output.Options) (output.Output, error) {
3130
return nil, fmt.Errorf("address must be a valid URL for webhook output: %w", err)
3231
}
3332

33+
if opts.Timeout < 0 {
34+
return nil, fmt.Errorf("timeout must not be negative: %v", opts.Timeout)
35+
}
3436
client := &http.Client{
35-
Timeout: time.Second,
37+
Timeout: opts.Timeout,
3638
Transport: &http.Transport{
3739
TLSClientConfig: &tls.Config{
3840
InsecureSkipVerify: opts.InsecureTLS,

internal/output/webhook/webhook_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import (
1111
"net/http"
1212
"net/http/httptest"
1313
"testing"
14+
"time"
1415

1516
"github.com/stretchr/testify/assert"
1617
"github.com/stretchr/testify/require"
@@ -57,6 +58,7 @@ func TestWebhook(t *testing.T) {
5758
},
5859
Username: username,
5960
Password: password,
61+
Timeout: time.Second,
6062
},
6163
})
6264
require.NoError(t, err)

0 commit comments

Comments
 (0)