| 11 | ) |
| 12 | |
| 13 | type StatsBatcher struct { |
| 14 | Mu sync.Mutex |
| 15 | |
| 16 | Called int64 |
| 17 | LastTime time.Time |
| 18 | LastAgentID uuid.UUID |
| 19 | LastTemplateID uuid.UUID |
| 20 | LastUserID uuid.UUID |
| 21 | LastWorkspaceID uuid.UUID |
| 22 | LastStats *agentproto.Stats |
| 23 | LastUsage bool |
| 24 | } |
| 25 | |
| 26 | var _ workspacestats.Batcher = &StatsBatcher{} |
| 27 |
nothing calls this directly
no outgoing calls
no test coverage detected