mirror of
https://github.com/coder/coder.git
synced 2026-06-04 05:28:20 +00:00
65335bc7d4
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.
10 lines
236 B
Go
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"`
|
|
}
|