Server IP : 184.154.167.98 / Your IP : 3.137.219.213 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/pcp/pmdas/bcc/modules/ |
Upload File : |
# # Copyright (C) 2018 Marko Myllynen <myllynen@redhat.com> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # """ PCP BCC PMDA USDT hits module """ # pylint: disable=invalid-name, too-many-instance-attributes from ctypes import c_int from os import path import re from bcc import BPF, USDT from pcp.pmapi import pmUnits from cpmapi import PM_TYPE_U64, PM_SEM_COUNTER, PM_COUNT_ONE from cpmda import PMDA_FETCH_NOVALUES from modules.pcpbcc import PCPBCCBase # # BPF program # bpf_src = "modules/usdt_hits.bpf" # Individual USDT usdt_probe = """ static char *HASH_KEY = "USDT_NAME"; int trace_HASH_KEY(void *ctx) { struct usdt_t key = {}; __builtin_memcpy(&key.usdt, HASH_KEY, sizeof(key.usdt)); u64 zero = 0, *val; val = stats.lookup_or_init(&key, &zero); if (val) { (*val)++; } return 0; } """ # # PCP BCC PMDA constants # MODULE = 'usdt_hits' METRIC = 'usdt.hits' units_count = pmUnits(0, 0, 1, 0, 0, PM_COUNT_ONE) # # PCP BCC Module # class PCPBCCModule(PCPBCCBase): """ PCP BCC USDT hits module """ def __init__(self, config, log, err, proc_refresh): """ Constructor """ PCPBCCBase.__init__(self, MODULE, config, log, err) self.pid = None self.proc_filter = None self.proc_refresh = proc_refresh self.cache = None self.usdts = [] self.usdt_contexts = [] for opt in self.config.options(MODULE): if opt == 'process': self.proc_filter = self.config.get(MODULE, opt) self.update_pids(self.get_proc_info(self.proc_filter)) if opt == 'usdts': self.usdts = self.read_probe_conf(self.config.get(MODULE, opt)) self.log("Configured USDTs: " + str(self.usdts)) found = [] for usdt in self.usdts: lib, name = usdt.split(":") for probe in USDT(path=lib).enumerate_probes(): comp = re.compile(r'\A' + name + r'\Z') pn = probe.name if isinstance(probe.name, str) else probe.name.decode("UTF-8") if name == pn or re.match(comp, pn): found.append(lib + ":" + pn) self.insts[lib + "::" + pn] = c_int(1) self.usdts = found if not self.usdts: raise RuntimeError("No matching USDTs found.") self.log("Found %s USDTs: %s." % (str(len(self.usdts)), str(self.usdts))) if not self.proc_filter: # https://github.com/iovisor/bcc/issues/1774 raise RuntimeError("Process filter is mandatory.") self.log("Initialized.") def metrics(self): """ Get metric definitions """ name = METRIC self.items.append( # Name - reserved - type - semantics - units - help (name, None, PM_TYPE_U64, PM_SEM_COUNTER, units_count, 'USDT hit count'), ) return True, self.items @staticmethod def gen_hash_key(key): """ Format USDT name to hash key """ key = key.replace(":", "__").replace("/", "_").replace("-", "_") return key.replace(".", "_").replace(",", "_").replace(";", "_") def reset_cache(self): """ Reset internal cache """ self.cache = {} def undef_cache(self): """ Undefine internal cache """ self.cache = None def compile(self): """ Compile BPF """ try: if not self.pid and self.proc_filter and not self.proc_refresh: # https://github.com/iovisor/bcc/issues/1774 raise RuntimeError("No process to attach found.") if not self.bpf_text: with open(path.dirname(__file__) + '/../' + bpf_src) as src: self.bpf_text = src.read() if not self.pid and self.proc_filter and self.proc_refresh: self.log("No process to attach found, activation postponed.") return self.usdt_contexts = [] bpf_text = self.bpf_text if self.pid: u = USDT(pid=self.pid) for usdt in self.usdts: lib, name = usdt.split(":") hash_key = self.gen_hash_key(usdt) probe = usdt_probe.replace("HASH_KEY", hash_key) probe = probe.replace("USDT_NAME", usdt) if self.pid: u.enable_probe(name, "trace_HASH_KEY".replace("HASH_KEY", hash_key)) else: u = USDT(path=lib) u.enable_probe(name, "trace_HASH_KEY".replace("HASH_KEY", hash_key)) self.usdt_contexts.append(u) if self.debug: self.log("Generated function:\n%s" % probe) bpf_text += probe if self.pid: self.usdt_contexts.append(u) bpf_text = bpf_text.replace("USDT_COUNT", str(len(self.usdts))) self.log("Compiling %s probes: %s" % (str(len(self.usdts)), str((self.usdts)))) if self.debug: self.log("BPF to be compiled:\n" + bpf_text.strip()) self.reset_cache() self.bpf = BPF(text=bpf_text, usdt_contexts=self.usdt_contexts) self.log("Compiled.") except Exception as error: # pylint: disable=broad-except self.bpf = None self.undef_cache() self.err(str(error)) self.err("Module NOT active!") raise def refresh(self): """ Refresh BPF data """ if self.bpf is None: return None for k, v in self.bpf["stats"].items(): self.cache[k.usdt.decode("ASCII").replace(":", "::")] = v.value return self.insts def bpfdata(self, item, inst): """ Return BPF data as PCP metric value """ try: key = self.pmdaIndom.inst_name_lookup(inst) return [self.cache[key], 1] except Exception: # pylint: disable=broad-except return [PMDA_FETCH_NOVALUES, 0]