Files
coder/scaletest/dynamicparameters/config.go
T
Spike Curtis 65335bc7d4 feat: add cli command scaletest dynamic-parameters (#20034)
part of https://github.com/coder/internal/issues/912

Adds CLI command `coder exp scaletest dynamic-parameters`

I've left out the configuration of tracing and timeouts for now. I think I want to do some refactoring of the scaletest CLI to make handling those flags take up less boiler plate.

I will add tracing and timeout flags in a follow up PR.
2025-10-07 21:53:59 +04:00

10 lines
236 B
Go

package dynamicparameters
import "github.com/google/uuid"
type Config struct {
TemplateVersion uuid.UUID `json:"template_version"`
Metrics *Metrics `json:"-"`
MetricLabelValues []string `json:"metric_label_values"`
}