summaryrefslogtreecommitdiff
path: root/direction/direction.go
diff options
context:
space:
mode:
Diffstat (limited to 'direction/direction.go')
-rw-r--r--direction/direction.go29
1 files changed, 14 insertions, 15 deletions
diff --git a/direction/direction.go b/direction/direction.go
index 3ef6585..865a273 100644
--- a/direction/direction.go
+++ b/direction/direction.go
@@ -23,19 +23,18 @@ import (
)
type Direction struct {
- DirectionLabel string
- SelfProbeDataLogger datalogger.DataLogger[probe.ProbeDataPoint]
- ForeignProbeDataLogger datalogger.DataLogger[probe.ProbeDataPoint]
- ThroughputDataLogger datalogger.DataLogger[rpm.ThroughputDataPoint]
- GranularThroughputDataLogger datalogger.DataLogger[rpm.GranularThroughputDataPoint]
- CreateLgdc func() lgc.LoadGeneratingConnection
- Lgcc lgc.LoadGeneratingConnectionCollection
- DirectionDebugging *debug.DebugWithPrefix
- ProbeDebugging *debug.DebugWithPrefix
- ThroughputStabilizerDebugging *debug.DebugWithPrefix
- ResponsivenessStabilizerDebugging *debug.DebugWithPrefix
- LgStabilizationCommunicationChannel chan rpm.ThroughputDataPoint
- ExtendedStatsEligible bool
- StableThroughput bool
- StableResponsiveness bool
+ DirectionLabel string
+ SelfProbeDataLogger datalogger.DataLogger[probe.ProbeDataPoint]
+ ForeignProbeDataLogger datalogger.DataLogger[probe.ProbeDataPoint]
+ ThroughputDataLogger datalogger.DataLogger[rpm.ThroughputDataPoint]
+ GranularThroughputDataLogger datalogger.DataLogger[rpm.GranularThroughputDataPoint]
+ CreateLgdc func() lgc.LoadGeneratingConnection
+ Lgcc lgc.LoadGeneratingConnectionCollection
+ DirectionDebugging *debug.DebugWithPrefix
+ ProbeDebugging *debug.DebugWithPrefix
+ ThroughputStabilizerDebugging *debug.DebugWithPrefix
+ ResponsivenessStabilizerDebugging *debug.DebugWithPrefix
+ ExtendedStatsEligible bool
+ StableThroughput bool
+ StableResponsiveness bool
}