mirror of
https://github.com/nikdoof/vsphere-influxdb-go.git
synced 2025-12-19 13:39:21 +00:00
add vendoring with go dep
This commit is contained in:
59
vendor/github.com/influxdata/influxdb/stress/v2/statement/set.go
generated
vendored
Normal file
59
vendor/github.com/influxdata/influxdb/stress/v2/statement/set.go
generated
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
package statement
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strings"
|
||||
|
||||
"github.com/influxdata/influxdb/stress/v2/stress_client"
|
||||
)
|
||||
|
||||
// SetStatement set state variables for the test
|
||||
type SetStatement struct {
|
||||
Var string
|
||||
Value string
|
||||
|
||||
StatementID string
|
||||
|
||||
Tracer *stressClient.Tracer
|
||||
}
|
||||
|
||||
// SetID statisfies the Statement Interface
|
||||
func (i *SetStatement) SetID(s string) {
|
||||
i.StatementID = s
|
||||
}
|
||||
|
||||
// Run statisfies the Statement Interface
|
||||
func (i *SetStatement) Run(s *stressClient.StressTest) {
|
||||
i.Tracer = stressClient.NewTracer(make(map[string]string))
|
||||
d := stressClient.NewDirective(strings.ToLower(i.Var), strings.ToLower(i.Value), i.Tracer)
|
||||
switch d.Property {
|
||||
// Needs to be set on both StressTest and stressClient
|
||||
// Set the write percison for points generated
|
||||
case "precision":
|
||||
s.Precision = d.Value
|
||||
i.Tracer.Add(1)
|
||||
s.SendDirective(d)
|
||||
// Lives on StressTest
|
||||
// Set the date for the first point entered into the database
|
||||
case "startdate":
|
||||
s.Lock()
|
||||
s.StartDate = d.Value
|
||||
s.Unlock()
|
||||
// Lives on StressTest
|
||||
// Set the BatchSize for writes
|
||||
case "batchsize":
|
||||
s.Lock()
|
||||
s.BatchSize = parseInt(d.Value)
|
||||
s.Unlock()
|
||||
// All other variables live on stressClient
|
||||
default:
|
||||
i.Tracer.Add(1)
|
||||
s.SendDirective(d)
|
||||
}
|
||||
i.Tracer.Wait()
|
||||
}
|
||||
|
||||
// Report statisfies the Statement Interface
|
||||
func (i *SetStatement) Report(s *stressClient.StressTest) string {
|
||||
return fmt.Sprintf("SET %v = '%v'", i.Var, i.Value)
|
||||
}
|
||||
Reference in New Issue
Block a user