From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp57.i.mail.ru (smtp57.i.mail.ru [217.69.128.37]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 36F5D41C5DB for ; Wed, 1 Jul 2020 03:16:59 +0300 (MSK) Date: Wed, 1 Jul 2020 03:16:08 +0300 From: Alexander Turenko Message-ID: <20200701001608.roz3fgqapgyqsonf@tkn_work_nb> References: <36bc5d2e-1981-54ed-befa-095debab6805@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: Subject: Re: [Tarantool-patches] [PATCH 1/2] feedback: determine runtime platform info List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?utf-8?B?0JjQu9GM0Y8g0JrQvtC90Y7RhdC+0LI=?= Cc: tarantool-patches@dev.tarantool.org, Vladislav Shpilevoy > +local function fill_in_platform_info(feedback) > + feedback.os = jit.os > + feedback.arch = jit.arch > + feedback.is_docker = detect_docker_environment() > +end Platform information may be grouped into its own category. Nit: I would choose more English friendly name for the 'is_docker' property. Say, 'dockerized' or at least 'is_under_docker'.