def is_test_probe()

in probe_scraper/transform_probes.py [0:0]


def is_test_probe(probe_type, name):
    if probe_type == "histogram":
        # These are test-only probes and never sent out.
        return name.startswith("TELEMETRY_TEST_")
    elif probe_type in ["scalar", "event"]:
        return name.startswith("telemetry.test.")

    return False