Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug cli #516

Merged
merged 2 commits into from
Apr 23, 2024
Merged

Debug cli #516

merged 2 commits into from
Apr 23, 2024

Conversation

LionelJouin
Copy link
Member

Description

Debug command line added to each programs so network interfaces, neighbor table, routes, rules, connection tracking table, system info, processes and env variables can be returned in json.

Issue link

Checklist

  • Purpose
    • Bug fix
    • New functionality
    • Documentation
    • Refactoring
    • CI
  • Test
    • Unit test
    • E2E Test
    • Tested manually
  • Introduce a breaking change
    • Yes (description required)
    • No

@LionelJouin
Copy link
Member Author

Here is an example: kubectl exec -it stateless-lb-frontend-attractor-a-1-f946fb59d-5zd8p -n red -- ./stateless-lb --debug

Processes are not collected, this might be due to the lack of privileges of the program.

{
    "version": "v0.0.1",
    "meridio-version": "v1.1.0-1-gcb4090a5-dirty",
    "unix-time": 1712323600,
    "network-interfaces": [
        {
            "index": 1,
            "name": "lo",
            "mac": "",
            "ips": [
                "127.0.0.1/8",
                "::1/128"
            ],
            "mtu": 65536,
            "up": true,
            "master-index": 0,
            "statistics": {
                "rx-packets": 0,
                "tx-packets": 0,
                "rx-bytes": 0,
                "tx-bytes": 0,
                "rx-errors": 0,
                "tx-errors": 0,
                "rx-dropped": 0,
                "tx-dropped": 0
            }
        },
        {
            "index": 2,
            "name": "eth0",
            "mac": "6a:c0:f7:de:c0:be",
            "ips": [
                "10.244.1.11/24",
                "fd00:10:244:1::b/64",
                "fe80::68c0:f7ff:fede:c0be/64"
            ],
            "mtu": 1500,
            "up": true,
            "master-index": 0,
            "statistics": {
                "rx-packets": 262,
                "tx-packets": 315,
                "rx-bytes": 74521,
                "tx-bytes": 31047,
                "rx-errors": 0,
                "tx-errors": 0,
                "rx-dropped": 0,
                "tx-dropped": 0
            }
        },
        {
            "index": 3,
            "name": "ext-vlan0",
            "mac": "02:fe:04:8e:6a:3a",
            "ips": [
                "169.254.100.2/24",
                "100:100::2/64",
                "fe80::fe:4ff:fe8e:6a3a/64"
            ],
            "mtu": 1500,
            "up": true,
            "master-index": 0,
            "statistics": {
                "rx-packets": 2038,
                "tx-packets": 2057,
                "rx-bytes": 162144,
                "tx-bytes": 163742,
                "rx-errors": 0,
                "tx-errors": 0,
                "rx-dropped": 0,
                "tx-dropped": 0
            }
        },
        {
            "index": 4,
            "name": "conduit-a--0323",
            "mac": "02:fe:98:23:9a:c9",
            "ips": [
                "172.16.0.8/24",
                "fd00::8/64",
                "fe80::fe:98ff:fe23:9ac9/64"
            ],
            "mtu": 1500,
            "up": true,
            "master-index": 0,
            "statistics": {
                "rx-packets": 35,
                "tx-packets": 5,
                "rx-bytes": 3698,
                "tx-bytes": 686,
                "rx-errors": 0,
                "tx-errors": 0,
                "rx-dropped": 0,
                "tx-dropped": 0
            }
        },
        {
            "index": 5,
            "name": "conduit-a--277f",
            "mac": "02:fe:0a:d8:d4:d3",
            "ips": [
                "172.16.1.6/24",
                "fd00:0:0:1::6/64",
                "fe80::fe:aff:fed8:d4d3/64"
            ],
            "mtu": 1446,
            "up": true,
            "master-index": 0,
            "statistics": {
                "rx-packets": 29,
                "tx-packets": 5,
                "rx-bytes": 3002,
                "tx-bytes": 686,
                "rx-errors": 0,
                "tx-errors": 0,
                "rx-dropped": 0,
                "tx-dropped": 0
            }
        }
    ],
    "rules": [
        {
            "table": 255,
            "priority": -1,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 5039,
            "priority": 96,
            "mark": 5039,
            "source": "",
            "destination": ""
        },
        {
            "table": 5048,
            "priority": 97,
            "mark": 5048,
            "source": "",
            "destination": ""
        },
        {
            "table": 5096,
            "priority": 98,
            "mark": 5096,
            "source": "",
            "destination": ""
        },
        {
            "table": 5078,
            "priority": 99,
            "mark": 5078,
            "source": "",
            "destination": ""
        },
        {
            "table": 4096,
            "priority": 100,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 4097,
            "priority": 101,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 254,
            "priority": 32766,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 253,
            "priority": 32767,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 253,
            "priority": 32767,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 254,
            "priority": 32767,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 255,
            "priority": -1,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 5039,
            "priority": 96,
            "mark": 5039,
            "source": "",
            "destination": ""
        },
        {
            "table": 5048,
            "priority": 97,
            "mark": 5048,
            "source": "",
            "destination": ""
        },
        {
            "table": 5096,
            "priority": 98,
            "mark": 5096,
            "source": "",
            "destination": ""
        },
        {
            "table": 5078,
            "priority": 99,
            "mark": 5078,
            "source": "",
            "destination": ""
        },
        {
            "table": 4096,
            "priority": 100,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 4097,
            "priority": 101,
            "mark": -1,
            "source": "",
            "destination": ""
        },
        {
            "table": 254,
            "priority": 32766,
            "mark": -1,
            "source": "",
            "destination": ""
        }
    ],
    "route": [
        {
            "table": 254,
            "interface-index": 0,
            "destination": "default",
            "nexthops": [],
            "gateway": "10.244.1.1",
            "source": ""
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "10.244.1.0/24",
            "nexthops": [],
            "gateway": "10.244.1.1",
            "source": "10.244.1.11"
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "10.244.1.1/32",
            "nexthops": [],
            "gateway": "",
            "source": "10.244.1.11"
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "169.254.100.0/24",
            "nexthops": [],
            "gateway": "",
            "source": "169.254.100.2"
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "172.16.0.0/24",
            "nexthops": [],
            "gateway": "",
            "source": "172.16.0.8"
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "172.16.1.0/24",
            "nexthops": [],
            "gateway": "",
            "source": "172.16.1.6"
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "100:100::/64",
            "nexthops": [],
            "gateway": "",
            "source": ""
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "fd00::/64",
            "nexthops": [],
            "gateway": "",
            "source": ""
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "fd00:0:0:1::/64",
            "nexthops": [],
            "gateway": "",
            "source": ""
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "fd00:10:244:1::1/128",
            "nexthops": [],
            "gateway": "",
            "source": "fd00:10:244:1::b"
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "fd00:10:244:1::/64",
            "nexthops": [],
            "gateway": "fd00:10:244:1::1",
            "source": "fd00:10:244:1::b"
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "fe80::/64",
            "nexthops": [],
            "gateway": "",
            "source": ""
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "fe80::/64",
            "nexthops": [],
            "gateway": "",
            "source": ""
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "fe80::/64",
            "nexthops": [],
            "gateway": "",
            "source": ""
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "fe80::/64",
            "nexthops": [],
            "gateway": "",
            "source": ""
        },
        {
            "table": 254,
            "interface-index": 0,
            "destination": "default",
            "nexthops": [],
            "gateway": "fd00:10:244:1::1",
            "source": ""
        }
    ],
    "conntrack-table": [],
    "neighbors": [
        {
            "ip": "169.254.100.150",
            "mac": "02:42:ac:12:00:06",
            "state": "2",
            "interface-index": 3
        },
        {
            "ip": "10.244.1.1",
            "mac": "62:08:77:85:1f:e7",
            "state": "2",
            "interface-index": 2
        },
        {
            "ip": "100:100::150",
            "mac": "02:42:ac:12:00:06",
            "state": "2",
            "interface-index": 3
        },
        {
            "ip": "fe80::fe:82ff:fe6a:f1bc",
            "mac": "02:fe:82:6a:f1:bc",
            "state": "4",
            "interface-index": 4
        },
        {
            "ip": "fe80::fe:a8ff:fe2e:2c29",
            "mac": "02:fe:a8:2e:2c:29",
            "state": "4",
            "interface-index": 5
        },
        {
            "ip": "fe80::fe:8eff:feff:a134",
            "mac": "02:fe:8e:ff:a1:34",
            "state": "4",
            "interface-index": 5
        },
        {
            "ip": "fe80::fe:e0ff:fe49:68ae",
            "mac": "02:fe:e0:49:68:ae",
            "state": "4",
            "interface-index": 4
        }
    ],
    "system": {
        "cpu-info": [
            {
                "cpu": 0,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "0",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 1,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "1",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 2,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "2",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 3,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "3",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 5000,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 4,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "4",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 5,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "5",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 6,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "6",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 7,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "7",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 5000,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 8,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "0",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 9,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "1",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 10,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "2",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 11,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "3",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 5000,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 12,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "4",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 13,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "5",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 14,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "6",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 4900,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            },
            {
                "cpu": 15,
                "vendorId": "GenuineIntel",
                "family": "6",
                "model": "141",
                "stepping": 1,
                "physicalId": "0",
                "coreId": "7",
                "cores": 1,
                "modelName": "11th Gen Intel(R) Core(TM) i9-11950H @ 2.60GHz",
                "mhz": 5000,
                "cacheSize": 24576,
                "flags": [
                    "fpu",
                    "vme",
                    "de",
                    "pse",
                    "tsc",
                    "msr",
                    "pae",
                    "mce",
                    "cx8",
                    "apic",
                    "sep",
                    "mtrr",
                    "pge",
                    "mca",
                    "cmov",
                    "pat",
                    "pse36",
                    "clflush",
                    "dts",
                    "acpi",
                    "mmx",
                    "fxsr",
                    "sse",
                    "sse2",
                    "ss",
                    "ht",
                    "tm",
                    "pbe",
                    "syscall",
                    "nx",
                    "pdpe1gb",
                    "rdtscp",
                    "lm",
                    "constant_tsc",
                    "art",
                    "arch_perfmon",
                    "pebs",
                    "bts",
                    "rep_good",
                    "nopl",
                    "xtopology",
                    "nonstop_tsc",
                    "cpuid",
                    "aperfmperf",
                    "tsc_known_freq",
                    "pni",
                    "pclmulqdq",
                    "dtes64",
                    "monitor",
                    "ds_cpl",
                    "vmx",
                    "smx",
                    "est",
                    "tm2",
                    "ssse3",
                    "sdbg",
                    "fma",
                    "cx16",
                    "xtpr",
                    "pdcm",
                    "pcid",
                    "sse4_1",
                    "sse4_2",
                    "x2apic",
                    "movbe",
                    "popcnt",
                    "tsc_deadline_timer",
                    "aes",
                    "xsave",
                    "avx",
                    "f16c",
                    "rdrand",
                    "lahf_lm",
                    "abm",
                    "3dnowprefetch",
                    "cpuid_fault",
                    "epb",
                    "cat_l2",
                    "invpcid_single",
                    "cdp_l2",
                    "ssbd",
                    "ibrs",
                    "ibpb",
                    "stibp",
                    "ibrs_enhanced",
                    "tpr_shadow",
                    "flexpriority",
                    "ept",
                    "vpid",
                    "ept_ad",
                    "fsgsbase",
                    "tsc_adjust",
                    "bmi1",
                    "avx2",
                    "smep",
                    "bmi2",
                    "erms",
                    "invpcid",
                    "rdt_a",
                    "avx512f",
                    "avx512dq",
                    "rdseed",
                    "adx",
                    "smap",
                    "avx512ifma",
                    "clflushopt",
                    "clwb",
                    "intel_pt",
                    "avx512cd",
                    "sha_ni",
                    "avx512bw",
                    "avx512vl",
                    "xsaveopt",
                    "xsavec",
                    "xgetbv1",
                    "xsaves",
                    "split_lock_detect",
                    "dtherm",
                    "ida",
                    "arat",
                    "pln",
                    "pts",
                    "hwp",
                    "hwp_notify",
                    "hwp_act_window",
                    "hwp_epp",
                    "hwp_pkg_req",
                    "vnmi",
                    "avx512vbmi",
                    "umip",
                    "pku",
                    "ospke",
                    "avx512_vbmi2",
                    "gfni",
                    "vaes",
                    "vpclmulqdq",
                    "avx512_vnni",
                    "avx512_bitalg",
                    "tme",
                    "avx512_vpopcntdq",
                    "rdpid",
                    "movdiri",
                    "movdir64b",
                    "fsrm",
                    "avx512_vp2intersect",
                    "md_clear",
                    "ibt",
                    "flush_l1d",
                    "arch_capabilities"
                ],
                "microcode": "0x4e"
            }
        ],
        "host-info": {
            "hostname": "stateless-lb-frontend-attractor-a-1-f946fb59d-5zd8p",
            "uptime": 444061,
            "bootTime": 1711879539,
            "procs": 3,
            "os": "linux",
            "platform": "alpine",
            "platformFamily": "alpine",
            "platformVersion": "3.19.1",
            "kernelVersion": "6.5.0-26-generic",
            "kernelArch": "x86_64",
            "virtualizationSystem": "kvm",
            "virtualizationRole": "host",
            "hostId": "55b2e2v5-1f8d-4e12-55b5-5e0g085afc56"
        }
    },
    "processes": null,
    "environment-variables": [
        "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
        "HOSTNAME=stateless-lb-frontend-attractor-a-1-f946fb59d-5zd8p",
        "NSM_CONDUIT_NAME=conduit-a-1",
        "NSM_TRENCH_NAME=trench-a",
        "NSM_LOG_LEVEL=DEBUG",
        "NSM_METRICS_ENABLED=true",
        "NSM_SERVICE_NAME=conduit-a-1.trench-a.red",
        "NSM_NAME=stateless-lb-frontend-attractor-a-1-f946fb59d-5zd8p",
        "NSM_NSP_SERVICE=nsp-service-trench-a:7778",
        "NSM_MAX_TOKEN_LIFETIME=10m",
        "NSM_GRPC_PROBE_RPC_TIMEOUT=1s",
        "SPIFFE_ENDPOINT_SOCKET=unix:///run/spire/sockets/agent.sock",
        "NSP_SERVICE_TRENCH_B_PORT_7778_TCP_PROTO=tcp",
        "NSP_SERVICE_TRENCH_B_PORT_7778_TCP_ADDR=10.96.227.74",
        "IPAM_SERVICE_TRENCH_B_SERVICE_HOST=10.96.17.49",
        "IPAM_SERVICE_TRENCH_B_PORT_7777_TCP_PORT=7777",
        "KUBERNETES_PORT=tcp://10.96.0.1:443",
        "NSP_SERVICE_TRENCH_A_SERVICE_PORT=7778",
        "NSP_SERVICE_TRENCH_A_PORT_7778_TCP_PROTO=tcp",
        "IPAM_SERVICE_TRENCH_A_PORT_7777_TCP_PORT=7777",
        "MERIDIO_OPERATOR_WEBHOOK_SERVICE_PORT=tcp://10.96.31.251:443",
        "IPAM_SERVICE_TRENCH_B_PORT_7777_TCP=tcp://10.96.17.49:7777",
        "KUBERNETES_SERVICE_HOST=10.96.0.1",
        "KUBERNETES_SERVICE_PORT=443",
        "MERIDIO_OPERATOR_WEBHOOK_SERVICE_SERVICE_HOST=10.96.31.251",
        "NSP_SERVICE_TRENCH_A_PORT_7778_TCP=tcp://10.96.204.139:7778",
        "IPAM_SERVICE_TRENCH_A_SERVICE_PORT=7777",
        "NSP_SERVICE_TRENCH_B_PORT_7778_TCP=tcp://10.96.227.74:7778",
        "IPAM_SERVICE_TRENCH_B_PORT=tcp://10.96.17.49:7777",
        "IPAM_SERVICE_TRENCH_B_PORT_7777_TCP_ADDR=10.96.17.49",
        "KUBERNETES_PORT_443_TCP_PROTO=tcp",
        "NSP_SERVICE_TRENCH_A_PORT_7778_TCP_PORT=7778",
        "IPAM_SERVICE_TRENCH_A_PORT_7777_TCP_ADDR=10.96.157.166",
        "NSP_SERVICE_TRENCH_B_PORT=tcp://10.96.227.74:7778",
        "KUBERNETES_PORT_443_TCP_PORT=443",
        "MERIDIO_OPERATOR_WEBHOOK_SERVICE_PORT_443_TCP_PROTO=tcp",
        "IPAM_SERVICE_TRENCH_A_PORT=tcp://10.96.157.166:7777",
        "IPAM_SERVICE_TRENCH_B_SERVICE_PORT=7777",
        "IPAM_SERVICE_TRENCH_B_PORT_7777_TCP_PROTO=tcp",
        "KUBERNETES_PORT_443_TCP_ADDR=10.96.0.1",
        "MERIDIO_OPERATOR_WEBHOOK_SERVICE_PORT_443_TCP_ADDR=10.96.31.251",
        "NSP_SERVICE_TRENCH_A_PORT_7778_TCP_ADDR=10.96.204.139",
        "NSP_SERVICE_TRENCH_B_SERVICE_HOST=10.96.227.74",
        "NSP_SERVICE_TRENCH_B_SERVICE_PORT=7778",
        "IPAM_SERVICE_TRENCH_A_PORT_7777_TCP=tcp://10.96.157.166:7777",
        "KUBERNETES_SERVICE_PORT_HTTPS=443",
        "MERIDIO_OPERATOR_WEBHOOK_SERVICE_PORT_443_TCP_PORT=443",
        "NSP_SERVICE_TRENCH_A_SERVICE_HOST=10.96.204.139",
        "NSP_SERVICE_TRENCH_A_PORT=tcp://10.96.204.139:7778",
        "IPAM_SERVICE_TRENCH_A_SERVICE_HOST=10.96.157.166",
        "NSP_SERVICE_TRENCH_B_PORT_7778_TCP_PORT=7778",
        "KUBERNETES_PORT_443_TCP=tcp://10.96.0.1:443",
        "MERIDIO_OPERATOR_WEBHOOK_SERVICE_PORT_443_TCP=tcp://10.96.31.251:443",
        "IPAM_SERVICE_TRENCH_A_PORT_7777_TCP_PROTO=tcp",
        "MERIDIO_OPERATOR_WEBHOOK_SERVICE_SERVICE_PORT=443",
        "TERM=xterm",
        "HOME=/home/meridio",
        "GOTRACEBACK=none"
    ]
}

@LionelJouin LionelJouin requested a review from zolug April 5, 2024 14:00
@tedlean
Copy link
Collaborator

tedlean commented Apr 8, 2024

Nice,
Do you have similar plan for getting (similar) information from the proxy.
E.g. lately we have seen lingering invalid nexthops.

Would it be worth considering having the --debug for all meridio containers to have uniformity?
For the front-end bird status could be shown, so the user does not need to know about the bird CLI etc.

@LionelJouin
Copy link
Member Author

Yes, this will be included in all container, proxy, stateless-lb, frontend, tapa...
We could add per container output, like Bird status. I wanted to have something in a json format, bird can't, i am not sure how to handle this.

Debug command line added to each programs so network interfaces,
neighbor table, routes, rules, connection tracking table, system info,
processes and env variables can be returned in json.
Conntrack table and processes require more privileges, so they have been
removed.
@LionelJouin LionelJouin merged commit 20e1fbc into master Apr 23, 2024
13 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

None yet

2 participants