123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115(*****************************************************************************)(* *)(* Open Source License *)(* Copyright (c) 2022 Nomadic Labs, <contact@nomadic-labs.com> *)(* *)(* Permission is hereby granted, free of charge, to any person obtaining a *)(* copy of this software and associated documentation files (the "Software"),*)(* to deal in the Software without restriction, including without limitation *)(* the rights to use, copy, modify, merge, publish, distribute, sublicense, *)(* and/or sell copies of the Software, and to permit persons to whom the *)(* Software is furnished to do so, subject to the following conditions: *)(* *)(* The above copyright notice and this permission notice shall be included *)(* in all copies or substantial portions of the Software. *)(* *)(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *)(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *)(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *)(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *)(* DEALINGS IN THE SOFTWARE. *)(* *)(*****************************************************************************)letnamespace=Tezos_version.Node_version.namespaceletsubsystem="p2p"(* we add this function to impose the correct namespace *)letmetric_counter~component~help~name()=Prometheus.Counter.v~help~namespace~subsystem(String.concat"_"[component;name])moduleMessages=structletcomponent="messages"letmetric_counter=metric_counter~componentletbroadcast_message_sent=metric_counter~help:"Number of user message sent by broadcasting"~name:"broadcast_message_sent"()letuser_message_sent=metric_counter~help:"Number of user message sent"~name:"user_message_sent"()letuser_message_received=metric_counter~help:"Number of user message received"~name:"user_message_received"()letuser_message_received_error=metric_counter~help:"Number of user message received that resulted in error"~name:"user_message_received_error"()letadvertise_received=metric_counter~help:"Number of advertise received"~name:"advertise_received"()letadvertise_sent=metric_counter~help:"Number of advertise sent"~name:"advertise_sent"()letbootstrap_received=metric_counter~help:"Number of bootstrap received"~name:"bootstrap_received"()letbootstrap_sent=metric_counter~help:"Number of bootstrap sent"~name:"bootstrap_sent"()letswap_request_sent=metric_counter~help:"Number of swap sent"~name:"swap_requests_sent"()letswap_request_received=metric_counter~help:"Number of swap received"~name:"swap_requests_received"()letswap_ack_sent=metric_counter~help:"Number of swap acks sent"~name:"swap_ack_sent"()letswap_ack_received=metric_counter~help:"Number of swap acks received"~name:"swap_ack_received"()endmoduleSwap=structletcomponent="swap"letmetric_counter=metric_counter~componentletignored=metric_counter~help:"Number of ignored swap"~name:"ignored"()letsuccess=metric_counter~help:"Number of successful swap"~name:"success"()letfail=metric_counter~help:"Number of failed swap"~name:"fail"()end