Skip to content

Commit 3ad3508

Browse files
committed
Fix gen
1 parent 0f06b23 commit 3ad3508

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

agent/agent.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,6 @@ func (a *agent) startReportingConnectionStats(ctx context.Context) {
12721272
a.logger.Info(ctx, "skipping stat because nothing changed")
12731273
return
12741274
}
1275-
a.latestStat.Store(stats)
12761275

12771276
select {
12781277
case a.connStatsChan <- stats:

coderd/apidoc/docs.go

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/apidoc/swagger.json

Lines changed: 6 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/dbfake/databasefake.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ func (q *fakeQuerier) GetDeploymentWorkspaceAgentStats(_ context.Context, create
293293
for _, agentStat := range agentStatsCreatedAfter {
294294
stat.WorkspaceRxBytes += agentStat.RxBytes
295295
stat.WorkspaceTxBytes += agentStat.TxBytes
296-
latencies = append(latencies, float64(agentStat.ConnectionMedianLatencyMS))
296+
latencies = append(latencies, agentStat.ConnectionMedianLatencyMS)
297297
}
298298

299299
tryPercentile := func(fs []float64, p float64) float64 {

docs/api/general.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1186,12 +1186,12 @@ curl -X GET http://coder-server:8080/api/v2/deployment/stats \
11861186
11871187
```json
11881188
{
1189-
"aggregated_since": "string",
1189+
"aggregated_since": "2019-08-24T14:15:22Z",
11901190
"building_workspaces": 0,
1191-
"collected_at": "string",
1191+
"collected_at": "2019-08-24T14:15:22Z",
11921192
"failed_workspaces": 0,
11931193
"pending_workspaces": 0,
1194-
"refreshing_at": "string",
1194+
"refreshing_at": "2019-08-24T14:15:22Z",
11951195
"running_workspaces": 0,
11961196
"session_count_jetbrains": 0,
11971197
"session_count_reconnecting_pty": 0,

docs/api/schemas.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2931,12 +2931,12 @@ CreateParameterRequest is a structure used to create a new parameter value for a
29312931

29322932
```json
29332933
{
2934-
"aggregated_since": "string",
2934+
"aggregated_since": "2019-08-24T14:15:22Z",
29352935
"building_workspaces": 0,
2936-
"collected_at": "string",
2936+
"collected_at": "2019-08-24T14:15:22Z",
29372937
"failed_workspaces": 0,
29382938
"pending_workspaces": 0,
2939-
"refreshing_at": "string",
2939+
"refreshing_at": "2019-08-24T14:15:22Z",
29402940
"running_workspaces": 0,
29412941
"session_count_jetbrains": 0,
29422942
"session_count_reconnecting_pty": 0,

0 commit comments

Comments
 (0)