From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2C162A0C41; Tue, 19 Oct 2021 15:35:07 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0E4D3411A9; Tue, 19 Oct 2021 15:35:07 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id E724E4119C for ; Tue, 19 Oct 2021 15:35:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1634650505; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=F2JJW9FCpEI5PSl+UWOWF1WwtwNhB1nk8Z4q3GcKL0U=; b=iXatxHpOgGOOMmq5ar5H2GmzMy60+a70CneIfCDHl4/wRzNKOqdtNQ8pJlOi91l9DpuWRp WiBCYjV/NKQNTmFM85KSgc3Y9+WDGoLbuY9M6j/OSXo4UOJk3NXKPWPSIGtJfnRbsjkIg/ SV/b5bKCX8V11uXNc0FQYd8bQWpOIuM= Received: from mail-lj1-f198.google.com (mail-lj1-f198.google.com [209.85.208.198]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-190-q6YSsi0LPAy4D1MngtqgMA-1; Tue, 19 Oct 2021 09:35:02 -0400 X-MC-Unique: q6YSsi0LPAy4D1MngtqgMA-1 Received: by mail-lj1-f198.google.com with SMTP id a20-20020a2eb554000000b0020de66f70bcso901934ljn.1 for ; Tue, 19 Oct 2021 06:35:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=F2JJW9FCpEI5PSl+UWOWF1WwtwNhB1nk8Z4q3GcKL0U=; b=7mF2sSLQNqrS3H0bBMWm0eopHBUosGQdL3VmrEILIR0Rnd3eWmAUjEvn1Ir/NkorFk UStvCXzP070qQ+SA5GT2k8+xPE8q4yAiPKrhxnMaKyxwwezWnWYsmUXWHdHxHaDW70RL 9MUhmirPpU8ZgUq51gIxbw+z9apVX9cC+EZcq+rwfwj1GA7u6giy6ixMvWM8gr9+Y3jD jtYywF4tPVy6EWUT7vfn4UBDr6h04eUnbR18Q/mvSFWte6LmRokz1S7U7vJKKyIYwSBg R7vZR7eL++roU4kG2BoiCcanVDui6VOA1R0FCx3ur5/waqAgl+2l8Pc+7Zrr10OaY+/a vTTw== X-Gm-Message-State: AOAM531x+9d0bxxtkzGgzURvPv6Fc6Wvyu4i4fsC4TnpYltA9ja9EJPh Dnr71XMGPEUlVWnzM8bNTZP3+NVXLRMccHp8KakcMjsGnA/haNCc0+mTSmZ5AeGZ3qLPbfvCtSt jNR3ejmgNB7785yGJMDQ= X-Received: by 2002:a05:6512:a8e:: with SMTP id m14mr6058530lfu.575.1634650500636; Tue, 19 Oct 2021 06:35:00 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzmavHClOxb2Nj7hTttIqhWRyvgqIFDqNIdd4jrcm4CudtZ27qqPyANJWzPt1dj4a27tHm5+07qCUIjRX2ff4g= X-Received: by 2002:a05:6512:a8e:: with SMTP id m14mr6058508lfu.575.1634650500459; Tue, 19 Oct 2021 06:35:00 -0700 (PDT) MIME-Version: 1.0 References: <20211005150017.2779845-1-conor.walsh@intel.com> <20211018100952.724933-1-conor.walsh@intel.com> In-Reply-To: <20211018100952.724933-1-conor.walsh@intel.com> From: David Marchand Date: Tue, 19 Oct 2021 15:34:49 +0200 Message-ID: To: Conor Walsh Cc: Ciara Power , Bruce Richardson , dev Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v3] usertools/telemetry: add list of available file-prefixes X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, Oct 18, 2021 at 12:10 PM Conor Walsh wrote: > > This patch adds the option --list (-l) to dpdk-telemetry.py which will > print all of the available dpdk file-prefixes that have telemetry enabled. > The prefixes will also be printed if the user passes an incorrect prefix > in the --file-prefix (-f) option. > > Signed-off-by: Conor Walsh > Acked-by: Ciara Power Applied, thanks. -- David Marchand