Skip to content

chore: unify activity into workspaceapps.StatsCollector #13355

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

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 8 additions & 44 deletions coderd/agentapi/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"github.com/coder/coder/v2/coderd/database/pubsub"
"github.com/coder/coder/v2/coderd/prometheusmetrics"
"github.com/coder/coder/v2/coderd/schedule"
"github.com/coder/coder/v2/codersdk"
"github.com/coder/coder/v2/coderd/workspaceapps"
)

type StatsBatcher interface {
Expand All @@ -34,6 +34,7 @@
TemplateScheduleStore *atomic.Pointer[schedule.TemplateScheduleStore]
AgentStatsRefreshInterval time.Duration
UpdateAgentMetricsFn func(ctx context.Context, labels prometheusmetrics.AgentMetricLabels, metrics []*agentproto.Stats_Metric)
StatsCollector workspaceapps.StatsCollector

TimeNowFn func() time.Time // defaults to dbtime.Now()
}
Expand Down Expand Up @@ -70,28 +71,6 @@
)

now := a.now()
if req.Stats.ConnectionCount > 0 {
var nextAutostart time.Time
if workspace.AutostartSchedule.String != "" {
templateSchedule, err := (*(a.TemplateScheduleStore.Load())).Get(ctx, a.Database, workspace.TemplateID)
// If the template schedule fails to load, just default to bumping
// without the next transition and log it.
if err != nil {
a.Log.Error(ctx, "failed to load template schedule bumping activity, defaulting to bumping by 60min",
slog.F("workspace_id", workspace.ID),
slog.F("template_id", workspace.TemplateID),
slog.Error(err),
)
} else {
next, allowed := schedule.NextAutostart(now, workspace.AutostartSchedule.String, templateSchedule)
if allowed {
nextAutostart = next
}
}
}
ActivityBumpWorkspace(ctx, a.Log.Named("activity_bump"), a.Database, workspace.ID, nextAutostart)
}

