Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

internal/telemetry: support DD_TELEMETRY_HEARTBEAT_INTERVAL #1475

Merged
merged 3 commits into from
Sep 22, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
41 changes: 34 additions & 7 deletions internal/telemetry/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ var (
}
// TODO: Default telemetry URL?
hostname string

defaultHeartbeatInterval = 60 // seconds
)

func init() {
Expand All @@ -73,6 +75,10 @@ type Client struct {
// How often to send batched requests. Defaults to 60s
SubmissionInterval time.Duration

// The interval for sending a heartbeat signal to the backend.
// Configurable with DD_TELEMETRY_HEARTBEAT_INTERVAL. Default 60s.
heartbeatInterval time.Duration

// e.g. "tracers", "profilers", "appsec"
Namespace Namespace

Expand Down Expand Up @@ -114,8 +120,10 @@ type Client struct {
// seqID is a sequence number used to order telemetry messages by
// the back end.
seqID int64
// t is used to schedule flushing outstanding messages
t *time.Timer
// flushT is used to schedule flushing outstanding messages
flushT *time.Timer
// heartbeatT is used to schedule heartbeat messages
heartbeatT *time.Timer
// requests hold all messages which don't need to be immediately sent
requests []*Request
// metrics holds un-sent metrics that will be aggregated the next time
Expand Down Expand Up @@ -195,7 +203,14 @@ func (c *Client) Start(integrations []Integration, configuration []Configuration
if c.SubmissionInterval == 0 {
c.SubmissionInterval = 60 * time.Second
}
c.t = time.AfterFunc(c.SubmissionInterval, c.backgroundFlush)
c.flushT = time.AfterFunc(c.SubmissionInterval, c.backgroundFlush)

heartbeat := internal.IntEnv("DD_TELEMETRY_HEARTBEAT_INTERVAL", defaultHeartbeatInterval)
if heartbeat < 1 || heartbeat > 3600 {
heartbeat = defaultHeartbeatInterval
katiehockman marked this conversation as resolved.
Show resolved Hide resolved
}
c.heartbeatInterval = time.Duration(heartbeat) * time.Second
c.heartbeatT = time.AfterFunc(c.heartbeatInterval, c.backgroundHeartbeat)
}

// Stop notifies the telemetry endpoint that the app is closing. All outstanding
Expand All @@ -208,7 +223,8 @@ func (c *Client) Stop() {
return
}
c.started = false
c.t.Stop()
c.flushT.Stop()
c.heartbeatT.Stop()
// close request types have no body
r := c.newRequest(RequestTypeAppClosing)
c.scheduleSubmit(r)
Expand Down Expand Up @@ -425,14 +441,25 @@ func (c *Client) scheduleSubmit(r *Request) {
c.requests = append(c.requests, r)
}

func (c *Client) backgroundHeartbeat() {
c.mu.Lock()
defer c.mu.Unlock()
if !c.started {
return
}
err := c.submit(c.newRequest(RequestTypeAppHeartbeat))
if err != nil {
c.log("heartbeat failed: %s", err)
}
c.heartbeatT.Reset(c.heartbeatInterval)
}

func (c *Client) backgroundFlush() {
c.mu.Lock()
defer c.mu.Unlock()
if !c.started {
return
}
r := c.newRequest(RequestTypeAppHeartbeat)
c.scheduleSubmit(r)
c.flush()
c.t.Reset(c.SubmissionInterval)
c.flushT.Reset(c.SubmissionInterval)
}
12 changes: 11 additions & 1 deletion internal/telemetry/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"encoding/json"
"net/http"
"net/http/httptest"
"os"
"reflect"
"sort"
"sync"
Expand All @@ -19,6 +20,9 @@ import (
)

func TestClient(t *testing.T) {
os.Setenv("DD_TELEMETRY_HEARTBEAT_INTERVAL", "1")
defer os.Unsetenv("DD_TELEMETRY_HEARTBEAT_INTERVAL")

heartbeat := make(chan struct{})

server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
Expand All @@ -43,7 +47,13 @@ func TestClient(t *testing.T) {
client.Start(nil, nil) // test idempotence
defer client.Stop()

<-heartbeat
timeout := time.After(30 * time.Second)
katiehockman marked this conversation as resolved.
Show resolved Hide resolved
select {
case <-timeout:
t.Fatal("Heartbeat took more than 30 seconds. Should have been ~1 second")
case <-heartbeat:
}

}

func TestMetrics(t *testing.T) {
Expand Down