From 00a37ce6cc718a3070a196903a4c864b4dd26bbd Mon Sep 17 00:00:00 2001 From: Simone Basso Date: Thu, 30 Nov 2023 02:05:28 +0100 Subject: [PATCH] fix(minipipeline): change DNSDiff algorithm (#1407) We were running the algorithm on single IP addresses resolved by the probe against the set resolved by the control. This is incorrect, because we should compare to the whole set resolved by the probe. This fact is relevant because v0.4 says there's consistency if a single IP address or ASN resolved by the probe intersects with the corresponding control set. Conversely, our comparison required that each IP address resolved by the probe belonged to the control set of addresses or ASNs. This diff solves the problem. While there, remove DNSPossiblyInvalidAddrs. I have determined we need to run DNSDiff independently of bogons checks. Incidentally, the new DNSDiff code I am adding is straight from Web Connectivity v0.4, so we should be good. Part of https://github.com/ooni/probe/issues/2634 --- .../cmd/minipipeline/testdata/analysis.json | 1 - .../testdata/analysis_classic.json | 1 - .../minipipeline/testdata/observations.json | 12 -- .../testdata/observations_classic.json | 4 - internal/minipipeline/analysis.go | 84 ++---------- internal/minipipeline/dnsdiff.go | 63 +++++++++ internal/minipipeline/observation.go | 31 ----- internal/minipipeline/observation_test.go | 47 ------- .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 8 -- .../observations_classic.json | 4 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 12 -- .../observations_classic.json | 4 - .../analysis.json | 3 - .../analysis_classic.json | 3 - .../observations.json | 10 -- .../observations_classic.json | 4 - .../badSSLWithWrongServerName/analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 8 -- .../observations_classic.json | 4 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 8 -- .../observations_classic.json | 4 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 10 -- .../observations_classic.json | 6 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 8 -- .../observations_classic.json | 2 - .../generated/dnsBlockingBOGON/analysis.json | 5 +- .../dnsBlockingBOGON/analysis_classic.json | 5 +- .../dnsBlockingBOGON/observations.json | 10 -- .../observations_classic.json | 4 - .../dnsBlockingNXDOMAIN/analysis.json | 1 - .../dnsBlockingNXDOMAIN/analysis_classic.json | 1 - .../dnsBlockingNXDOMAIN/observations.json | 8 -- .../observations_classic.json | 2 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 10 -- .../observations_classic.json | 4 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 14 -- .../observations_classic.json | 6 - .../httpBlockingConnectionReset/analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 10 -- .../observations_classic.json | 6 - .../httpDiffWithConsistentDNS/analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 10 -- .../observations_classic.json | 6 - .../httpDiffWithInconsistentDNS/analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 14 -- .../observations_classic.json | 6 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 18 --- .../observations_classic.json | 10 -- .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 16 --- .../observations_classic.json | 8 -- .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 18 --- .../observations_classic.json | 10 -- .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 16 --- .../observations_classic.json | 8 -- .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 18 --- .../observations_classic.json | 10 -- .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 16 --- .../observations_classic.json | 8 -- .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 14 -- .../observations_classic.json | 6 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 18 --- .../observations_classic.json | 10 -- .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 20 --- .../observations_classic.json | 8 -- .../generated/successWithHTTP/analysis.json | 1 - .../successWithHTTP/analysis_classic.json | 1 - .../successWithHTTP/observations.json | 10 -- .../successWithHTTP/observations_classic.json | 6 - .../generated/successWithHTTPS/analysis.json | 1 - .../successWithHTTPS/analysis_classic.json | 1 - .../successWithHTTPS/observations.json | 8 -- .../observations_classic.json | 4 - .../tcpBlockingConnectTimeout/analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 8 -- .../observations_classic.json | 4 - .../analysis.json | 3 - .../analysis_classic.json | 3 - .../observations.json | 14 -- .../observations_classic.json | 6 - .../analysis.json | 1 - .../analysis_classic.json | 1 - .../observations.json | 8 -- .../observations_classic.json | 4 - .../analysis.json | 3 - .../analysis_classic.json | 3 - .../observations.json | 10 -- .../observations_classic.json | 4 - .../websiteDownNXDOMAIN/analysis.json | 1 - .../websiteDownNXDOMAIN/analysis_classic.json | 1 - .../websiteDownNXDOMAIN/observations.json | 6 - .../observations_classic.json | 2 - .../manual/dnsgoogle80/analysis.json | 1 - .../manual/dnsgoogle80/analysis_classic.json | 1 - .../manual/dnsgoogle80/observations.json | 40 ------ .../dnsgoogle80/observations_classic.json | 24 ---- .../manual/noipv6/analysis.json | 1 - .../manual/noipv6/analysis_classic.json | 1 - .../manual/noipv6/observations.json | 124 ------------------ .../manual/noipv6/observations_classic.json | 40 ------ .../manual/youtube/analysis.json | 1 - .../manual/youtube/analysis_classic.json | 1 - .../manual/youtube/observations.json | 104 --------------- .../manual/youtube/observations_classic.json | 40 ------ 140 files changed, 80 insertions(+), 1149 deletions(-) create mode 100644 internal/minipipeline/dnsdiff.go diff --git a/internal/cmd/minipipeline/testdata/analysis.json b/internal/cmd/minipipeline/testdata/analysis.json index 9334662739..c515d0f394 100644 --- a/internal/cmd/minipipeline/testdata/analysis.json +++ b/internal/cmd/minipipeline/testdata/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": 1, diff --git a/internal/cmd/minipipeline/testdata/analysis_classic.json b/internal/cmd/minipipeline/testdata/analysis_classic.json index 09f3ad41b3..66e46d2b10 100644 --- a/internal/cmd/minipipeline/testdata/analysis_classic.json +++ b/internal/cmd/minipipeline/testdata/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": 1, diff --git a/internal/cmd/minipipeline/testdata/observations.json b/internal/cmd/minipipeline/testdata/observations.json index 4d67215e0d..642f0b4900 100644 --- a/internal/cmd/minipipeline/testdata/observations.json +++ b/internal/cmd/minipipeline/testdata/observations.json @@ -34,8 +34,6 @@ "130.192.16.171" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -77,8 +75,6 @@ "130.192.16.171" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -124,8 +120,6 @@ "130.192.16.171" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -169,8 +163,6 @@ "130.192.16.171" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -214,8 +206,6 @@ "130.192.16.171" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -276,8 +266,6 @@ "130.192.16.171" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/cmd/minipipeline/testdata/observations_classic.json b/internal/cmd/minipipeline/testdata/observations_classic.json index 12f1da9b85..1f271e99be 100644 --- a/internal/cmd/minipipeline/testdata/observations_classic.json +++ b/internal/cmd/minipipeline/testdata/observations_classic.json @@ -37,8 +37,6 @@ "130.192.16.171" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -99,8 +97,6 @@ "130.192.16.171" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/analysis.go b/internal/minipipeline/analysis.go index 6065bd3d84..1a1b1d4bbc 100644 --- a/internal/minipipeline/analysis.go +++ b/internal/minipipeline/analysis.go @@ -13,7 +13,6 @@ func AnalyzeWebObservations(container *WebObservationsContainer) *WebAnalysis { analysis.ComputeDNSExperimentFailure(container) analysis.ComputeDNSTransactionsWithBogons(container) analysis.ComputeDNSTransactionsWithUnexpectedFailures(container) - analysis.ComputeDNSPossiblyInvalidAddrs(container) analysis.ComputeDNSPossiblyInvalidAddrsClassic(container) analysis.ComputeDNSPossiblyNonexistingDomains(container) @@ -57,19 +56,13 @@ type WebAnalysis struct { // not related to the domain we're querying for. DNSTransactionsWithUnexpectedFailures optional.Value[map[int64]bool] - // DNSPossiblyInvalidAddrs contains the addresses that are not valid for the + // DNSPossiblyInvalidAddrsClassic contains the addresses that are not valid for the // domain. An addres is valid for the domain if: // - // 1. we can TLS handshake with the expected SNI using this address; or + // 1. the address was resolved by the TH; or // - // 2. the address was resolved by the TH; or - // - // 3. the address ASN belongs to the set of ASNs obtained by mapping + // 2. the address ASN belongs to the set of ASNs obtained by mapping // addresses resolved by the TH to their corresponding ASN. - DNSPossiblyInvalidAddrs optional.Value[map[string]bool] - - // DNSPossiblyInvalidAddrsClassic is like DNSPossiblyInvalidAddrs but does - // not use TLS to validate the IP addresses. DNSPossiblyInvalidAddrsClassic optional.Value[map[string]bool] // DNSPossiblyNonexistingDomains lists all the domains for which both @@ -255,67 +248,6 @@ func (wa *WebAnalysis) ComputeDNSTransactionsWithUnexpectedFailures(c *WebObserv wa.DNSTransactionsWithUnexpectedFailures = optional.Some(state) } -// ComputeDNSPossiblyInvalidAddrs computes the DNSPossiblyInvalidAddrs field. -func (wa *WebAnalysis) ComputeDNSPossiblyInvalidAddrs(c *WebObservationsContainer) { - // Implementation note: in the case in which DoH returned answers, here - // it still feels okay to consider them. We should avoid flagging DoH - // failures as measurement failures but if DoH returns us some unexpected - // even-non-bogon addr, it seems worth flagging for now. - // - // See https://github.com/ooni/probe/issues/2274 - - var state map[string]bool - - // pass 1: insert candidates into the state map - for _, obs := range c.KnownTCPEndpoints { - addr := obs.IPAddress.Unwrap() - - // skip the comparison if we don't have info about matching - if obs.MatchWithControlIPAddress.IsNone() || obs.MatchWithControlIPAddressASN.IsNone() { - continue - } - - // flip state from None to empty when we see the first couple of - // (probe, th) failures allowing us to perform a comparison - if state == nil { - state = make(map[string]bool) - } - - // an address is suspicious if we have information regarding its potential - // matching with TH info and we know it does not match - if !obs.MatchWithControlIPAddress.Unwrap() && !obs.MatchWithControlIPAddressASN.Unwrap() { - state[addr] = true - continue - } - } - - // pass 2: remove IP addresses we could validate using TLS handshakes - // - // we need to perform this second step because the order with which we walk - // through c.KnownTCPEndpoints is not fixed _and_ in any case, there is no - // guarantee that we'll observe 80/tcp entries _before_ 443/tcp ones. So, by - // applying this algorithm as a second step, we ensure that we're always - // able to remove TLS-validate addresses from the "bad" set. - for _, obs := range c.KnownTCPEndpoints { - addr := obs.IPAddress.Unwrap() - - // we cannot do much if we don't have TLS handshake information - if obs.TLSHandshakeFailure.IsNone() { - continue - } - - // we should not modify the state if the TLS handshake failed - if obs.TLSHandshakeFailure.Unwrap() != "" { - continue - } - - delete(state, addr) - } - - // note that optional.Some constructs None if state is nil - wa.DNSPossiblyInvalidAddrs = optional.Some(state) -} - // ComputeDNSPossiblyInvalidAddrsClassic computes the DNSPossiblyInvalidAddrsClassic field. func (wa *WebAnalysis) ComputeDNSPossiblyInvalidAddrsClassic(c *WebObservationsContainer) { // Implementation note: in the case in which DoH returned answers, here @@ -331,7 +263,7 @@ func (wa *WebAnalysis) ComputeDNSPossiblyInvalidAddrsClassic(c *WebObservationsC addr := obs.IPAddress.Unwrap() // skip the comparison if we don't have info about matching - if obs.MatchWithControlIPAddress.IsNone() || obs.MatchWithControlIPAddressASN.IsNone() { + if obs.DNSResolvedAddrs.IsNone() || obs.ControlDNSResolvedAddrs.IsNone() { continue } @@ -341,9 +273,15 @@ func (wa *WebAnalysis) ComputeDNSPossiblyInvalidAddrsClassic(c *WebObservationsC state = make(map[string]bool) } + measurement := obs.DNSResolvedAddrs.Unwrap() + control := obs.ControlDNSResolvedAddrs.Unwrap() + + ipAddrIntersection := DNSDiffFindCommonIPAddressIntersection(measurement, control) + asnIntersection := DNSDiffFindCommonASNsIntersection(measurement, control) + // an address is suspicious if we have information regarding its potential // matching with TH info and we know it does not match - if !obs.MatchWithControlIPAddress.Unwrap() && !obs.MatchWithControlIPAddressASN.Unwrap() { + if ipAddrIntersection.Len() <= 0 && asnIntersection.Len() <= 0 { state[addr] = true continue } diff --git a/internal/minipipeline/dnsdiff.go b/internal/minipipeline/dnsdiff.go new file mode 100644 index 0000000000..7f7c5fc1fe --- /dev/null +++ b/internal/minipipeline/dnsdiff.go @@ -0,0 +1,63 @@ +package minipipeline + +import "github.com/ooni/probe-cli/v3/internal/geoipx" + +// DNSDiffFindCommonIPAddressIntersection returns the set of IP addresses that +// belong to both the measurement and the control sets. +func DNSDiffFindCommonIPAddressIntersection(measurement, control Set[string]) Set[string] { + const ( + inMeasurement = 1 << 0 + inControl = 1 << 1 + inBoth = inMeasurement | inControl + ) + + ipmap := make(map[string]int) + for _, ipAddr := range measurement.Keys() { + ipmap[ipAddr] |= inMeasurement + } + for _, ipAddr := range control.Keys() { + ipmap[ipAddr] |= inControl + } + + state := NewSet[string]() + for key, value := range ipmap { + // just in case an empty string slipped through + if key != "" && (value&inBoth) == inBoth { + state.Add(key) + } + } + + return state +} + +// DNSDiffFindCommonIPAddressIntersection returns the set of ASNs that belong to both the set of ASNs +// obtained from the measurement and the one obtained from the control. +func DNSDiffFindCommonASNsIntersection(measurement, control Set[string]) Set[int64] { + const ( + inMeasurement = 1 << 0 + inControl = 1 << 1 + inBoth = inMeasurement | inControl + ) + + asnmap := make(map[int64]int) + for _, ipAddr := range measurement.Keys() { + if asn, _, err := geoipx.LookupASN(ipAddr); err == nil && asn > 0 { + asnmap[int64(asn)] |= inMeasurement + } + } + for _, ipAddr := range control.Keys() { + if asn, _, err := geoipx.LookupASN(ipAddr); err == nil && asn > 0 { + asnmap[int64(asn)] |= inControl + } + } + + state := NewSet[int64]() + for key, value := range asnmap { + // zero means that ASN lookup failed + if key != 0 && (value&inBoth) == inBoth { + state.Add(key) + } + } + + return state +} diff --git a/internal/minipipeline/observation.go b/internal/minipipeline/observation.go index 001c69ff27..a9b4b317b1 100644 --- a/internal/minipipeline/observation.go +++ b/internal/minipipeline/observation.go @@ -6,7 +6,6 @@ import ( "net/url" "strconv" - "github.com/ooni/probe-cli/v3/internal/geoipx" "github.com/ooni/probe-cli/v3/internal/measurexlite" "github.com/ooni/probe-cli/v3/internal/model" "github.com/ooni/probe-cli/v3/internal/netxlite" @@ -205,13 +204,6 @@ type WebObservation struct { // ControlTCPConnectFailure is the control's TCP connect failure. ControlTCPConnectFailure optional.Value[string] - // MatchWithControlIPAddress is true if also the control resolved this IP address. - MatchWithControlIPAddress optional.Value[bool] - - // MatchWithControlIPAddressASN is true if the ASN associated to IPAddress - // is one of the ASNs obtained by mapping the TH-resolved IP addresses to ASNs. - MatchWithControlIPAddressASN optional.Value[bool] - // ControlTLSHandshakeFailure is the control's TLS handshake failure. ControlTLSHandshakeFailure optional.Value[string] @@ -465,15 +457,6 @@ func (c *WebObservationsContainer) controlMatchDNSLookupResults(inputDomain stri thAddrMap[addr] = true } - // (re)map out all the ASNs discovered by the TH using the same ASN - // database used to build the probe's ASN mapping - thASNMap := make(map[int64]bool) - for _, addr := range resp.DNS.Addrs { - if asn, _, err := geoipx.LookupASN(addr); err == nil && asn != 0 { - thASNMap[int64(asn)] = true - } - } - // walk through the list of known TCP observations for _, obs := range c.KnownTCPEndpoints { // obtain the domain from which we obtained the endpoint's address @@ -488,8 +471,6 @@ func (c *WebObservationsContainer) controlMatchDNSLookupResults(inputDomain stri obs.ControlDNSDomain = optional.Some(inputDomain) obs.ControlDNSLookupFailure = optional.Some(utilsStringPointerToString(resp.DNS.Failure)) obs.ControlDNSResolvedAddrs = optional.Some(NewSet(resp.DNS.Addrs...)) - obs.MatchWithControlIPAddress = optional.Some(true) - obs.MatchWithControlIPAddressASN = optional.Some(true) continue } @@ -509,18 +490,6 @@ func (c *WebObservationsContainer) controlMatchDNSLookupResults(inputDomain stri // register the resolved IP addresses obs.ControlDNSResolvedAddrs = optional.Some(NewSet(resp.DNS.Addrs...)) - - // compute whether also the TH observed this addr - obs.MatchWithControlIPAddress = optional.Some(thAddrMap[addr]) - - // cannot continue unless we know the probe's ASN - ourASN := obs.IPAddressASN.UnwrapOr(0) - if ourASN <= 0 { - continue - } - - // register whether there is matching in terms of the ASNs - obs.MatchWithControlIPAddressASN = optional.Some(thASNMap[ourASN]) } } diff --git a/internal/minipipeline/observation_test.go b/internal/minipipeline/observation_test.go index 8643e9314d..c39528d226 100644 --- a/internal/minipipeline/observation_test.go +++ b/internal/minipipeline/observation_test.go @@ -115,53 +115,6 @@ func TestWebObservationsContainerIngestHTTPRoundTripEvents(t *testing.T) { } func TestWebObservationsContainerIngestControlMessages(t *testing.T) { - t.Run("we don't set MatchWithControlIPAddressASN when we don't have probe ASN info", func(t *testing.T) { - container := &WebObservationsContainer{ - DNSLookupFailures: []*WebObservation{}, - KnownTCPEndpoints: map[int64]*WebObservation{ - 1: { - DNSDomain: optional.Some("dns.google"), - IPAddress: optional.Some("8.8.8.8"), - IPAddressASN: optional.None[int64](), // no ASN info! - EndpointTransactionID: optional.Some(int64(1)), - EndpointPort: optional.Some("443"), - EndpointAddress: optional.Some("8.8.8.8:443"), - }, - }, - knownIPAddresses: map[string]*WebObservation{}, - } - - thRequest := &model.THRequest{ - HTTPRequest: "https://dns.google/", - } - - thResponse := &model.THResponse{ - DNS: model.THDNSResult{ - Failure: nil, - Addrs: []string{"8.8.8.8"}, - }, - } - - if err := container.IngestControlMessages(thRequest, thResponse); err != nil { - t.Fatal(err) - } - - entry := container.KnownTCPEndpoints[1] - - // we should have set MatchWithControlIPAddress - if entry.MatchWithControlIPAddress.IsNone() { - t.Fatal("MatchWithControlIPAddress is not set") - } - if entry.MatchWithControlIPAddress.Unwrap() == false { - t.Fatal("MatchWithControlIPAddress is not true") - } - - // we should not have set MatchWithControlIPAddressASN - if !entry.MatchWithControlIPAddressASN.IsNone() { - t.Fatal("MatchWithControlIPAddressASN should not be set") - } - }) - t.Run("we don't save TLS handshake failures when the SNI is different", func(t *testing.T) { container := &WebObservationsContainer{ DNSLookupFailures: []*WebObservation{}, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/analysis.json index 645ca821a1..2fd41d129e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/analysis_classic.json index 665f445156..d25701e59e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/observations.json index e08dafade2..5673325432 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/observations.json @@ -34,8 +34,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "ssl_invalid_certificate", "ControlHTTPFailure": "unknown_error", "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/observations_classic.json index 5eb2d4f85c..95bdfacba1 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithExpiredCertificate/observations_classic.json @@ -37,8 +37,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "ssl_invalid_certificate", "ControlHTTPFailure": "unknown_error", "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/analysis.json index 645ca821a1..2fd41d129e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/analysis_classic.json index 665f445156..d25701e59e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/observations.json index cac2088eaf..eb5743877a 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/observations.json @@ -34,8 +34,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -77,8 +75,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -124,8 +120,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -169,8 +163,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -214,8 +206,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -261,8 +251,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "ssl_unknown_authority", "ControlHTTPFailure": "unknown_error", "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/observations_classic.json index 4479a5c016..f355b029e4 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithConsistentDNS/observations_classic.json @@ -37,8 +37,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "ssl_unknown_authority", "ControlHTTPFailure": "unknown_error", "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/analysis.json index fb789db74f..6f69d94650 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/analysis.json @@ -2,9 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": { - "104.154.89.105": true - }, "DNSPossiblyInvalidAddrsClassic": { "104.154.89.105": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/analysis_classic.json index 40c85462e4..9a9c1fb435 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/analysis_classic.json @@ -2,9 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": { - "104.154.89.105": true - }, "DNSPossiblyInvalidAddrsClassic": { "104.154.89.105": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/observations.json index c24f8159c2..04af571446 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "ssl_unknown_authority", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -226,8 +218,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/observations_classic.json index 864373336b..79460d68cb 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithUnknownAuthorityWithInconsistentDNS/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "ssl_unknown_authority", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/analysis.json index 645ca821a1..2fd41d129e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/analysis_classic.json index 665f445156..d25701e59e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/observations.json index ee24653ce3..d8556378cb 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/observations.json @@ -34,8 +34,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "ssl_invalid_hostname", "ControlHTTPFailure": "unknown_error", "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/observations_classic.json index 9022233944..1f2cb7ddbe 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/badSSLWithWrongServerName/observations_classic.json @@ -37,8 +37,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "104.154.89.105" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "ssl_invalid_hostname", "ControlHTTPFailure": "unknown_error", "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/analysis.json index 0c5a281502..12887a7431 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": null, "DNSPossiblyInvalidAddrsClassic": null, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/analysis_classic.json index 0c5a281502..12887a7431 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": null, "DNSPossiblyInvalidAddrsClassic": null, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/observations.json index 3860de2120..baac735c39 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/observations.json @@ -32,8 +32,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -77,8 +75,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -120,8 +116,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -170,8 +164,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/observations_classic.json index cf3fb0f5fa..b158d8a38f 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPSWebsite/observations_classic.json @@ -35,8 +35,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -85,8 +83,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/analysis.json index 8487f963a4..db84658a5b 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": null, "DNSPossiblyInvalidAddrsClassic": null, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/analysis_classic.json index 8487f963a4..db84658a5b 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": null, "DNSPossiblyInvalidAddrsClassic": null, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/observations.json index 02d6fa1e0d..05612f013f 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/observations.json @@ -32,8 +32,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -77,8 +75,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -120,8 +116,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -170,8 +164,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -213,8 +205,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/observations_classic.json index b6c76fba51..f65f42f640 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/controlFailureWithSuccessfulHTTPWebsite/observations_classic.json @@ -35,8 +35,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -85,8 +83,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -128,8 +124,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/analysis.json index 658fc6ef45..e9364d8482 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/analysis.json @@ -4,7 +4,6 @@ "DNSTransactionsWithUnexpectedFailures": { "1": true }, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": 1, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/analysis_classic.json index aea07fe5f6..d8708dab32 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/analysis_classic.json @@ -4,7 +4,6 @@ "DNSTransactionsWithUnexpectedFailures": { "1": true }, - "DNSPossiblyInvalidAddrs": null, "DNSPossiblyInvalidAddrsClassic": null, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/observations.json index a98218bc82..3a8cd67722 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -77,8 +75,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -124,8 +120,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -176,8 +170,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/observations_classic.json index 904566ed3a..e553ea5665 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingAndroidDNSCacheNoData/observations_classic.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/analysis.json index a0e5bde434..3239ad1847 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/analysis.json @@ -4,8 +4,9 @@ "1": true }, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, - "DNSPossiblyInvalidAddrsClassic": {}, + "DNSPossiblyInvalidAddrsClassic": { + "10.10.34.35": true + }, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": 1, "HTTPDiffStatusCodeMatch": true, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/analysis_classic.json index e0189bb664..62bf6f4786 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/analysis_classic.json @@ -4,8 +4,9 @@ "1": true }, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": null, - "DNSPossiblyInvalidAddrsClassic": null, + "DNSPossiblyInvalidAddrsClassic": { + "10.10.34.35": true + }, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, "HTTPDiffStatusCodeMatch": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/observations.json index 1ae36c4d1b..3f687b3ca3 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -178,8 +172,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -228,8 +220,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/observations_classic.json index 8bce5b9013..6683e1b153 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingBOGON/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/analysis.json index 3efa3eeb31..50e6cbaf1a 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/analysis.json @@ -4,7 +4,6 @@ "DNSTransactionsWithUnexpectedFailures": { "2": true }, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": 1, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/analysis_classic.json index c85bc4fd59..08028fad08 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/analysis_classic.json @@ -4,7 +4,6 @@ "DNSTransactionsWithUnexpectedFailures": { "2": true }, - "DNSPossiblyInvalidAddrs": null, "DNSPossiblyInvalidAddrsClassic": null, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/observations.json index f17a7711f4..43ccbfad9e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -77,8 +75,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -124,8 +120,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -176,8 +170,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/observations_classic.json index 15cbe8cf94..3b10fb2f2b 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsBlockingNXDOMAIN/observations_classic.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/analysis.json index e354181f11..bc84a24b72 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": { "130.192.182.17": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/analysis_classic.json index fa2b98e8d5..ba60bd5d8e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": { "130.192.182.17": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/observations.json index 9a40e0b1ff..69fe55f9bb 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -178,8 +172,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -226,8 +218,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/observations_classic.json index 495c48b3c8..83cf0b6c6b 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPSURL/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -89,8 +87,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/analysis.json index 78242ec3c3..5ecb510b45 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": { "130.192.182.17": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/analysis_classic.json index 5beca27ae1..bb6d8db6fd 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": { "130.192.182.17": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/observations.json index 4a6b0d15a1..6e1eee7974 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -177,8 +171,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -227,8 +219,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -275,8 +265,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -323,8 +311,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/observations_classic.json index cb4a976390..ce6acbb7c4 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/dnsHijackingToProxyWithHTTPURL/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -88,8 +86,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -138,8 +134,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/analysis.json index aa25108b2e..1cf535e65b 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/analysis_classic.json index 9c30d0ab05..a109350ab8 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/observations.json index da6ade0329..e8251a5ca0 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -223,8 +215,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/observations_classic.json index 3d93cee669..d971599eb9 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpBlockingConnectionReset/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -134,8 +130,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/analysis.json index 28aea62ea2..462a3df64f 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": 0.12263535551206783, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/analysis_classic.json index a5542a6434..f643016c09 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": 0.12263535551206783, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/observations.json index 54c7487caf..7ed6e5b777 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -223,8 +215,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/observations_classic.json index c2cd1c8862..60094bb742 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithConsistentDNS/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -134,8 +130,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/analysis.json index 5e6ac9477e..7eb84236d8 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": { "130.192.182.17": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/analysis_classic.json index cf9867adea..2e707b9716 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": { "130.192.182.17": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/observations.json index 73739d5ad8..fad3b1cd3a 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -223,8 +215,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -271,8 +261,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -319,8 +307,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/observations_classic.json index 9f8b7b64ca..a294ff2e19 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/httpDiffWithInconsistentDNS/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -134,8 +130,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/analysis.json index 9184905c6f..35d27d35f7 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/analysis_classic.json index c4eea5ab08..d097b23413 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/observations.json index c2f987e280..2eec0a429c 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -75,8 +73,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -122,8 +118,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -167,8 +161,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -210,8 +202,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -253,8 +243,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -304,8 +292,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -352,8 +338,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -400,8 +384,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/observations_classic.json index ecfdea13d1..3470d4cfca 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTP/observations_classic.json @@ -37,8 +37,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -80,8 +78,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -131,8 +127,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -179,8 +173,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -227,8 +219,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/analysis.json index e9c40ca3b6..8721981fa2 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/analysis_classic.json index bf7695d42c..edcaada891 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/observations.json index 1400fd6189..96dc2ad323 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -75,8 +73,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -122,8 +118,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -167,8 +161,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -210,8 +202,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -253,8 +243,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -304,8 +292,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -352,8 +338,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/observations_classic.json index e9f3309467..62393c0976 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionRefusedForHTTPS/observations_classic.json @@ -37,8 +37,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -80,8 +78,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -131,8 +127,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -179,8 +173,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/analysis.json index d7909752df..90102b6dd5 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/analysis_classic.json index 5c05bf74a9..e0a4a0a0c9 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/observations.json index 2489d9420a..198acee0ae 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -75,8 +73,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -122,8 +118,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -167,8 +161,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -210,8 +202,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -253,8 +243,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -304,8 +292,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -352,8 +338,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -400,8 +384,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/observations_classic.json index 34e5701f6d..56487d3809 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTP/observations_classic.json @@ -37,8 +37,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -80,8 +78,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -131,8 +127,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -179,8 +173,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -227,8 +219,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/analysis.json index e9c40ca3b6..8721981fa2 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/analysis_classic.json index bf7695d42c..edcaada891 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/observations.json index 91e185caed..85a038c63b 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -75,8 +73,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -122,8 +118,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -167,8 +161,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -210,8 +202,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -253,8 +243,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -304,8 +292,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -352,8 +338,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/observations_classic.json index b32ae36b21..2352158021 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenConnectionResetForHTTPS/observations_classic.json @@ -37,8 +37,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -80,8 +78,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -131,8 +127,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -179,8 +173,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/analysis.json index d7909752df..90102b6dd5 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/analysis_classic.json index 5c05bf74a9..e0a4a0a0c9 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/observations.json index 92a6a4f176..ace6a89799 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -75,8 +73,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -122,8 +118,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -167,8 +161,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -210,8 +202,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -253,8 +243,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -304,8 +292,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -352,8 +338,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -400,8 +384,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/observations_classic.json index 634c596c37..77913f61c8 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTP/observations_classic.json @@ -37,8 +37,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -80,8 +78,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -131,8 +127,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -179,8 +173,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -227,8 +219,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/analysis.json index e9c40ca3b6..8721981fa2 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/analysis_classic.json index bf7695d42c..edcaada891 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/observations.json index 583cc8c5bf..d54c9cc976 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -75,8 +73,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -122,8 +118,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -167,8 +161,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -210,8 +202,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -253,8 +243,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -304,8 +292,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -352,8 +338,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/observations_classic.json index 3435d853c7..ccfc81ba91 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenEOFForHTTPS/observations_classic.json @@ -37,8 +37,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -80,8 +78,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -131,8 +127,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -179,8 +173,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/analysis.json index c8957602bf..5e845f3644 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/analysis_classic.json index 8729351933..c1b155f5ad 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/observations.json index 998c77b774..97e8ec1c94 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -75,8 +73,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -116,8 +112,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -157,8 +151,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -204,8 +196,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -249,8 +239,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -300,8 +288,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/observations_classic.json index d9b20ecef8..2acc0a9e21 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenNXDOMAIN/observations_classic.json @@ -32,8 +32,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -79,8 +77,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -130,8 +126,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/analysis.json index d7909752df..90102b6dd5 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/analysis_classic.json index 5c05bf74a9..e0a4a0a0c9 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/observations.json index 6bf8477dfb..4972baef8d 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -75,8 +73,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -122,8 +118,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -167,8 +161,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -210,8 +202,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -253,8 +243,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -304,8 +292,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -352,8 +338,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -400,8 +384,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/observations_classic.json index 7339854eba..b535259486 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTP/observations_classic.json @@ -37,8 +37,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -80,8 +78,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -131,8 +127,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -179,8 +173,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -227,8 +219,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/analysis.json index 1579b41b8f..dfe5a25464 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/analysis_classic.json index e8135465b9..0284f3e80f 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/observations.json index 48ec29bc12..b2efd97836 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/observations.json @@ -34,8 +34,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -77,8 +75,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -118,8 +114,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -165,8 +159,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -210,8 +202,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -255,8 +245,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -298,8 +286,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -341,8 +327,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -392,8 +376,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -440,8 +422,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/observations_classic.json index 31840b8f9b..9ac8f44278 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/redirectWithConsistentDNSAndThenTimeoutForHTTPS/observations_classic.json @@ -37,8 +37,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -80,8 +78,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -131,8 +127,6 @@ "67.199.248.11" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -179,8 +173,6 @@ "ControlDNSLookupFailure": null, "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/analysis.json index c5c8800b7b..6494cc85e7 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": 1, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/analysis_classic.json index 10ca8b2570..337ffb7911 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": 1, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/observations.json index 4c0528ea4f..5bdef978fa 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -178,8 +172,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -228,8 +220,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/observations_classic.json index af9f16224f..abfdc65502 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTP/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -89,8 +87,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -139,8 +135,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/analysis.json index 5eb6873982..a4f6f1dda4 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": 1, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/analysis_classic.json index 8be3464345..2cbe622f8e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": 1, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/observations.json index 7ff7fef6aa..c5cfba694e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -178,8 +172,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/observations_classic.json index b4a4357277..134ad2a2f5 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/successWithHTTPS/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -89,8 +87,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/analysis.json index 6de4e4a651..b82d596b09 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/analysis_classic.json index 74934b2de4..f0bc3eff8e 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/observations.json index d4299ccadd..30e810ce69 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/observations_classic.json index 7215a52748..34a160b44f 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectTimeout/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/analysis.json index 1039206d4d..ecffee21d5 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/analysis.json @@ -2,9 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": { - "83.224.65.41": true - }, "DNSPossiblyInvalidAddrsClassic": { "83.224.65.41": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/analysis_classic.json index 49660ca264..1e477e3eab 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/analysis_classic.json @@ -2,9 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": { - "83.224.65.41": true - }, "DNSPossiblyInvalidAddrsClassic": { "83.224.65.41": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/observations.json index 132080093b..12d700428b 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -223,8 +215,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "connection_refused_error", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -276,8 +266,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -324,8 +312,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/observations_classic.json index 7b81e85eac..8b9fdf03df 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tcpBlockingConnectionRefusedWithInconsistentDNS/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -134,8 +130,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "connection_refused_error", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/analysis.json index 7c46aad0a5..da174e204a 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": {}, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/analysis_classic.json index 9e7e0e20d7..701f443dd3 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/observations.json index 2bc1264e5c..b2fb2037cc 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/observations_classic.json index 85129333b2..6f45bf3b84 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithConsistentDNS/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/analysis.json index 67832c6f2e..fa88b975e1 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/analysis.json @@ -2,9 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": { - "130.192.182.17": true - }, "DNSPossiblyInvalidAddrsClassic": { "130.192.182.17": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/analysis_classic.json index 20598b0b60..6b8212af64 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/analysis_classic.json @@ -2,9 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": { - "130.192.182.17": true - }, "DNSPossiblyInvalidAddrsClassic": { "130.192.182.17": true }, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/observations.json index ae20f09c4d..792e640e6a 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/observations.json @@ -34,8 +34,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -81,8 +79,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -126,8 +122,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -173,8 +167,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -221,8 +213,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/observations_classic.json index 7cccfc56b4..c3b6b5e445 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/tlsBlockingConnectionResetWithInconsistentDNS/observations_classic.json @@ -37,8 +37,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -84,8 +82,6 @@ "93.184.216.34" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": false, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/analysis.json b/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/analysis.json index 7165bcf08c..1593eddc35 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": "dns_nxdomain_error", "DNSTransactionsWithBogons": null, "DNSTransactionsWithUnexpectedFailures": {}, - "DNSPossiblyInvalidAddrs": null, "DNSPossiblyInvalidAddrsClassic": null, "DNSPossiblyNonexistingDomains": { "www.example.xyz": true diff --git a/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/analysis_classic.json index 7165bcf08c..1593eddc35 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": "dns_nxdomain_error", "DNSTransactionsWithBogons": null, "DNSTransactionsWithUnexpectedFailures": {}, - "DNSPossiblyInvalidAddrs": null, "DNSPossiblyInvalidAddrsClassic": null, "DNSPossiblyNonexistingDomains": { "www.example.xyz": true diff --git a/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/observations.json b/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/observations.json index 821a918a20..6bdf151ac2 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/observations.json @@ -32,8 +32,6 @@ "ControlDNSLookupFailure": "dns_name_error", "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -73,8 +71,6 @@ "ControlDNSLookupFailure": "dns_name_error", "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -114,8 +110,6 @@ "ControlDNSLookupFailure": "dns_name_error", "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/observations_classic.json index 676ca4f6d5..d7856cc886 100644 --- a/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/generated/websiteDownNXDOMAIN/observations_classic.json @@ -32,8 +32,6 @@ "ControlDNSLookupFailure": "dns_name_error", "ControlDNSResolvedAddrs": null, "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/analysis.json b/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/analysis.json index 665f445156..d25701e59e 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/analysis_classic.json index 665f445156..d25701e59e 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": null, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/observations.json b/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/observations.json index 4520d59ea5..f93f556bbd 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/observations.json @@ -43,8 +43,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -94,8 +92,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -145,8 +141,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -196,8 +190,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -245,8 +237,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -294,8 +284,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -343,8 +331,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -392,8 +378,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -441,8 +425,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -490,8 +472,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -539,8 +519,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -588,8 +566,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -641,8 +617,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -692,8 +666,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -743,8 +715,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "generic_timeout_error", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -794,8 +764,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "generic_timeout_error", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -845,8 +813,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "generic_timeout_error", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -896,8 +862,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "generic_timeout_error", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -947,8 +911,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -998,8 +960,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/observations_classic.json index 4d4c3f42e1..7d572f5cbb 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/dnsgoogle80/observations_classic.json @@ -43,8 +43,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -94,8 +92,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -145,8 +141,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -196,8 +190,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -249,8 +241,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -300,8 +290,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -351,8 +339,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "generic_timeout_error", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -402,8 +388,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "generic_timeout_error", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -453,8 +437,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "generic_timeout_error", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -504,8 +486,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "generic_timeout_error", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -555,8 +535,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, @@ -606,8 +584,6 @@ "8.8.8.8" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "generic_timeout_error", "ControlHTTPResponseStatusCode": null, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/noipv6/analysis.json b/internal/minipipeline/testdata/webconnectivity/manual/noipv6/analysis.json index 53bc507507..ac1fc9f8da 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/noipv6/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/noipv6/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": 0.6166324592304209, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/noipv6/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/manual/noipv6/analysis_classic.json index 53bc507507..ac1fc9f8da 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/noipv6/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/noipv6/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": 0.6166324592304209, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/noipv6/observations.json b/internal/minipipeline/testdata/webconnectivity/manual/noipv6/observations.json index 393ca5d4e5..28fdb4bb92 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/noipv6/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/noipv6/observations.json @@ -56,8 +56,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -120,8 +118,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -184,8 +180,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -248,8 +242,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -315,8 +307,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -382,8 +372,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -449,8 +437,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -516,8 +502,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -583,8 +567,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -650,8 +632,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -717,8 +697,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -787,8 +765,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -857,8 +833,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -927,8 +901,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -997,8 +969,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1067,8 +1037,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1137,8 +1105,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1207,8 +1173,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1277,8 +1241,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1347,8 +1309,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1417,8 +1377,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1483,8 +1441,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1549,8 +1505,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1615,8 +1569,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1681,8 +1633,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1747,8 +1697,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1813,8 +1761,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1877,8 +1823,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1941,8 +1885,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -2005,8 +1947,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -2069,8 +2009,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -2135,8 +2073,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2220,8 +2156,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2311,8 +2245,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2399,8 +2331,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2487,8 +2417,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2578,8 +2506,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2663,8 +2589,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2748,8 +2672,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2828,8 +2750,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2908,8 +2828,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2988,8 +2906,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3068,8 +2984,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3148,8 +3062,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3228,8 +3140,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3308,8 +3218,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3388,8 +3296,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3468,8 +3374,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3548,8 +3452,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3628,8 +3530,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3708,8 +3608,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3788,8 +3686,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3868,8 +3764,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3948,8 +3842,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -4028,8 +3920,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -4108,8 +3998,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -4196,8 +4084,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -4284,8 +4170,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -4372,8 +4256,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -4457,8 +4339,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -4566,8 +4446,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -4654,8 +4532,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/noipv6/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/manual/noipv6/observations_classic.json index d77f90b072..283823ce61 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/noipv6/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/noipv6/observations_classic.json @@ -62,8 +62,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -132,8 +130,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -202,8 +198,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -272,8 +266,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -342,8 +334,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -412,8 +402,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -482,8 +470,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -552,8 +538,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -622,8 +606,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -692,8 +674,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -758,8 +738,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -849,8 +827,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -937,8 +913,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1025,8 +999,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1116,8 +1088,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1201,8 +1171,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1289,8 +1257,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1377,8 +1343,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1486,8 +1450,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1574,8 +1536,6 @@ "2a00:1450:4009:827::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/youtube/analysis.json b/internal/minipipeline/testdata/webconnectivity/manual/youtube/analysis.json index 76512b8c23..614bd2d7e9 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/youtube/analysis.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/youtube/analysis.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": 0.6327409384828159, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/youtube/analysis_classic.json b/internal/minipipeline/testdata/webconnectivity/manual/youtube/analysis_classic.json index 76512b8c23..614bd2d7e9 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/youtube/analysis_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/youtube/analysis_classic.json @@ -2,7 +2,6 @@ "DNSExperimentFailure": null, "DNSTransactionsWithBogons": {}, "DNSTransactionsWithUnexpectedFailures": null, - "DNSPossiblyInvalidAddrs": {}, "DNSPossiblyInvalidAddrsClassic": {}, "DNSPossiblyNonexistingDomains": null, "HTTPDiffBodyProportionFactor": 0.6327409384828159, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/youtube/observations.json b/internal/minipipeline/testdata/webconnectivity/manual/youtube/observations.json index 03d9d3301f..4851892c47 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/youtube/observations.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/youtube/observations.json @@ -48,8 +48,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -104,8 +102,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -160,8 +156,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -216,8 +210,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -274,8 +266,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -332,8 +322,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -390,8 +378,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -448,8 +434,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -506,8 +490,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -564,8 +546,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -626,8 +606,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -688,8 +666,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -750,8 +726,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -812,8 +786,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -874,8 +846,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -936,8 +906,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -998,8 +966,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1060,8 +1026,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1122,8 +1086,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1184,8 +1146,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1240,8 +1200,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1296,8 +1254,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1352,8 +1308,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1408,8 +1362,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1467,8 +1419,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1526,8 +1476,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1585,8 +1533,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1644,8 +1590,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1703,8 +1647,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1762,8 +1704,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1821,8 +1761,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -1879,8 +1817,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1957,8 +1893,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2035,8 +1969,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2113,8 +2045,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2193,8 +2123,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2273,8 +2201,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2346,8 +2272,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2419,8 +2343,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2492,8 +2414,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2565,8 +2485,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2638,8 +2556,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2711,8 +2627,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2784,8 +2698,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2857,8 +2769,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -2930,8 +2840,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": true, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3008,8 +2916,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3088,8 +2994,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3168,8 +3072,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3248,8 +3150,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3349,8 +3249,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -3430,8 +3328,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, diff --git a/internal/minipipeline/testdata/webconnectivity/manual/youtube/observations_classic.json b/internal/minipipeline/testdata/webconnectivity/manual/youtube/observations_classic.json index ac20fd47dc..30dcf9c7bf 100644 --- a/internal/minipipeline/testdata/webconnectivity/manual/youtube/observations_classic.json +++ b/internal/minipipeline/testdata/webconnectivity/manual/youtube/observations_classic.json @@ -54,8 +54,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -116,8 +114,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -178,8 +174,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -240,8 +234,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -302,8 +294,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -364,8 +354,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -426,8 +414,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -488,8 +474,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -550,8 +534,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -612,8 +594,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": null, - "MatchWithControlIPAddress": null, - "MatchWithControlIPAddressASN": null, "ControlTLSHandshakeFailure": null, "ControlHTTPFailure": null, "ControlHTTPResponseStatusCode": null, @@ -670,8 +650,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -748,8 +726,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -826,8 +802,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -906,8 +880,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -986,8 +958,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1064,8 +1034,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1144,8 +1112,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1224,8 +1190,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1304,8 +1268,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200, @@ -1405,8 +1367,6 @@ "2607:f8b0:400b:80f::200e" ], "ControlTCPConnectFailure": "", - "MatchWithControlIPAddress": false, - "MatchWithControlIPAddressASN": true, "ControlTLSHandshakeFailure": "", "ControlHTTPFailure": "", "ControlHTTPResponseStatusCode": 200,