def extract_valid_data(data):
    """
    Extract valid data from a list of tuples.

    Args:
        data (list): List of tuples containing version, value, and other metrics.

    Returns:
        list: List of tuples with only the first two elements.
    """
    return [x[:2] for x in data if len(x) >= 3]