Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ type MeasurementDefinition struct {
AF int `json:"af"`
Interval int `json:"interval"`
Packets int `json:"packets"`
Size int `json:"size"`
PacketInterval int `json:"packet_interval"`
Target string `json:"target"`
Description string `json:"description"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,6 @@ func (c *Collector) configureMeasurements(ctx context.Context, locationMatches [
AF: 4,
Interval: int(samplingInterval.Seconds()),
Packets: 1,
Size: 1280,
PacketInterval: 1000, // Delay between packets; only matters when Packets > 1
Target: spec.TargetProbe.Address,
Description: description,
Expand Down
Loading