var errGroup errgroup.Group
errGroup.Go(func() error {
err := a.StatsBatcher.Add(now, workspaceAgent.ID, workspace.TemplateID, workspace.OwnerID, workspace.ID, req.Stats)
Expand All @@ -101,17 +80,6 @@
}
return nil
})
errGroup.Go(func() error {
// nolint:gocritic // (#13146) Will be moved soon as part of refactor.
err := a.Database.UpdateWorkspaceLastUsedAt(ctx, database.UpdateWorkspaceLastUsedAtParams{
ID: workspace.ID,
LastUsedAt: now,
})
if err != nil {
return xerrors.Errorf("update workspace LastUsedAt: %w", err)
}
return nil
})
if a.UpdateAgentMetricsFn != nil {
errGroup.Go(func() error {
user, err := a.Database.GetUserByID(ctx, workspace.OwnerID)
Expand All @@ -133,16 +101,12 @@
return nil, xerrors.Errorf("update stats in database: %w", err)
}

// Tell the frontend about the new agent report, now that everything is updated
a.publishWorkspaceAgentStats(ctx, workspace.ID)
// Flushing the stats collector will update last_used_at,
// dealine for the workspace, and will publish a workspace update event.

Check warning on line 105 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / lint

"dealine" should be "deadline".
a.StatsCollector.CollectAndFlush(ctx, workspaceapps.StatsReport{

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (macos-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-e2e-enterprise

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-e2e

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-pg

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / gen

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (ubuntu-latest)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go (windows-2022)

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)

Check failure on line 106 in coderd/agentapi/stats.go

View workflow job for this annotation

GitHub Actions / test-go-race

a.StatsCollector.CollectAndFlush undefined (type workspaceapps.StatsCollector has no field or method CollectAndFlush)
WorkspaceID: workspace.ID,
// TODO: fill out
})

return res, nil
}

func (a *StatsAPI) publishWorkspaceAgentStats(ctx context.Context, workspaceID uuid.UUID) {
err := a.Pubsub.Publish(codersdk.WorkspaceNotifyChannel(workspaceID), []byte{})
if err != nil {
a.Log.Warn(ctx, "failed to publish workspace agent stats",
slog.F("workspace_id", workspaceID), slog.Error(err))
}
}
2 changes: 1 addition & 1 deletion coderd/batchstats/batcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const (
)

// Batcher holds a buffer of agent stats and periodically flushes them to
// its configured store. It also updates the workspace's last used time.
// its configured store.
type Batcher struct {
store database.Store
log slog.Logger
Expand Down
3 changes: 2 additions & 1 deletion coderd/coderd.go
Original file line number Diff line number Diff line change
Expand Up @@ -1275,7 +1275,8 @@ type API struct {
healthCheckGroup *singleflight.Group[string, *healthsdk.HealthcheckReport]
healthCheckCache atomic.Pointer[healthsdk.HealthcheckReport]

statsBatcher *batchstats.Batcher
statsBatcher *batchstats.Batcher
statsCollector workspaceapps.StatsCollector

Acquirer *provisionerdserver.Acquirer
// dbRolluper rolls up template usage stats from raw agent and app
Expand Down
49 changes: 6 additions & 43 deletions coderd/workspaceagents.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
"github.com/coder/coder/v2/coderd/httpmw"
"github.com/coder/coder/v2/coderd/prometheusmetrics"
"github.com/coder/coder/v2/coderd/rbac/policy"
"github.com/coder/coder/v2/coderd/schedule"
"github.com/coder/coder/v2/coderd/workspaceapps"
"github.com/coder/coder/v2/codersdk"
"github.com/coder/coder/v2/codersdk/agentsdk"
"github.com/coder/coder/v2/codersdk/workspacesdk"
Expand Down Expand Up @@ -1167,35 +1167,6 @@ func (api *API) workspaceAgentReportStats(rw http.ResponseWriter, r *http.Reques
slog.F("payload", req),
)

if req.ConnectionCount > 0 {
var nextAutostart time.Time
if workspace.AutostartSchedule.String != "" {
templateSchedule, err := (*(api.TemplateScheduleStore.Load())).Get(ctx, api.Database, workspace.TemplateID)
// If the template schedule fails to load, just default to bumping without the next transition and log it.
if err != nil {
// There's nothing we can do if the query was canceled, the
// client most likely went away so we just return an internal
// server error.
if database.IsQueryCanceledError(err) {
httpapi.InternalServerError(rw, err)
return
}
api.Logger.Error(ctx, "failed to load template schedule bumping activity, defaulting to bumping by 60min",
slog.F("workspace_id", workspace.ID),
slog.F("template_id", workspace.TemplateID),
slog.Error(err),
)
} else {
next, allowed := schedule.NextAutostart(time.Now(), workspace.AutostartSchedule.String, templateSchedule)
if allowed {
nextAutostart = next
}
}
}
agentapi.ActivityBumpWorkspace(ctx, api.Logger.Named("activity_bump"), api.Database, workspace.ID, nextAutostart)
}

now := dbtime.Now()
protoStats := &agentproto.Stats{
ConnectionsByProto: req.ConnectionsByProto,
ConnectionCount: req.ConnectionCount,
Expand Down Expand Up @@ -1242,19 +1213,6 @@ func (api *API) workspaceAgentReportStats(rw http.ResponseWriter, r *http.Reques
}
return nil
})
if req.SessionCount() > 0 {
errGroup.Go(func() error {
// nolint:gocritic // (#13146) Will be moved soon as part of refactor.
err := api.Database.UpdateWorkspaceLastUsedAt(ctx, database.UpdateWorkspaceLastUsedAtParams{
ID: workspace.ID,
LastUsedAt: now,
})
if err != nil {
return xerrors.Errorf("can't update workspace LastUsedAt: %w", err)
}
return nil
})
}
if api.Options.UpdateAgentMetrics != nil {
errGroup.Go(func() error {
user, err := api.Database.GetUserByID(ctx, workspace.OwnerID)
Expand All @@ -1277,6 +1235,11 @@ func (api *API) workspaceAgentReportStats(rw http.ResponseWriter, r *http.Reques
return
}

api.statsCollector.CollectAndFlush(ctx, workspaceapps.StatsReport{
WorkspaceID: workspace.ID,
// TODO: fill out
})

httpapi.Write(ctx, rw, http.StatusOK, agentsdk.StatsResponse{
ReportInterval: api.AgentStatsRefreshInterval,
})
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package agentapi
package workspaceapps

import (
"context"
Expand Down Expand Up @@ -41,7 +41,6 @@ func ActivityBumpWorkspace(ctx context.Context, log slog.Logger, db database.Sto
// low priority operations fail first.
ctx, cancel := context.WithTimeout(ctx, time.Second*15)
defer cancel()
// nolint:gocritic // (#13146) Will be moved soon as part of refactor.
err := db.ActivityBumpWorkspace(ctx, database.ActivityBumpWorkspaceParams{
NextAutostart: nextAutostart.UTC(),
WorkspaceID: workspaceID,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package agentapi_test
package workspaceapps_test

import (
"database/sql"
Expand All @@ -8,12 +8,12 @@ import (
"github.com/google/uuid"

"cdr.dev/slog/sloggers/slogtest"
"github.com/coder/coder/v2/coderd/agentapi"
"github.com/coder/coder/v2/coderd/database"
"github.com/coder/coder/v2/coderd/database/dbgen"
"github.com/coder/coder/v2/coderd/database/dbtestutil"
"github.com/coder/coder/v2/coderd/database/dbtime"
"github.com/coder/coder/v2/coderd/util/ptr"
"github.com/coder/coder/v2/coderd/workspaceapps"
"github.com/coder/coder/v2/testutil"

"github.com/stretchr/testify/assert"
Expand Down Expand Up @@ -272,7 +272,7 @@ func Test_ActivityBumpWorkspace(t *testing.T) {

// Bump duration is measured from the time of the bump, so we measure from here.
start := dbtime.Now()
agentapi.ActivityBumpWorkspace(ctx, log, db, bld.WorkspaceID, nextAutostart(start))
workspaceapps.ActivityBumpWorkspace(ctx, log, db, bld.WorkspaceID, nextAutostart(start))
end := dbtime.Now()

// Validate our state after bump
Expand Down
83 changes: 80 additions & 3 deletions coderd/workspaceapps/stats.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,22 @@ package workspaceapps
import (
"context"
"sync"
"sync/atomic"
"time"

"github.com/google/uuid"
"golang.org/x/xerrors"

"cdr.dev/slog"

agentproto "github.com/coder/coder/v2/agent/proto"
"github.com/coder/coder/v2/coderd/database"
"github.com/coder/coder/v2/coderd/database/dbauthz"
"github.com/coder/coder/v2/coderd/database/dbtime"
"github.com/coder/coder/v2/coderd/database/pubsub"
"github.com/coder/coder/v2/coderd/schedule"
"github.com/coder/coder/v2/coderd/util/slice"
"github.com/coder/coder/v2/codersdk"
)

const (
Expand Down Expand Up @@ -59,8 +64,11 @@ var _ StatsReporter = (*StatsDBReporter)(nil)

// StatsDBReporter writes workspace app StatsReports to the database.
type StatsDBReporter struct {
db database.Store
batchSize int
db database.Store
pubsub pubsub.Pubsub
logger slog.Logger
templateScheduleStore *atomic.Pointer[schedule.TemplateScheduleStore]
batchSize int
}

// NewStatsDBReporter returns a new StatsDBReporter.
Expand Down Expand Up @@ -139,6 +147,42 @@ func (r *StatsDBReporter) Report(ctx context.Context, stats []StatsReport) error
return err
}

workspaces, err := tx.GetWorkspaces(ctx, database.GetWorkspacesParams{
WorkspaceIds: uniqueIDs,
})
if err != nil {
return xerrors.Errorf("getting workspaces: %w", err)
}

// TODO: This probably needs batching to handle larger deployments
for _, workspace := range workspaces {
var nextAutostart time.Time
if workspace.AutostartSchedule.String != "" {
templateSchedule, err := (*(r.templateScheduleStore.Load())).Get(ctx, r.db, workspace.TemplateID)
// If the template schedule fails to load, just default to bumping
// without the next transition and log it.
if err != nil {
r.logger.Error(ctx, "failed to load template schedule bumping activity, defaulting to bumping by 60min",
slog.F("workspace_id", workspace.ID),
slog.F("template_id", workspace.TemplateID),
slog.Error(err),
)
} else {
next, allowed := schedule.NextAutostart(dbtime.Now(), workspace.AutostartSchedule.String, templateSchedule)
if allowed {
nextAutostart = next
}
}
}
ActivityBumpWorkspace(ctx, r.logger.Named("activity_bump"), r.db, workspace.ID, nextAutostart)

err := r.pubsub.Publish(codersdk.WorkspaceNotifyChannel(workspace.ID), []byte{})
if err != nil {
r.logger.Warn(ctx, "failed to publish workspace agent stats",
slog.F("workspace_id", workspace.ID), slog.Error(err))
}
}

return nil
}, nil)
if err != nil {
Expand Down Expand Up @@ -193,7 +237,10 @@ type StatsCollectorOptions struct {
// RollupWindow is the window size for rolling up stats, session shorter
// than this will be rolled up and longer than this will be tracked
// individually.
RollupWindow time.Duration
RollupWindow time.Duration
DB database.Store
Pubsub pubsub.Pubsub
TemplateScheduleStore *atomic.Pointer[schedule.TemplateScheduleStore]

// Options for tests.
Flush <-chan chan<- struct{}
Expand Down Expand Up @@ -252,6 +299,36 @@ func (sc *StatsCollector) Collect(report StatsReport) {
sc.opts.Logger.Debug(sc.ctx, "collected workspace app stats", slog.F("report", report))
}

func (sc *StatsCollector) CollectAgentStat(ctx context.Context, now time.Time, agentID uuid.UUID, workspace database.Workspace, st *agentproto.Stats) error {
var nextAutostart time.Time
if workspace.AutostartSchedule.String != "" {
templateSchedule, err := (*(sc.opts.TemplateScheduleStore.Load())).Get(ctx, sc.opts.DB, workspace.TemplateID)
// If the template schedule fails to load, just default to bumping
// without the next transition and log it.
if err != nil {
sc.opts.Logger.Error(ctx, "failed to load template schedule bumping activity, defaulting to bumping by 60min",
slog.F("workspace_id", workspace.ID),
slog.F("template_id", workspace.TemplateID),
slog.Error(err),
)
} else {
next, allowed := schedule.NextAutostart(dbtime.Now(), workspace.AutostartSchedule.String, templateSchedule)
if allowed {
nextAutostart = next
}
}
}
ActivityBumpWorkspace(ctx, sc.opts.Logger.Named("activity_bump"), sc.opts.DB, workspace.ID, nextAutostart)

err := sc.opts.Pubsub.Publish(codersdk.WorkspaceNotifyChannel(workspace.ID), []byte{})
if err != nil {
sc.opts.Logger.Warn(ctx, "failed to publish workspace agent stats",
slog.F("workspace_id", workspace.ID), slog.Error(err))
}

return nil
}

// rollup performs stats rollup for sessions that fall within the
// configured rollup window. For sessions longer than the window,
// we report them individually.
Expand Down
Loading