diff options
| author | chrislu <chris.lu@gmail.com> | 2025-06-28 20:03:06 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2025-06-28 20:03:06 -0700 |
| commit | 1733d0ce68b4ef31edcb54ddbbf6070caa319f37 (patch) | |
| tree | e6f42836b375f4665efe6bc42ecf3b8340e7784a /telemetry/server/dashboard/dashboard.go | |
| parent | 166e36bcd35f30af5a7f2bd2ec7b7aa31777cbac (diff) | |
| download | seaweedfs-1733d0ce68b4ef31edcb54ddbbf6070caa319f37.tar.xz seaweedfs-1733d0ce68b4ef31edcb54ddbbf6070caa319f37.zip | |
remove features and deployments fields
Diffstat (limited to 'telemetry/server/dashboard/dashboard.go')
| -rw-r--r-- | telemetry/server/dashboard/dashboard.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/telemetry/server/dashboard/dashboard.go b/telemetry/server/dashboard/dashboard.go index 9a56c7f1b..f60021bba 100644 --- a/telemetry/server/dashboard/dashboard.go +++ b/telemetry/server/dashboard/dashboard.go @@ -123,10 +123,7 @@ func (h *Handler) ServeIndex(w http.ResponseWriter, r *http.Request) { <canvas id="osChart" width="400" height="200"></canvas> </div> - <div class="chart-container"> - <div class="chart-title">Deployment Types</div> - <canvas id="deploymentChart" width="400" height="200"></canvas> - </div> + <div class="chart-container"> <div class="chart-title">Volume Servers Over Time</div> @@ -178,8 +175,7 @@ func (h *Handler) ServeIndex(w http.ResponseWriter, r *http.Request) { // OS chart createPieChart('osChart', 'Operating System Distribution', stats.os_distribution || {}); - // Deployment chart - createPieChart('deploymentChart', 'Deployment Types', stats.deployments || {}); + // Server count over time if (metrics.dates && metrics.server_counts) { |
