From patchwork Thu Jul 20 11:05:40 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 129668 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A341E42EC5; Thu, 20 Jul 2023 13:05:59 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5B50942BAC; Thu, 20 Jul 2023 13:05:51 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mails.dpdk.org (Postfix) with ESMTP id 7AA5940F17 for ; Thu, 20 Jul 2023 13:05:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1689851149; x=1721387149; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ZXtPSSyku++JOWN9I5+Em8FSwBKbxPychmKFDS5wkEU=; b=JbTOB4k2Xmz0FOSBfhE2OuVTWclZ5WATF3Z1BOXrW/HZwDppIXtbpGQM 9UWZNQVWiEF2H8gI4gbtNGBV70bhKMFN0u30xJIi6+g1S/qHtAU6fUPcq SJ/y2rx8dc1o027srlLea26pFLLSl4mvzZySJNjC4PdcbdFVd5RGo/6V2 q6n3rM7zRavb+CWZC2QXYiDuuO51StyaPwDzBkwgyezan0tcmybrNawqA 3ZE2AnbPhhYVS3kcn67sTax+YWkbybEj+Y1liC94sR4ZrFafQBdJDAEXR v50K+8Luxl02HoU5TkX69ngDQcgn7pDGWlZ5DX9ZIjl8U1axZkA+xwlbk A==; X-IronPort-AV: E=McAfee;i="6600,9927,10776"; a="366731420" X-IronPort-AV: E=Sophos;i="6.01,218,1684825200"; d="scan'208";a="366731420" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Jul 2023 04:05:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10776"; a="674650227" X-IronPort-AV: E=Sophos;i="6.01,218,1684825200"; d="scan'208";a="674650227" Received: from silpixa00401385.ir.intel.com ([10.237.214.156]) by orsmga003.jf.intel.com with ESMTP; 20 Jul 2023 04:05:46 -0700 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , =?utf-8?q?Morten_Br=C3=B8?= =?utf-8?q?rup?= , Jerin Jacob , David Marchand Subject: [PATCH v4 2/2] doc/contributing: guidelines for logging, tracing and telemetry Date: Thu, 20 Jul 2023 12:05:40 +0100 Message-Id: <20230720110540.231342-3-bruce.richardson@intel.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20230720110540.231342-1-bruce.richardson@intel.com> References: <20230613143355.77914-1-bruce.richardson@intel.com> <20230720110540.231342-1-bruce.richardson@intel.com> MIME-Version: 1.0 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 As discussed by DPDK technical board [1], our contributor guide should include some details as to when to use logging vs tracing vs telemetry to provide the end user with information about the running process and the DPDK libraries it uses. [1] https://mails.dpdk.org/archives/dev/2023-March/265204.html Signed-off-by: Bruce Richardson Acked-by: Morten Brørup Acked-by: Jerin Jacob Reviewed-by: David Marchand --- doc/guides/contributing/coding_style.rst | 2 + doc/guides/contributing/design.rst | 49 ++++++++++++++++++++++++ doc/guides/prog_guide/telemetry_lib.rst | 2 + doc/guides/prog_guide/trace_lib.rst | 2 + 4 files changed, 55 insertions(+) diff --git a/doc/guides/contributing/coding_style.rst b/doc/guides/contributing/coding_style.rst index 383942a601..37e2cc5efb 100644 --- a/doc/guides/contributing/coding_style.rst +++ b/doc/guides/contributing/coding_style.rst @@ -794,6 +794,8 @@ Control Statements /* NOTREACHED */ } +.. _dynamic_logging: + Dynamic Logging --------------- diff --git a/doc/guides/contributing/design.rst b/doc/guides/contributing/design.rst index d24a7ff6a0..5a4c4b7ed1 100644 --- a/doc/guides/contributing/design.rst +++ b/doc/guides/contributing/design.rst @@ -4,6 +4,7 @@ Design ====== + Environment or Architecture-specific Sources -------------------------------------------- @@ -68,6 +69,54 @@ Adding a new static field or flag must be an exception matching many criteria like (non exhaustive): wide usage, performance, size. +Runtime Information - Logging, Tracing and Telemetry +------------------------------------------------------- + +It is often desirable to provide information to the end-user as to what is happening to the application at runtime. +DPDK provides a number of built-in mechanisms to provide this introspection: + +* :ref:`Logging` +* :ref:`Tracing` +* :ref:`Telemetry` + +Each of these has its own strengths and suitabilities for use within DPDK components. + +Below are some guidelines for when each should be used: + +* For reporting error conditions, or other abnormal runtime issues, *logging* should be used. + Depending on the severity of the issue, the appropriate log level, for example, + ``ERROR``, ``WARNING`` or ``NOTICE``, should be used. + +.. note:: + + Drivers of all classes, including both bus and device drivers, + should not output any log information if the hardware they support is not present. + This is to avoid any changes in output for existing users when a new driver is added to DPDK. + +* For component initialization, or other cases where a path through the code is only likely to be taken once, + either *logging* at ``DEBUG`` level or *tracing* may be used, or potentially both. + In the latter case, tracing can provide basic information as to the code path taken, + with debug-level logging providing additional details on internal state, + not possible to emit via tracing. + +* For a component's data-path, where a path is to be taken multiple times within a short timeframe, + *tracing* should be used. + Since DPDK tracing uses `Common Trace Format `_ for its tracing logs, + post-analysis can be done using a range of external tools. + +* For numerical or statistical data generated by a component, for example, per-packet statistics, + *telemetry* should be used. + +* For any data where the data may need to be gathered at any point in the execution to help assess the state of the application component, + for example, core configuration, device information, *telemetry* should be used. + Telemetry callbacks should not modify any program state, but be "read-only". + +Many libraries also include a ``rte__dump()`` function as part of their API, +writing verbose internal details to a given file-handle. +New libraries are encouraged to provide such functions where it makes sense to do so, +as they provide an additional application-controlled mechanism to get details of the internals of a DPDK component. + + Library Statistics ------------------ diff --git a/doc/guides/prog_guide/telemetry_lib.rst b/doc/guides/prog_guide/telemetry_lib.rst index 32f525a67f..71f8bd735e 100644 --- a/doc/guides/prog_guide/telemetry_lib.rst +++ b/doc/guides/prog_guide/telemetry_lib.rst @@ -1,6 +1,8 @@ .. SPDX-License-Identifier: BSD-3-Clause Copyright(c) 2020 Intel Corporation. +.. _telemetry_library: + Telemetry Library ================= diff --git a/doc/guides/prog_guide/trace_lib.rst b/doc/guides/prog_guide/trace_lib.rst index e5718feddc..a3b8a7c2eb 100644 --- a/doc/guides/prog_guide/trace_lib.rst +++ b/doc/guides/prog_guide/trace_lib.rst @@ -1,6 +1,8 @@ .. SPDX-License-Identifier: BSD-3-Clause Copyright(C) 2020 Marvell International Ltd. +.. _trace_library: + Trace Library =============