From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_2 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E7179C07E96 for ; Tue, 6 Jul 2021 15:35:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C5ED961C21 for ; Tue, 6 Jul 2021 15:35:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232707AbhGFPiF (ORCPT ); Tue, 6 Jul 2021 11:38:05 -0400 Received: from mail.kernel.org ([198.145.29.99]:53338 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232559AbhGFPiD (ORCPT ); Tue, 6 Jul 2021 11:38:03 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id AEA526143B; Tue, 6 Jul 2021 15:35:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1625585724; bh=B5ndKLBRnsbGgiAAi6EO4ull1KjiqhstMo32ykPivlM=; h=Subject:From:To:Cc:Date:In-Reply-To:References:From; b=N9PoSSloHNP5ViPbsp0EplkTGVvw1AWx65iwt8FmmeW+OaZvU0jVwUOfxxEbACuTF L8NNtVE04QSPxEXBBuAlCUcV2Kvo4ECWXertrSCdswKPCWLQblq0pXXrBJm29c6H4T wIxk430VqGZKn0Xj4rug0XJMHi82MygYK5htLCOx6OT8rOp61LEdh8vCVolUl2oHGH g1EK9knalRdAi3FKy57CokIoQMcV6ymSdLCH88Bj9CNcpdnrwYfgh48JQo5QoZMdqt MT7WhDJudLtiOhcyWwewnzqjQ59FqTSE5LA2jf/USRmJoGxEwsfEFPhYpus2F5riZH argsl3KnlMN7Q== Message-ID: Subject: Re: [PATCH] tracing: Add "grouping" to histogram logic From: Tom Zanussi To: Steven Rostedt , Namhyung Kim Cc: Masami Hiramatsu , LKML , Ingo Molnar , Andrew Morton , Daniel Bristot de Oliveira Date: Tue, 06 Jul 2021 10:35:22 -0500 In-Reply-To: <20210706112659.74bc2b2a@oasis.local.home> References: <20210702175648.1172476c@gandalf.local.home> <20210703190725.8082fc92c244e26abec0bf8b@kernel.org> <20210703082713.3643b4d6@rorschach.local.home> <20210706112659.74bc2b2a@oasis.local.home> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.28.5-0ubuntu0.18.04.1 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 2021-07-06 at 11:26 -0400, Steven Rostedt wrote: > On Mon, 5 Jul 2021 13:32:53 -0700 > Namhyung Kim wrote: > > > > Yeah, I just picked '-' but then realized it would conflict with > > > other > > > key words. > > > > Also we already have ".log2" flag for a logarithmic histrogram. > > Then we might have something like "keys=FIELD.bucket=SIZE" > > for linear histograms. > > I like the above idea. > > Tom, do you have any issue with this? No, that makes very clear what it does. Tom > > -- Steve