feat(stats): add unique user charts
This commit is contained in:
parent
2d993cd0d5
commit
24c70ec974
13 changed files with 327 additions and 127 deletions
|
|
@ -123,6 +123,7 @@ function metricColumns() {
|
|||
return {
|
||||
sessions: bigint({ mode: "number" }).notNull().default(0),
|
||||
requests: bigint({ mode: "number" }).notNull().default(0),
|
||||
unique_users: bigint({ mode: "number" }).notNull().default(0),
|
||||
input_tokens: bigint({ mode: "number" }).notNull().default(0),
|
||||
output_tokens: bigint({ mode: "number" }).notNull().default(0),
|
||||
reasoning_tokens: bigint({ mode: "number" }).notNull().default(0),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue