You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Launch an interactive Streamlit web app to select workspaces and projects from dropdown menus:
68
+
69
+
```shell
70
+
cometx admin usage-report --app
71
+
```
72
+
73
+
### Options
74
+
75
+
-**`--units {month,week,day,hour}`**: Time unit for grouping experiments (default: `month`)
76
+
-`month`: Group by month (YYYY-MM format)
77
+
-`week`: Group by ISO week (YYYY-WW format)
78
+
-`day`: Group by day (YYYY-MM-DD format)
79
+
-`hour`: Group by hour (YYYY-MM-DD-HH format)
80
+
81
+
-**`--max-experiments-per-chart N`**: Maximum number of workspaces/projects per chart (default: 100). If more workspaces/projects are provided, multiple charts will be generated.
82
+
83
+
-**`--no-open`**: Don't automatically open the generated PDF file after generation.
84
+
85
+
-**`--app`**: Launch interactive Streamlit web app instead of generating PDF.
# Generate a report grouped by day without auto-opening
100
+
cometx admin usage-report workspace --units day --no-open
101
+
102
+
# Launch interactive web app
103
+
cometx admin usage-report --app
104
+
```
105
+
106
+
### Output
107
+
108
+
The usage report generates a PDF file containing:
109
+
110
+
-**Summary statistics**: Total experiments, users, run times, GPU utilization
111
+
-**Experiment count charts**: Grouped by the specified time unit (month, week, day, or hour)
112
+
-**GPU utilization charts**: If GPU data is available for the experiments
113
+
-**GPU memory utilization charts**: If GPU data is available for the experiments
114
+
115
+
Multiple workspaces/projects are combined into a single chart with a legend. If more workspaces/projects are provided than the `--max-experiments-per-chart` limit, multiple charts will be generated.
116
+
117
+
When using the `--app` flag, an interactive web interface is launched where you can:
0 commit comments