From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt0-f171.google.com (mail-qt0-f171.google.com [209.85.216.171]) by dpdk.org (Postfix) with ESMTP id 7993A1B7AB for ; Thu, 8 Feb 2018 14:15:06 +0100 (CET) Received: by mail-qt0-f171.google.com with SMTP id s27so6075461qts.4 for ; Thu, 08 Feb 2018 05:15:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=Ph0644dJp410uILB+lCP6Wk2uzd+vQY6gc0Uzps8VFc=; b=c07Z7YtuDIT6JM0vNcxCqAC0oEMsXiH/y8VmpXQ4ATmB4ouSc0EOL0PUnqo4eDSAWv 3fyFiOdNrjVsgOEbarso6208JzOj3e1kk6puTXASCK1b+jZl/cWAZ43/ufPL/CptLtwX Hf/sx19EMozBuqa4tGSj3/oCr+32ufzskTd/sAJYPHJ78YTDu3LXsc6w/OsZAf37Kgo7 B6PXnqPHVHIJp6rm9+OH+Nhv7o59PthEJ+qzjBx1RFIQKCg6RpKhlF/m1ZY2NdZhgDM/ J72Gv+WtjcHZzNB2cKpSQzQgIc6nLfze3bgZB2jkFYRA+pCEYwywITLMLZo7bGAZLrh9 vr7w== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=Ph0644dJp410uILB+lCP6Wk2uzd+vQY6gc0Uzps8VFc=; b=Hd0aGEguupODjU4Kht7gB+spaME0MRTH51uxBR4L/CU9R711+Hl8tqRqKqO0/hIQG/ u6TwIPQKRmzHDgSz8otahywmS2DO/FymliQGmXoY3FYmp0Mzu32aBay0eM9r5Jq80PLX zNWcVb6oWtH5uNv7Grgy6CSAe2YO6WsNi5wzEIDg/47gBNLS9RfjbGGBA5Q8Wo0pykTY GXCCVTGonVJu6EKoQEA9FOxckyjk7iF4Fh6HzC8iaSbCUiyTAD05sfQN5/ilLJTOCPrW DNtwkzQ+FNVJLy+tc7D9T9Z2lv1Eopn8y6sXyGC6/v27sssxity+8u5TwXQodht0A69Y azjQ== X-Gm-Message-State: APf1xPDFzmw/mPrkxzNX9ghKpqG3fAfQBKHFEkcirwB2JdiKh4x+NMlc uDTpMoaAmD4qW2ZN8CCkAXSHjydYyHGAY8IStPSTuw== X-Google-Smtp-Source: AH8x2274DTE9fYEWcs2AFQ9bfaPH0dmm5OfV3ZXLJElM+JgL4MIMiGEV3lkq8txqkz/CFLY1fwLI70Pa+33e0xWObRE= X-Received: by 10.200.66.135 with SMTP id o7mr989558qtl.155.1518095705525; Thu, 08 Feb 2018 05:15:05 -0800 (PST) MIME-Version: 1.0 Received: by 10.12.162.3 with HTTP; Thu, 8 Feb 2018 05:15:05 -0800 (PST) From: sharanya k Date: Thu, 8 Feb 2018 18:45:05 +0530 Message-ID: To: users@dpdk.org Content-Type: text/plain; charset="UTF-8" Subject: [dpdk-users] Enabling stats in pipeline applications X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Feb 2018 13:15:06 -0000 Hi, I am running an ip pipeline application in dpdk version 17.08.1 (stable). I can see the packets getting received and send through Wireshark. But, I couldn't get the statistics in the pipeline app using the following command. pipeline> p 1 stats port in 0 Pipeline 1 - stats for input port 0: Pkts in: 0 Pkts dropped by AH: 0 Pkts dropped by other: 0 pipeline> p 2 stats port in 0 Pipeline 2 - stats for input port 0: Pkts in: 0 Pkts dropped by AH: 0 Pkts dropped by other: 0 pipeline> p 2 stats port out 0 Pipeline 2 - stats for output port 0: Pkts in: 0 Pkts dropped by AH: 0 Pkts dropped by other: 0 I even enabled the following flags in dpdk/config/common_base and recompiled. CONFIG_RTE_*_STATS_COLLECT=y Still its not working. Can you please help me to rectify this? Regards, Sharanya