diff --git a/bpf/.clang-format b/bpf/.clang-format index 1dbb17ab05..69f7a9571c 100644 --- a/bpf/.clang-format +++ b/bpf/.clang-format @@ -2,4 +2,4 @@ BasedOnStyle: LLVM AllowShortIfStatementsOnASingleLine: false AllowShortLoopsOnASingleLine: false -ColumnLimit: 120 +ColumnLimit: 160 diff --git a/bpf/cpu/cpu.bpf.c b/bpf/cpu/cpu.bpf.c index 852caa3a85..5998e5a23a 100644 --- a/bpf/cpu/cpu.bpf.c +++ b/bpf/cpu/cpu.bpf.c @@ -12,10 +12,6 @@ #include "../common.h" #include "hash.h" -//#include -enum { - BPF_F_NO_PREALLOC = (1U << 0), -}; #include #include #include @@ -26,12 +22,10 @@ enum { // Number of frames to walk per tail call iteration. #define MAX_STACK_DEPTH_PER_PROGRAM 15 // Number of BPF tail calls that will be attempted. -// -// invariant: `MAX_TAIL_CALLS * MAX_STACK_DEPTH_PER_PROGRAM` >= -// `MAX_STACK_DEPTH` #define MAX_TAIL_CALLS 10 // Maximum number of frames. #define MAX_STACK_DEPTH 127 +_Static_assert(MAX_TAIL_CALLS * MAX_STACK_DEPTH_PER_PROGRAM >= MAX_STACK_DEPTH, "Not enough iterations to traverse the whole stack"); // Number of unique stacks. #define MAX_STACK_TRACES_ENTRIES 1024 // Number of items in the stack counts aggregation map. @@ -40,12 +34,16 @@ enum { #define MAX_PROCESSES 1500 // Binary search iterations for dwarf based stack walking. // 2^19 can bisect ~524_288 entries. -// -// invariant: `2^MAX_BINARY_SEARCH_DEPTH >= MAX_UNWIND_TABLE_SIZE` #define MAX_BINARY_SEARCH_DEPTH 19 // Size of the unwind table. // 250k * sizeof(stack_unwind_row_t) = 2MB #define MAX_UNWIND_TABLE_SIZE 250 * 1000 +_Static_assert(1 << MAX_BINARY_SEARCH_DEPTH >= MAX_UNWIND_TABLE_SIZE, "Unwind table too small"); + + +// Useful to isolate stack unwinding issues. +#define DISABLE_BPF_HELPER_FP_UNWINDER 1 + // Unwind tables bigger than can't fit in the remaining space // of the current shard are broken up into chunks up to `MAX_UNWIND_TABLE_SIZE`. #define MAX_UNWIND_TABLE_CHUNKS 30 @@ -87,30 +85,28 @@ const volatile struct config_t config = {}; /*============================== MACROS =====================================*/ -#define BPF_MAP(_name, _type, _key_type, _value_type, _max_entries) \ - struct { \ - __uint(type, _type); \ - __uint(max_entries, _max_entries); \ - __type(key, _key_type); \ - __type(value, _value_type); \ +#define BPF_MAP(_name, _type, _key_type, _value_type, _max_entries) \ + struct { \ + __uint(type, _type); \ + __uint(max_entries, _max_entries); \ + __type(key, _key_type); \ + __type(value, _value_type); \ } _name SEC(".maps"); // Stack Traces are slightly different // in that the value is 1 big byte array // of the stack addresses typedef __u64 stack_trace_type[MAX_STACK_DEPTH]; -#define BPF_STACK_TRACE(_name, _max_entries) \ - BPF_MAP(_name, BPF_MAP_TYPE_STACK_TRACE, u32, stack_trace_type, _max_entries); - -#define BPF_HASH(_name, _key_type, _value_type, _max_entries) \ - BPF_MAP(_name, BPF_MAP_TYPE_HASH, _key_type, _value_type, _max_entries); - -#define DEFINE_COUNTER(__func__name) \ - static void BUMP_##__func__name() { \ - u32 *c = bpf_map_lookup_elem(&percpu_stats, &__func__name); \ - if (c != NULL) { \ - *c += 1; \ - } \ +#define BPF_STACK_TRACE(_name, _max_entries) BPF_MAP(_name, BPF_MAP_TYPE_STACK_TRACE, u32, stack_trace_type, _max_entries); + +#define BPF_HASH(_name, _key_type, _value_type, _max_entries) BPF_MAP(_name, BPF_MAP_TYPE_HASH, _key_type, _value_type, _max_entries); + +#define DEFINE_COUNTER(__func__name) \ + static void BUMP_##__func__name() { \ + u32 *c = bpf_map_lookup_elem(&percpu_stats, &__func__name); \ + if (c != NULL) { \ + *c += 1; \ + } \ } /*============================= INTERNAL STRUCTS ============================*/ @@ -294,8 +290,8 @@ static void unwind_print_stats() { return; } - u32 *jit_errors = bpf_map_lookup_elem(&percpu_stats, &UNWIND_JIT_ERRORS); - if (jit_errors == NULL) { + u32 *unknown_jit = bpf_map_lookup_elem(&percpu_stats, &UNWIND_JIT_ERRORS); + if (unknown_jit == NULL) { return; } @@ -305,7 +301,7 @@ static void unwind_print_stats() { bpf_printk("truncated=%lu", *truncated_counter); bpf_printk("catchall=%lu", *catchall_count); bpf_printk("never=%lu", *never); - bpf_printk("jit_failure=%lu", *jit_errors); + bpf_printk("unknown_jit=%lu", *unknown_jit); bpf_printk("total_counter=%lu", *total_counter); bpf_printk("(not_covered=%lu)", *not_covered_count); @@ -329,10 +325,12 @@ static __always_inline void *bpf_map_lookup_or_try_init(void *map, const void *k if (val) return val; - err = bpf_map_update_elem(map, key, init, BPF_NOEXIST); + err = bpf_map_update_elem(map, key, init, BPF_ANY); // ANY? // 17 == EEXIST - if (err && err != -17) + if (err !=0) { + bpf_printk("[error] bpf_map_lookup_or_try_init with ret: %d", err); return 0; + } return bpf_map_lookup_elem(map, key); } @@ -415,8 +413,7 @@ enum find_unwind_table_return { // Finds the shard information for a given pid and program counter. Optionally, // and offset can be passed that will be filled in with the mapping's load // address. -static __always_inline enum find_unwind_table_return find_unwind_table(shard_info_t **shard_info, pid_t pid, u64 pc, - u64 *offset) { +static __always_inline enum find_unwind_table_return find_unwind_table(shard_info_t **shard_info, pid_t pid, u64 pc, u64 *offset) { process_info_t *proc_info = bpf_map_lookup_elem(&process_info, &pid); // Appease the verifier. if (proc_info == NULL) { @@ -493,8 +490,7 @@ static __always_inline enum find_unwind_table_return find_unwind_table(shard_inf } // Aggregate the given stacktrace. -static __always_inline void add_stack(struct bpf_perf_event_data *ctx, u64 pid_tgid, enum stack_walking_method method, - unwind_state_t *unwind_state) { +static __always_inline void add_stack(struct bpf_perf_event_data *ctx, u64 pid_tgid, enum stack_walking_method method, unwind_state_t *unwind_state) { u64 zero = 0; stack_count_key_t stack_key = {0}; @@ -523,8 +519,16 @@ static __always_inline void add_stack(struct bpf_perf_event_data *ctx, u64 pid_t stack_key.user_stack_id = 0; // Insert stack. - bpf_map_update_elem(&dwarf_stack_traces, &stack_hash, &unwind_state->stack, BPF_ANY); + int err = bpf_map_update_elem(&dwarf_stack_traces, &stack_hash, &unwind_state->stack, BPF_ANY); + if (err != 0) { + bpf_printk("[error] bpf_map_update_elem with ret: %d", err); + } + } else if (method == STACK_WALKING_METHOD_FP) { + bpf_printk("[info] fp unwinding %d", DISABLE_BPF_HELPER_FP_UNWINDER); + if (DISABLE_BPF_HELPER_FP_UNWINDER) { + return; + } int stack_id = bpf_get_stackid(ctx, &stack_traces, BPF_F_USER_STACK); if (stack_id >= 0) { stack_key.user_stack_id = stack_id; @@ -591,8 +595,7 @@ int walk_user_stacktrace_impl(struct bpf_perf_event_data *ctx) { bpf_printk("========== left %llu right %llu", left, right); u64 table_idx = find_offset_for_pc(unwind_table, unwind_state->ip - offset, left, right); - if (table_idx == BINARY_SEARCH_NOT_FOUND || table_idx == BINARY_SEARCH_SHOULD_NEVER_HAPPEN || - table_idx == BINARY_SEARCH_EXHAUSTED_ITERATIONS) { + if (table_idx == BINARY_SEARCH_NOT_FOUND || table_idx == BINARY_SEARCH_SHOULD_NEVER_HAPPEN || table_idx == BINARY_SEARCH_EXHAUSTED_ITERATIONS) { bpf_printk("[error] binary search failed with %llx", table_idx); return 1; } @@ -676,7 +679,7 @@ int walk_user_stacktrace_impl(struct bpf_perf_event_data *ctx) { // is *always* 8 bytes ahead of the previous stack pointer. u64 previous_rip_addr = previous_rsp - 8; // the saved return address is 8 bytes ahead of the previous stack pointer u64 previous_rip = 0; - int err = bpf_probe_read_user(&previous_rip, 8, (void *)(previous_rip_addr)); // 8 bytes, a whole word in a 64 bits machine + int err = bpf_probe_read_user(&previous_rip, 8, (void *)(previous_rip_addr)); if (previous_rip == 0) { int user_pid = pid_tgid; @@ -692,9 +695,7 @@ int walk_user_stacktrace_impl(struct bpf_perf_event_data *ctx) { return 1; } - bpf_printk("[error] previous_rip should not be zero. This can mean that " - "the read failed, ret=%d while reading @ %llx.", - err, previous_rip_addr); + bpf_printk("[error] previous_rip should not be zero. This can mean that the read failed, ret=%d while reading @ %llx.", err, previous_rip_addr); BUMP_UNWIND_CATCHALL_ERROR(); return 1; } @@ -706,10 +707,7 @@ int walk_user_stacktrace_impl(struct bpf_perf_event_data *ctx) { } else { u64 previous_rbp_addr = previous_rsp + found_rbp_offset; bpf_printk("\t(bp_offset: %d, bp value stored at %llx)", found_rbp_offset, previous_rbp_addr); - int ret = bpf_probe_read_user(&previous_rbp, 8, - (void *)(previous_rbp_addr)); // 8 bytes, a whole word in a 64 bits - // machine - + int ret = bpf_probe_read_user(&previous_rbp, 8, (void *)(previous_rbp_addr)); if (ret != 0) { bpf_printk("[error] previous_rbp should not be zero. This can mean " "that the read has failed %d.", @@ -747,9 +745,7 @@ int walk_user_stacktrace_impl(struct bpf_perf_event_data *ctx) { bpf_printk("======= reached main! ======="); add_stack(ctx, pid_tgid, STACK_WALKING_METHOD_DWARF, unwind_state); BUMP_UNWIND_SUCCESS(); - bpf_printk("yesssss :)"); } else { - int user_pid = pid_tgid; process_info_t *proc_info = bpf_map_lookup_elem(&process_info, &user_pid); if (proc_info == NULL) { @@ -773,8 +769,7 @@ int walk_user_stacktrace_impl(struct bpf_perf_event_data *ctx) { bpf_tail_call(ctx, &programs, 0); } - // We couldn't walk enough frames - bpf_printk("nooooooo :("); + // We couldn't get the whole stacktrace. BUMP_UNWIND_TRUNCATED(); return 0; } @@ -817,14 +812,16 @@ int profile_cpu(struct bpf_perf_event_data *ctx) { int user_pid = pid_tgid; int user_tgid = pid_tgid >> 32; - if (user_pid == 0) + if (user_pid == 0) { return 0; + } if (config.debug) { - // very noisy + // This can be very noisy // bpf_printk("debug mode enabled, make sure you specified process name"); - if (!is_debug_enabled_for_pid(user_tgid)) + if (!is_debug_enabled_for_pid(user_tgid)) { return 0; + } } bool has_unwind_info = has_unwind_information(user_pid); diff --git a/dnf b/dnf new file mode 120000 index 0000000000..14211964e0 --- /dev/null +++ b/dnf @@ -0,0 +1 @@ +which \ No newline at end of file diff --git a/logs.txt b/logs.txt new file mode 100644 index 0000000000..c284843345 --- /dev/null +++ b/logs.txt @@ -0,0 +1,58551 @@ +ooooooooo. .o. . +`888 `Y88. .888. .o8 + 888 .d88' .oooo. oooo d8b .ooooo. .oooo. .8"888. .oooooooo .ooooo. ooo. .oo. .o888oo + 888ooo88P' `P )88b `888""8P d88' `"Y8 `P )88b .8' `888. 888' `88b d88' `88b `888P"Y88b 888 + 888 .oP"888 888 888 .oP"888 .88ooo8888. 888 888 888ooo888 888 888 888 + 888 d8( 888 888 888 .o8 d8( 888 .8' `888. `88bod8P' 888 .o 888 888 888 . +o888o `Y888""8o d888b `Y8bod8P' `Y888""8o o88o o8888o `8oooooo. `Y8bod8P' o888o o888o "888" + d" YD + "Y88888P' + +level=info name=parca-agent ts=2023-01-25T11:15:42.423650286Z caller=main.go:240 msg="eBPF is supported and enabled by the host kernel" +level=debug name=parca-agent ts=2023-01-25T11:15:42.42374252Z caller=main.go:258 msg="parca-agent initialized" version= commit=38abbc53114eba930073d1c21677de51ec61ce29 date=2023-01-25T10:09:24Z config="{LogLevel:debug HTTPAddress::7071 Node:test ConfigPath: MemlockRlimit:0 ProfilingDuration:10s ProfilingCPUSamplingFrequency:19 MetadataExternalLabels:map[] MetadataContainerRuntimeSocketPath: LocalStoreDirectory: RemoteStoreAddress:127.0.0.1:7070 RemoteStoreBearerToken: RemoteStoreBearerTokenFile: RemoteStoreInsecure:true RemoteStoreInsecureSkipVerify:false RemoteStoreDebuginfoUploadDisable:false RemoteStoreBatchWriteInterval:10s DebuginfoDirectories:[/usr/lib/debug] DebuginfoTempDir:/tmp DebuginfoStrip:true DebuginfoUploadCacheDuration:5m0s DebuginfoUploadTimeoutDuration:2m0s DebugProcessNames:[] ExperimentalEnableDWARFUnwinding:true}" arch=amd64 +name=parca-agent ts=2023-01-25T11:15:42.423923856Z caller=main.go:317 msg=starting... node=test store=127.0.0.1:7070 +level=debug name=parca-agent ts=2023-01-25T11:15:42.424113412Z caller=discovery_manager.go:310 msg="cannot create service discovery" err="create kubernetes client: create in-cluster config: unable to load in-cluster configuration, KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT must be defined" type=test +level=debug name=parca-agent ts=2023-01-25T11:15:42.424155632Z caller=discovery_manager.go:186 msg="starting provider" provider=systemd/0 subs=[all] +level=debug name=parca-agent ts=2023-01-25T11:15:42.424828975Z caller=main.go:302 msg="starting: batch write client" +level=debug name=parca-agent ts=2023-01-25T11:15:42.424856908Z caller=main.go:345 msg="starting: discovery manager" +level=debug name=parca-agent ts=2023-01-25T11:15:42.424877245Z caller=main.go:561 msg="starting: profiler" name=parca_agent_cpu +level=debug name=parca-agent ts=2023-01-25T11:15:42.424888027Z caller=cpu.go:196 msg="starting cpu profiler" +level=debug name=parca-agent ts=2023-01-25T11:15:42.424914864Z caller=main.go:583 msg="starting: http server" +level=debug name=parca-agent ts=2023-01-25T11:15:42.425365579Z caller=cpu.go:217 msg="actual memory locked rlimit" cur="537 MB" max="537 MB" +level=warn name=parca-agent ts=2023-01-25T11:15:42.655731885Z caller=systemd.go:92 discovery=systemd msg="failed to find PIDs that share the same namespace" err="readlink /proc/73870/ns/net: no such file or directory" unit=gdm.service +level=warn name=parca-agent ts=2023-01-25T11:15:42.672721924Z caller=systemd.go:92 discovery=systemd msg="failed to find PIDs that share the same namespace" err="open /proc/73870/ns: no such file or directory" unit=postgresql.service +level=warn name=parca-agent ts=2023-01-25T11:15:42.691000229Z caller=systemd.go:92 discovery=systemd msg="failed to find PIDs that share the same namespace" err="open /proc/73876/ns: no such file or directory" unit=systemd-userdbd.service +level=debug name=parca-agent ts=2023-01-25T11:15:43.047903516Z caller=cpu.go:326 msg="debug process matchers found, starting process watcher" +level=debug name=parca-agent ts=2023-01-25T11:15:43.047934971Z caller=cpu.go:333 msg="start profiling loop" +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:15:48.049968534Z caller=cpu.go:495 msg="adding unwind tables" pid=1 +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 0 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5628147b8000, StartAddr: 0x5628147f0000, EndAddr: 0x5628148e2000, Executable:/usr/lib/systemd/systemd} +[info] adding memory mappings in for executable with ID 0 buildId e07b76a68d46d6098028ed5d50f4dfa83c490ab4 exec /usr/lib/systemd/systemd +-> caching - new mapping +=> found 18765 unwind entries for /usr/lib/systemd/systemd low pc 38020 high pc 129fb1 +- current chunk size 18765 +- rest of chunk size 0 +- lowindex [ 0 : 18765 ] highIndex +- executable 0 mapping /usr/lib/systemd/systemd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 18765 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 1 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - new mapping +=> found 1279 unwind entries for /usr/lib64/libelf-0.187.so low pc 3020 high pc 13ea5 +- current chunk size 1279 +- rest of chunk size 0 +- lowindex [ 18765 : 20044 ] highIndex +- executable 1 mapping /usr/lib64/libelf-0.187.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 20044 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 2 buildId d6980844066013271b32b9e7705e24b67ccf320b exec /usr/lib64/libbpf.so.0.8.0 +-> caching - new mapping +=> found 5019 unwind entries for /usr/lib64/libbpf.so.0.8.0 low pc b020 high pc 58560 +- current chunk size 5019 +- rest of chunk size 0 +- lowindex [ 20044 : 25063 ] highIndex +- executable 2 mapping /usr/lib64/libbpf.so.0.8.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 25063 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 3 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - new mapping +=> found 5639 unwind entries for /usr/lib64/libpcre2-8.so.0.11.0 low pc 3020 high pc 6e548 +- current chunk size 5639 +- rest of chunk size 0 +- lowindex [ 25063 : 30702 ] highIndex +- executable 3 mapping /usr/lib64/libpcre2-8.so.0.11.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 30702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 4 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - new mapping +=> found 5419 unwind entries for /usr/lib64/libm.so.6 low pc e020 high pc 7fda8 +- current chunk size 5419 +- rest of chunk size 0 +- lowindex [ 30702 : 36121 ] highIndex +- executable 4 mapping /usr/lib64/libm.so.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 36121 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 5 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - new mapping +=> found 20165 unwind entries for /usr/lib64/libp11-kit.so.0.3.0 low pc 29020 high pc c9760 +- current chunk size 20165 +- rest of chunk size 0 +- lowindex [ 36121 : 56286 ] highIndex +- executable 5 mapping /usr/lib64/libp11-kit.so.0.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 56286 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 6 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - new mapping +=> found 68551 unwind entries for /usr/lib64/libcrypto.so.3.0.5 low pc ad020 high pc 301e22 +- current chunk size 68551 +- rest of chunk size 0 +- lowindex [ 56286 : 124837 ] highIndex +- executable 6 mapping /usr/lib64/libcrypto.so.3.0.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 124837 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 7 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - new mapping +=> found 346 unwind entries for /usr/lib64/libffi.so.8.1.0 low pc 2020 high pc 7b20 +- current chunk size 346 +- rest of chunk size 0 +- lowindex [ 124837 : 125183 ] highIndex +- executable 7 mapping /usr/lib64/libffi.so.8.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 125183 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 8 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - new mapping +=> found 2270 unwind entries for /usr/lib64/libgpg-error.so.0.33.0 low pc 4020 high pc 192b2 +- current chunk size 2270 +- rest of chunk size 0 +- lowindex [ 125183 : 127453 ] highIndex +- executable 8 mapping /usr/lib64/libgpg-error.so.0.33.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 127453 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 9 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - new mapping +=> found 275 unwind entries for /usr/lib64/libattr.so.1.1.2501 low pc 2020 high pc 460e +- current chunk size 275 +- rest of chunk size 0 +- lowindex [ 127453 : 127728 ] highIndex +- executable 9 mapping /usr/lib64/libattr.so.1.1.2501 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 127728 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 10 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - new mapping +=> found 1042 unwind entries for /usr/lib64/libz.so.1.2.12 low pc 3020 high pc 10bab +- current chunk size 1042 +- rest of chunk size 0 +- lowindex [ 127728 : 128770 ] highIndex +- executable 10 mapping /usr/lib64/libz.so.1.2.12 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 128770 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 11 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - new mapping +=> found 315 unwind entries for /usr/lib64/libcap-ng.so.0.0.0 low pc 2020 high pc 5070 +- current chunk size 315 +- rest of chunk size 0 +- lowindex [ 128770 : 129085 ] highIndex +- executable 11 mapping /usr/lib64/libcap-ng.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 129085 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 12 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - new mapping +=> found 2641 unwind entries for /usr/lib64/liblzma.so.5.2.5 low pc 3020 high pc 1d5ee +- current chunk size 2641 +- rest of chunk size 0 +- lowindex [ 129085 : 131726 ] highIndex +- executable 12 mapping /usr/lib64/liblzma.so.5.2.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 131726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 13 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - new mapping +=> found 11780 unwind entries for /usr/lib64/libgcrypt.so.20.4.1 low pc e020 high pc f34be +- current chunk size 11780 +- rest of chunk size 0 +- lowindex [ 131726 : 143506 ] highIndex +- executable 13 mapping /usr/lib64/libgcrypt.so.20.4.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 143506 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 14 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - new mapping +=> found 24883 unwind entries for /usr/lib64/libc.so.6 low pc 28000 high pc 19b07c +- current chunk size 24883 +- rest of chunk size 0 +- lowindex [ 143506 : 168389 ] highIndex +- executable 14 mapping /usr/lib64/libc.so.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 168389 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 15 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - new mapping +=> found 672 unwind entries for /usr/lib64/libeconf.so.0.4.0 low pc 2020 high pc 6bb1 +- current chunk size 672 +- rest of chunk size 0 +- lowindex [ 168389 : 169061 ] highIndex +- executable 15 mapping /usr/lib64/libeconf.so.0.4.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 169061 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 16 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - new mapping +=> found 6628 unwind entries for /usr/lib64/libzstd.so.1.5.2 low pc 5020 high pc 9f74c +- current chunk size 6628 +- rest of chunk size 0 +- lowindex [ 169061 : 175689 ] highIndex +- executable 16 mapping /usr/lib64/libzstd.so.1.5.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 175689 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 17 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - new mapping +=> found 1156 unwind entries for /usr/lib64/liblz4.so.1.9.3 low pc 3020 high pc 1eaed +- current chunk size 1156 +- rest of chunk size 0 +- lowindex [ 175689 : 176845 ] highIndex +- executable 17 mapping /usr/lib64/liblz4.so.1.9.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 176845 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 18 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - new mapping +=> found 1275 unwind entries for /usr/lib64/libcrypt.so.2.0.0 low pc 2020 high pc 15ad4 +- current chunk size 1275 +- rest of chunk size 0 +- lowindex [ 176845 : 178120 ] highIndex +- executable 18 mapping /usr/lib64/libcrypt.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 178120 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 19 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - new mapping +=> found 484 unwind entries for /usr/lib64/libcap.so.2.48 low pc 2020 high pc 597a +- current chunk size 484 +- rest of chunk size 0 +- lowindex [ 178120 : 178604 ] highIndex +- executable 19 mapping /usr/lib64/libcap.so.2.48 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 178604 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 20 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - new mapping +=> found 3506 unwind entries for /usr/lib64/libblkid.so.1.1.0 low pc 8020 high pc 27d82 +- current chunk size 3506 +- rest of chunk size 0 +- lowindex [ 178604 : 182110 ] highIndex +- executable 20 mapping /usr/lib64/libblkid.so.1.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 182110 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 21 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - new mapping +=> found 1244 unwind entries for /usr/lib64/libgcc_s-12-20221121.so.1 low pc 3020 high pc 19c05 +- current chunk size 1244 +- rest of chunk size 0 +- lowindex [ 182110 : 183354 ] highIndex +- executable 21 mapping /usr/lib64/libgcc_s-12-20221121.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 183354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 22 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - new mapping +=> found 796 unwind entries for /usr/lib64/libaudit.so.1.0.0 low pc 3020 high pc a894 +- current chunk size 796 +- rest of chunk size 0 +- lowindex [ 183354 : 184150 ] highIndex +- executable 22 mapping /usr/lib64/libaudit.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 184150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 23 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - new mapping +=> found 3712 unwind entries for /usr/lib64/libmount.so.1.1.0 low pc a020 high pc 361f2 +- current chunk size 3712 +- rest of chunk size 0 +- lowindex [ 184150 : 187862 ] highIndex +- executable 23 mapping /usr/lib64/libmount.so.1.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 187862 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 24 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - new mapping +=> found 46840 unwind entries for /usr/lib/systemd/libsystemd-shared-250.so low pc 65020 high pc 257520 +- current chunk size 46840 +- rest of chunk size 0 +- lowindex [ 187862 : 234702 ] highIndex +- executable 24 mapping /usr/lib/systemd/libsystemd-shared-250.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 234702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 25 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - new mapping +=> found 410 unwind entries for /usr/lib64/libacl.so.1.1.2301 low pc 2020 high pc 5ff0 +- current chunk size 410 +- rest of chunk size 0 +- lowindex [ 234702 : 235112 ] highIndex +- executable 25 mapping /usr/lib64/libacl.so.1.1.2301 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 235112 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 26 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - new mapping +=> found 1762 unwind entries for /usr/lib64/libkmod.so.2.3.7 low pc 4020 high pc 15275 +- current chunk size 1762 +- rest of chunk size 0 +- lowindex [ 235112 : 236874 ] highIndex +- executable 26 mapping /usr/lib64/libkmod.so.2.3.7 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 236874 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 27 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - new mapping +=> found 778 unwind entries for /usr/lib64/libpam.so.0.85.1 low pc 3020 high pc bb5c +- current chunk size 778 +- rest of chunk size 0 +- lowindex [ 236874 : 237652 ] highIndex +- executable 27 mapping /usr/lib64/libpam.so.0.85.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 237652 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 28 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - new mapping +=> found 3124 unwind entries for /usr/lib64/libselinux.so.1 low pc 6020 high pc 1fa0c +- current chunk size 3124 +- rest of chunk size 0 +- lowindex [ 237652 : 240776 ] highIndex +- executable 28 mapping /usr/lib64/libselinux.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 240776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 29 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - new mapping +=> found 860 unwind entries for /usr/lib64/libseccomp.so.2.5.3 low pc 2020 high pc f733 +- current chunk size 860 +- rest of chunk size 0 +- lowindex [ 240776 : 241636 ] highIndex +- executable 29 mapping /usr/lib64/libseccomp.so.2.5.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 241636 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 30 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - new mapping +=> found 2305 unwind entries for /usr/lib64/ld-linux-x86-64.so.2 low pc 2000 high pc 28d65 +- current chunk size 2305 +- rest of chunk size 0 +- lowindex [ 241636 : 243941 ] highIndex +- executable 30 mapping /usr/lib64/ld-linux-x86-64.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 243941 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 243941 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.170922274Z caller=cpu.go:495 msg="adding unwind tables" pid=2 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.170986027Z caller=cpu.go:495 msg="adding unwind tables" pid=3 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171033207Z caller=cpu.go:495 msg="adding unwind tables" pid=4 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171077726Z caller=cpu.go:495 msg="adding unwind tables" pid=5 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171117858Z caller=cpu.go:495 msg="adding unwind tables" pid=6 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171160407Z caller=cpu.go:495 msg="adding unwind tables" pid=8 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17120175Z caller=cpu.go:495 msg="adding unwind tables" pid=10 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171240003Z caller=cpu.go:495 msg="adding unwind tables" pid=12 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171280944Z caller=cpu.go:495 msg="adding unwind tables" pid=13 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17132108Z caller=cpu.go:495 msg="adding unwind tables" pid=14 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171363626Z caller=cpu.go:495 msg="adding unwind tables" pid=15 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171411407Z caller=cpu.go:495 msg="adding unwind tables" pid=16 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171448415Z caller=cpu.go:495 msg="adding unwind tables" pid=17 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171488065Z caller=cpu.go:495 msg="adding unwind tables" pid=19 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171526423Z caller=cpu.go:495 msg="adding unwind tables" pid=20 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171565042Z caller=cpu.go:495 msg="adding unwind tables" pid=21 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171607933Z caller=cpu.go:495 msg="adding unwind tables" pid=22 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17164718Z caller=cpu.go:495 msg="adding unwind tables" pid=24 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171686745Z caller=cpu.go:495 msg="adding unwind tables" pid=25 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171725058Z caller=cpu.go:495 msg="adding unwind tables" pid=26 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17176222Z caller=cpu.go:495 msg="adding unwind tables" pid=27 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171800507Z caller=cpu.go:495 msg="adding unwind tables" pid=29 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171843658Z caller=cpu.go:495 msg="adding unwind tables" pid=30 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17188142Z caller=cpu.go:495 msg="adding unwind tables" pid=31 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171922794Z caller=cpu.go:495 msg="adding unwind tables" pid=32 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.171959412Z caller=cpu.go:495 msg="adding unwind tables" pid=34 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172000586Z caller=cpu.go:495 msg="adding unwind tables" pid=35 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172039278Z caller=cpu.go:495 msg="adding unwind tables" pid=36 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172078708Z caller=cpu.go:495 msg="adding unwind tables" pid=37 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172117106Z caller=cpu.go:495 msg="adding unwind tables" pid=39 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172154715Z caller=cpu.go:495 msg="adding unwind tables" pid=40 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172196177Z caller=cpu.go:495 msg="adding unwind tables" pid=41 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17223306Z caller=cpu.go:495 msg="adding unwind tables" pid=42 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172274253Z caller=cpu.go:495 msg="adding unwind tables" pid=44 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172313181Z caller=cpu.go:495 msg="adding unwind tables" pid=45 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172353313Z caller=cpu.go:495 msg="adding unwind tables" pid=46 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172390099Z caller=cpu.go:495 msg="adding unwind tables" pid=47 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172427999Z caller=cpu.go:495 msg="adding unwind tables" pid=49 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172466259Z caller=cpu.go:495 msg="adding unwind tables" pid=50 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172504773Z caller=cpu.go:495 msg="adding unwind tables" pid=51 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172549929Z caller=cpu.go:495 msg="adding unwind tables" pid=52 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172585666Z caller=cpu.go:495 msg="adding unwind tables" pid=54 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172629909Z caller=cpu.go:495 msg="adding unwind tables" pid=55 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172670187Z caller=cpu.go:495 msg="adding unwind tables" pid=56 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172713Z caller=cpu.go:495 msg="adding unwind tables" pid=57 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172750105Z caller=cpu.go:495 msg="adding unwind tables" pid=59 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172789283Z caller=cpu.go:495 msg="adding unwind tables" pid=60 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17282947Z caller=cpu.go:495 msg="adding unwind tables" pid=61 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172868777Z caller=cpu.go:495 msg="adding unwind tables" pid=62 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17291037Z caller=cpu.go:495 msg="adding unwind tables" pid=64 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172955764Z caller=cpu.go:495 msg="adding unwind tables" pid=65 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.172996698Z caller=cpu.go:495 msg="adding unwind tables" pid=66 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173041851Z caller=cpu.go:495 msg="adding unwind tables" pid=67 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173084303Z caller=cpu.go:495 msg="adding unwind tables" pid=69 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173125171Z caller=cpu.go:495 msg="adding unwind tables" pid=70 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173165829Z caller=cpu.go:495 msg="adding unwind tables" pid=71 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173206071Z caller=cpu.go:495 msg="adding unwind tables" pid=72 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173246261Z caller=cpu.go:495 msg="adding unwind tables" pid=74 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173288211Z caller=cpu.go:495 msg="adding unwind tables" pid=75 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173331311Z caller=cpu.go:495 msg="adding unwind tables" pid=76 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173369744Z caller=cpu.go:495 msg="adding unwind tables" pid=77 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173410065Z caller=cpu.go:495 msg="adding unwind tables" pid=79 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173449014Z caller=cpu.go:495 msg="adding unwind tables" pid=80 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173488707Z caller=cpu.go:495 msg="adding unwind tables" pid=81 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.1735279Z caller=cpu.go:495 msg="adding unwind tables" pid=82 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173569702Z caller=cpu.go:495 msg="adding unwind tables" pid=83 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173611166Z caller=cpu.go:495 msg="adding unwind tables" pid=84 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173650182Z caller=cpu.go:495 msg="adding unwind tables" pid=85 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173688721Z caller=cpu.go:495 msg="adding unwind tables" pid=86 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173729631Z caller=cpu.go:495 msg="adding unwind tables" pid=87 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173767461Z caller=cpu.go:495 msg="adding unwind tables" pid=91 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173809757Z caller=cpu.go:495 msg="adding unwind tables" pid=92 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173851498Z caller=cpu.go:495 msg="adding unwind tables" pid=93 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173891187Z caller=cpu.go:495 msg="adding unwind tables" pid=94 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173930557Z caller=cpu.go:495 msg="adding unwind tables" pid=95 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.173975986Z caller=cpu.go:495 msg="adding unwind tables" pid=97 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174018704Z caller=cpu.go:495 msg="adding unwind tables" pid=98 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17405453Z caller=cpu.go:495 msg="adding unwind tables" pid=105 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174089445Z caller=cpu.go:495 msg="adding unwind tables" pid=112 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174128529Z caller=cpu.go:495 msg="adding unwind tables" pid=113 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174175992Z caller=cpu.go:495 msg="adding unwind tables" pid=114 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174218903Z caller=cpu.go:495 msg="adding unwind tables" pid=115 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17426517Z caller=cpu.go:495 msg="adding unwind tables" pid=116 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174307712Z caller=cpu.go:495 msg="adding unwind tables" pid=117 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174354394Z caller=cpu.go:495 msg="adding unwind tables" pid=119 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174403269Z caller=cpu.go:495 msg="adding unwind tables" pid=120 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174448088Z caller=cpu.go:495 msg="adding unwind tables" pid=121 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174492005Z caller=cpu.go:495 msg="adding unwind tables" pid=122 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174533513Z caller=cpu.go:495 msg="adding unwind tables" pid=123 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17457797Z caller=cpu.go:495 msg="adding unwind tables" pid=124 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174630198Z caller=cpu.go:495 msg="adding unwind tables" pid=125 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174671611Z caller=cpu.go:495 msg="adding unwind tables" pid=126 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174711165Z caller=cpu.go:495 msg="adding unwind tables" pid=127 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174755065Z caller=cpu.go:495 msg="adding unwind tables" pid=128 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17479744Z caller=cpu.go:495 msg="adding unwind tables" pid=129 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17483617Z caller=cpu.go:495 msg="adding unwind tables" pid=130 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174876723Z caller=cpu.go:495 msg="adding unwind tables" pid=134 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174927237Z caller=cpu.go:495 msg="adding unwind tables" pid=135 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.174968493Z caller=cpu.go:495 msg="adding unwind tables" pid=136 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175011618Z caller=cpu.go:495 msg="adding unwind tables" pid=137 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175050201Z caller=cpu.go:495 msg="adding unwind tables" pid=143 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175089669Z caller=cpu.go:495 msg="adding unwind tables" pid=152 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175126645Z caller=cpu.go:495 msg="adding unwind tables" pid=161 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175171087Z caller=cpu.go:495 msg="adding unwind tables" pid=276 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175205929Z caller=cpu.go:495 msg="adding unwind tables" pid=278 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175240984Z caller=cpu.go:495 msg="adding unwind tables" pid=281 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175278793Z caller=cpu.go:495 msg="adding unwind tables" pid=319 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17531572Z caller=cpu.go:495 msg="adding unwind tables" pid=322 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175350285Z caller=cpu.go:495 msg="adding unwind tables" pid=324 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175389528Z caller=cpu.go:495 msg="adding unwind tables" pid=415 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17542784Z caller=cpu.go:495 msg="adding unwind tables" pid=439 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175463576Z caller=cpu.go:495 msg="adding unwind tables" pid=452 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175501718Z caller=cpu.go:495 msg="adding unwind tables" pid=453 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175538149Z caller=cpu.go:495 msg="adding unwind tables" pid=511 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175572386Z caller=cpu.go:495 msg="adding unwind tables" pid=512 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175621991Z caller=cpu.go:495 msg="adding unwind tables" pid=513 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175665643Z caller=cpu.go:495 msg="adding unwind tables" pid=532 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17570375Z caller=cpu.go:495 msg="adding unwind tables" pid=533 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175740612Z caller=cpu.go:495 msg="adding unwind tables" pid=534 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175778895Z caller=cpu.go:495 msg="adding unwind tables" pid=535 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175816577Z caller=cpu.go:495 msg="adding unwind tables" pid=536 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175854114Z caller=cpu.go:495 msg="adding unwind tables" pid=537 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175901212Z caller=cpu.go:495 msg="adding unwind tables" pid=538 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175947948Z caller=cpu.go:495 msg="adding unwind tables" pid=539 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.175989821Z caller=cpu.go:495 msg="adding unwind tables" pid=540 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.176033148Z caller=cpu.go:495 msg="adding unwind tables" pid=541 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.176226638Z caller=cpu.go:495 msg="adding unwind tables" pid=542 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.176296942Z caller=cpu.go:495 msg="adding unwind tables" pid=543 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.176344315Z caller=cpu.go:495 msg="adding unwind tables" pid=544 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.17638337Z caller=cpu.go:495 msg="adding unwind tables" pid=545 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.176426381Z caller=cpu.go:495 msg="adding unwind tables" pid=546 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.176464767Z caller=cpu.go:495 msg="adding unwind tables" pid=547 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.176506126Z caller=cpu.go:495 msg="adding unwind tables" pid=548 +level=info name=parca-agent ts=2023-01-25T11:15:48.176908392Z caller=cpu.go:495 msg="adding unwind tables" pid=661 +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 243941 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bce477a000, StartAddr: 0x55bce4781000, EndAddr: 0x55bce479b000, Executable:/usr/lib/systemd/systemd-journald} +[info] adding memory mappings in for executable with ID 31 buildId d0e54e256e424b6782b13d3361c0dc58cd3904e3 exec /usr/lib/systemd/systemd-journald +-> caching - new mapping +=> found 1435 unwind entries for /usr/lib/systemd/systemd-journald low pc 7020 high pc 201be +- current chunk size 1435 +- rest of chunk size 0 +- lowindex [ 243941 : 245376 ] highIndex +- executable 31 mapping /usr/lib/systemd/systemd-journald shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 32 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.181623066Z caller=cpu.go:495 msg="adding unwind tables" pid=675 +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 245376 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a85bf2d000, StartAddr: 0x55a85bf40000, EndAddr: 0x55a85bf7b000, Executable:/usr/bin/udevadm} +[info] adding memory mappings in for executable with ID 32 buildId 845d5ee5ea9f58f479c04525b2295b71edb26a9e exec /usr/bin/udevadm +-> caching - new mapping +=> found 2922 unwind entries for /usr/bin/udevadm low pc 13020 high pc 4d3d7 +- current chunk size 2922 +- rest of chunk size 0 +- lowindex [ 245376 : 248298 ] highIndex +- executable 32 mapping /usr/bin/udevadm shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 33 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.186687892Z caller=cpu.go:495 msg="adding unwind tables" pid=726 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.186746147Z caller=cpu.go:495 msg="adding unwind tables" pid=734 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.186794398Z caller=cpu.go:495 msg="adding unwind tables" pid=735 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.186841415Z caller=cpu.go:495 msg="adding unwind tables" pid=743 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.18688515Z caller=cpu.go:495 msg="adding unwind tables" pid=776 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.186931023Z caller=cpu.go:495 msg="adding unwind tables" pid=777 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.186975925Z caller=cpu.go:495 msg="adding unwind tables" pid=818 +level=info name=parca-agent ts=2023-01-25T11:15:48.187158138Z caller=cpu.go:495 msg="adding unwind tables" pid=829 +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248298 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ac79dac000, StartAddr: 0x55ac79db0000, EndAddr: 0x55ac79db7000, Executable:/usr/lib/systemd/systemd-oomd} +[info] adding memory mappings in for executable with ID 33 buildId 69640c33ce903aa9fc9c56085eec26e0837957a3 exec /usr/lib/systemd/systemd-oomd +-> caching - new mapping +=> found 288 unwind entries for /usr/lib/systemd/systemd-oomd low pc 4020 high pc ac1c +- current chunk size 288 +- rest of chunk size 0 +- lowindex [ 248298 : 248586 ] highIndex +- executable 33 mapping /usr/lib/systemd/systemd-oomd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 34 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.205810203Z caller=cpu.go:495 msg="adding unwind tables" pid=831 +======================================================================================== +setUnwindTable called (total shards: 0 , total entries: 248586 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f0f6b0c000, StartAddr: 0x55f0f6b18000, EndAddr: 0x55f0f6b6d000, Executable:/usr/lib/systemd/systemd-resolved} +[info] adding memory mappings in for executable with ID 34 buildId 1b3464f64f211a5442ec62df7670c3b642b18b50 exec /usr/lib/systemd/systemd-resolved +-> caching - new mapping +=> found 5763 unwind entries for /usr/lib/systemd/systemd-resolved low pc c020 high pc 60a1e +- current chunk size 1414 +- rest of chunk size 4349 +- lowindex [ 248586 : 250000 ] highIndex +- executable 34 mapping /usr/lib/systemd/systemd-resolved shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 4349 +- rest of chunk size 0 +- lowindex [ 0 : 4349 ] highIndex +- executable 34 mapping /usr/lib/systemd/systemd-resolved shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 254349 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 35 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - new mapping +=> found 3906 unwind entries for /usr/lib64/libunistring.so.2.2.0 low pc 12020 high pc 53848 +- current chunk size 3906 +- rest of chunk size 0 +- lowindex [ 4349 : 8255 ] highIndex +- executable 35 mapping /usr/lib64/libunistring.so.2.2.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258255 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 36 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - new mapping +=> found 366 unwind entries for /usr/lib64/libidn2.so.0.3.8 low pc 4020 high pc 86e9 +- current chunk size 366 +- rest of chunk size 0 +- lowindex [ 8255 : 8621 ] highIndex +- executable 36 mapping /usr/lib64/libidn2.so.0.3.8 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 258621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 37 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - new mapping +=> found 8122 unwind entries for /usr/lib64/libssl.so.3.0.5 low pc 1e020 high pc 78549 +- current chunk size 8122 +- rest of chunk size 0 +- lowindex [ 8621 : 16743 ] highIndex +- executable 37 mapping /usr/lib64/libssl.so.3.0.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 38 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 38 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 38 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 38 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 38 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 38 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 38 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 38 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.218117746Z caller=cpu.go:495 msg="adding unwind tables" pid=833 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 266743 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558d85348000, StartAddr: 0x558d8534b000, EndAddr: 0x558d85351000, Executable:/usr/lib/systemd/systemd-timesyncd} +[info] adding memory mappings in for executable with ID 38 buildId c3c62725824dd7083c1d30341c0a5a5bcb9219ce exec /usr/lib/systemd/systemd-timesyncd +-> caching - new mapping +=> found 330 unwind entries for /usr/lib/systemd/systemd-timesyncd low pc 3020 high pc 8e6a +- current chunk size 330 +- rest of chunk size 0 +- lowindex [ 16743 : 17073 ] highIndex +- executable 38 mapping /usr/lib/systemd/systemd-timesyncd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 267073 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 39 buildId d2adea0bb9957ff20330e50a2eaeb95e2bcf6148 exec /usr/lib64/libnss_resolve.so.2 +-> caching - new mapping +=> found 1698 unwind entries for /usr/lib64/libnss_resolve.so.2 low pc 3020 high pc 19510 +- current chunk size 1698 +- rest of chunk size 0 +- lowindex [ 17073 : 18771 ] highIndex +- executable 39 mapping /usr/lib64/libnss_resolve.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 268771 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 40 buildId fe461d55e34f82892fff98869493b1faba410e52 exec /usr/lib64/libnss_mdns4_minimal.so.2 +-> caching - new mapping +=> found 130 unwind entries for /usr/lib64/libnss_mdns4_minimal.so.2 low pc 1020 high pc 2367 +- current chunk size 130 +- rest of chunk size 0 +- lowindex [ 18771 : 18901 ] highIndex +- executable 40 mapping /usr/lib64/libnss_mdns4_minimal.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 268901 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 41 buildId dafdffba96104f365a8ea751c4c97282f3c46263 exec /usr/lib64/libnss_myhostname.so.2 +-> caching - new mapping +=> found 1402 unwind entries for /usr/lib64/libnss_myhostname.so.2 low pc 4020 high pc 12a10 +- current chunk size 1402 +- rest of chunk size 0 +- lowindex [ 18901 : 20303 ] highIndex +- executable 41 mapping /usr/lib64/libnss_myhostname.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 42 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.223569954Z caller=cpu.go:495 msg="adding unwind tables" pid=836 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270303 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5594d9156000, StartAddr: 0x5594d9158000, EndAddr: 0x5594d915a000, Executable:/usr/lib/systemd/systemd-userdbd} +[info] adding memory mappings in for executable with ID 42 buildId 2e7fe4e339413de308ca979fa067f3ce972e856a exec /usr/lib/systemd/systemd-userdbd +-> caching - new mapping +=> found 62 unwind entries for /usr/lib/systemd/systemd-userdbd low pc 2020 high pc 3951 +- current chunk size 62 +- rest of chunk size 0 +- lowindex [ 20303 : 20365 ] highIndex +- executable 42 mapping /usr/lib/systemd/systemd-userdbd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 43 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.226092407Z caller=cpu.go:495 msg="adding unwind tables" pid=837 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 270365 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564528766000, StartAddr: 0x56452876b000, EndAddr: 0x564528780000, Executable:/usr/sbin/auditd} +[info] adding memory mappings in for executable with ID 43 buildId 37492fb85d104e1e317793185aa63509774c7892 exec /usr/sbin/auditd +-> caching - new mapping +=> found 2214 unwind entries for /usr/sbin/auditd low pc 5020 high pc 19232 +- current chunk size 2214 +- rest of chunk size 0 +- lowindex [ 20365 : 22579 ] highIndex +- executable 43 mapping /usr/sbin/auditd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 272579 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 44 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 272579 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 44 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 272579 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 44 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 272579 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 44 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 272579 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 44 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - new mapping +=> found 732 unwind entries for /usr/lib64/libresolv.so.2 low pc 4020 high pc c3d9 +- current chunk size 732 +- rest of chunk size 0 +- lowindex [ 22579 : 23311 ] highIndex +- executable 44 mapping /usr/lib64/libresolv.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 273311 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 45 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 273311 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 45 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - new mapping +=> found 229 unwind entries for /usr/lib64/libkeyutils.so.1.9 low pc 2020 high pc 3659 +- current chunk size 229 +- rest of chunk size 0 +- lowindex [ 23311 : 23540 ] highIndex +- executable 45 mapping /usr/lib64/libkeyutils.so.1.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 273540 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 46 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - new mapping +=> found 1037 unwind entries for /usr/lib64/libkrb5support.so.0.1 low pc 4020 high pc bb22 +- current chunk size 1037 +- rest of chunk size 0 +- lowindex [ 23540 : 24577 ] highIndex +- executable 46 mapping /usr/lib64/libkrb5support.so.0.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 274577 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 47 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - new mapping +=> found 114 unwind entries for /usr/lib64/libcom_err.so.2.1 low pc 2020 high pc 3039 +- current chunk size 114 +- rest of chunk size 0 +- lowindex [ 24577 : 24691 ] highIndex +- executable 47 mapping /usr/lib64/libcom_err.so.2.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 274691 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 48 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - new mapping +=> found 1802 unwind entries for /usr/lib64/libk5crypto.so.3.1 low pc 5020 high pc 11612 +- current chunk size 1802 +- rest of chunk size 0 +- lowindex [ 24691 : 26493 ] highIndex +- executable 48 mapping /usr/lib64/libk5crypto.so.3.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 276493 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 49 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 276493 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 49 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - new mapping +=> found 13711 unwind entries for /usr/lib64/libkrb5.so.3.3 low pc 23020 high pc 8d18e +- current chunk size 13711 +- rest of chunk size 0 +- lowindex [ 26493 : 40204 ] highIndex +- executable 49 mapping /usr/lib64/libkrb5.so.3.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 290204 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 50 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - new mapping +=> found 5522 unwind entries for /usr/lib64/libgssapi_krb5.so.2.2 low pc c020 high pc 46150 +- current chunk size 5522 +- rest of chunk size 0 +- lowindex [ 40204 : 45726 ] highIndex +- executable 50 mapping /usr/lib64/libgssapi_krb5.so.2.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 295726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 51 buildId 9f128dad6e1baba7fd7e2c553551af5b7281e62c exec /usr/lib64/libauparse.so.0.0.0 +-> caching - new mapping +=> found 1740 unwind entries for /usr/lib64/libauparse.so.0.0.0 low pc 3020 high pc 151d0 +- current chunk size 1740 +- rest of chunk size 0 +- lowindex [ 45726 : 47466 ] highIndex +- executable 51 mapping /usr/lib64/libauparse.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 297466 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 52 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 297466 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 52 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 297466 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 297466 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.236349398Z caller=cpu.go:495 msg="adding unwind tables" pid=838 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.236391423Z caller=cpu.go:495 msg="adding unwind tables" pid=850 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.236421157Z caller=cpu.go:495 msg="adding unwind tables" pid=851 +level=info name=parca-agent ts=2023-01-25T11:15:48.236554379Z caller=cpu.go:495 msg="adding unwind tables" pid=875 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 297466 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b57668c000, StartAddr: 0x55b57668f000, EndAddr: 0x55b5766a4000, Executable:/usr/bin/dbus-broker-launch} +[info] adding memory mappings in for executable with ID 52 buildId 1507f35ad61f503f9a4505b53b052842ed9f5f33 exec /usr/bin/dbus-broker-launch +-> caching - new mapping +=> found 1326 unwind entries for /usr/bin/dbus-broker-launch low pc 3020 high pc 176b0 +- current chunk size 1326 +- rest of chunk size 0 +- lowindex [ 47466 : 48792 ] highIndex +- executable 52 mapping /usr/bin/dbus-broker-launch shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 298792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 53 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - new mapping +=> found 11965 unwind entries for /usr/lib64/libsystemd.so.0.33.0 low pc 16020 high pc 9a480 +- current chunk size 11965 +- rest of chunk size 0 +- lowindex [ 48792 : 60757 ] highIndex +- executable 53 mapping /usr/lib64/libsystemd.so.0.33.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 310757 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 54 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - new mapping +=> found 1979 unwind entries for /usr/lib64/libexpat.so.1.8.10 low pc 4020 high pc 1fb61 +- current chunk size 1979 +- rest of chunk size 0 +- lowindex [ 60757 : 62736 ] highIndex +- executable 54 mapping /usr/lib64/libexpat.so.1.8.10 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 312736 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 55 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 312736 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 55 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 312736 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 55 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 312736 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 312736 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.243461034Z caller=cpu.go:495 msg="adding unwind tables" pid=876 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 312736 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557c22515000, StartAddr: 0x557c22519000, EndAddr: 0x557c2253f000, Executable:/usr/bin/dbus-broker} +[info] adding memory mappings in for executable with ID 55 buildId a0fdfb06853e5922e97da022959b63a4b185b25a exec /usr/bin/dbus-broker +-> caching - new mapping +=> found 2789 unwind entries for /usr/bin/dbus-broker low pc 4020 high pc 299cd +- current chunk size 2789 +- rest of chunk size 0 +- lowindex [ 62736 : 65525 ] highIndex +- executable 55 mapping /usr/bin/dbus-broker shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 56 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 56 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 56 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 56 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 56 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 56 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 56 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 56 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.245296399Z caller=cpu.go:495 msg="adding unwind tables" pid=878 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.245746859Z caller=cpu.go:495 msg="adding unwind tables" pid=879 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 315525 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55565cca0000, StartAddr: 0x55565ccc0000, EndAddr: 0x55565cd89000, Executable:/usr/libexec/bluetooth/bluetoothd} +[info] adding memory mappings in for executable with ID 56 buildId 01220a7a01e70424f3281d2c9fd37730c3cb5d2b exec /usr/libexec/bluetooth/bluetoothd +-> caching - new mapping +=> found 29044 unwind entries for /usr/libexec/bluetooth/bluetoothd low pc 20020 high pc e8305 +- current chunk size 29044 +- rest of chunk size 0 +- lowindex [ 65525 : 94569 ] highIndex +- executable 56 mapping /usr/libexec/bluetooth/bluetoothd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 344569 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 57 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - new mapping +=> found 2692 unwind entries for /usr/lib64/libudev.so.1.7.3 low pc 5020 high pc 1f690 +- current chunk size 2692 +- rest of chunk size 0 +- lowindex [ 94569 : 97261 ] highIndex +- executable 57 mapping /usr/lib64/libudev.so.1.7.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 347261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 58 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - new mapping +=> found 4572 unwind entries for /usr/lib64/libpcre.so.1.2.13 low pc 2020 high pc 5a7b2 +- current chunk size 4572 +- rest of chunk size 0 +- lowindex [ 97261 : 101833 ] highIndex +- executable 58 mapping /usr/lib64/libpcre.so.1.2.13 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 351833 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 59 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - new mapping +=> found 6666 unwind entries for /usr/lib64/libdbus-1.so.3.32.1 low pc e020 high pc 3ea4f +- current chunk size 6666 +- rest of chunk size 0 +- lowindex [ 101833 : 108499 ] highIndex +- executable 59 mapping /usr/lib64/libdbus-1.so.3.32.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 358499 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 60 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - new mapping +=> found 20784 unwind entries for /usr/lib64/libglib-2.0.so.0.7200.3 low pc 1d020 high pc ad1a2 +- current chunk size 20784 +- rest of chunk size 0 +- lowindex [ 108499 : 129283 ] highIndex +- executable 60 mapping /usr/lib64/libglib-2.0.so.0.7200.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379283 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 61 buildId 1926751653f664f702b2ee25e4d731ffabd29e0f exec /usr/lib64/bluetooth/plugins/sixaxis.so +-> caching - new mapping +=> found 61 unwind entries for /usr/lib64/bluetooth/plugins/sixaxis.so low pc 2020 high pc 35a9 +- current chunk size 61 +- rest of chunk size 0 +- lowindex [ 129283 : 129344 ] highIndex +- executable 61 mapping /usr/lib64/bluetooth/plugins/sixaxis.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379344 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 62 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379344 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379344 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.266874631Z caller=cpu.go:495 msg="adding unwind tables" pid=889 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379344 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558f20ffd000, StartAddr: 0x558f20fff000, EndAddr: 0x558f21001000, Executable:/usr/libexec/low-memory-monitor} +[info] adding memory mappings in for executable with ID 62 buildId cdf769103f4a8ad00864eb20085698787c1dd325 exec /usr/libexec/low-memory-monitor +-> caching - new mapping +=> found 116 unwind entries for /usr/libexec/low-memory-monitor low pc 2020 high pc 36a5 +- current chunk size 116 +- rest of chunk size 0 +- lowindex [ 129344 : 129460 ] highIndex +- executable 62 mapping /usr/libexec/low-memory-monitor shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379460 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 63 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - new mapping +=> found 77 unwind entries for /usr/lib64/libgmodule-2.0.so.0.7200.3 low pc 2020 high pc 3493 +- current chunk size 77 +- rest of chunk size 0 +- lowindex [ 129460 : 129537 ] highIndex +- executable 63 mapping /usr/lib64/libgmodule-2.0.so.0.7200.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379537 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 64 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379537 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 64 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 379537 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 64 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - new mapping +=> found 8084 unwind entries for /usr/lib64/libgobject-2.0.so.0.7200.3 low pc e020 high pc 40a23 +- current chunk size 8084 +- rest of chunk size 0 +- lowindex [ 129537 : 137621 ] highIndex +- executable 64 mapping /usr/lib64/libgobject-2.0.so.0.7200.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 387621 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 65 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - new mapping +=> found 54624 unwind entries for /usr/lib64/libgio-2.0.so.0.7200.3 low pc 39020 high pc 14a204 +- current chunk size 54624 +- rest of chunk size 0 +- lowindex [ 137621 : 192245 ] highIndex +- executable 65 mapping /usr/lib64/libgio-2.0.so.0.7200.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 442245 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 66 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 442245 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 442245 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.286769022Z caller=cpu.go:495 msg="adding unwind tables" pid=890 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 442245 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56277024d000, StartAddr: 0x562770258000, EndAddr: 0x562770266000, Executable:/usr/sbin/mcelog} +[info] adding memory mappings in for executable with ID 66 buildId 9c4ae9799826c84d6626005b83677860dbf68bfc exec /usr/sbin/mcelog +-> caching - new mapping +=> found 1014 unwind entries for /usr/sbin/mcelog low pc b020 high pc 18ad2 +- current chunk size 1014 +- rest of chunk size 0 +- lowindex [ 192245 : 193259 ] highIndex +- executable 66 mapping /usr/sbin/mcelog shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 67 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 67 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.287604356Z caller=cpu.go:495 msg="adding unwind tables" pid=893 +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 443259 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 67 buildId b91a47602e99d8da1c12ec4aef8a5d25f7ee054d exec /usr/lib/polkit-1/polkitd +-> caching - new mapping +=> found 1481 unwind entries for /usr/lib/polkit-1/polkitd low pc 9020 high pc 198c4 +- current chunk size 1481 +- rest of chunk size 0 +- lowindex [ 193259 : 194740 ] highIndex +- executable 67 mapping /usr/lib/polkit-1/polkitd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 444740 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 68 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - new mapping +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 444740 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 68 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - new mapping +=> found 28383 unwind entries for /usr/lib64/libicuuc.so.69.1 low pc 64020 high pc 152f76 +- current chunk size 28383 +- rest of chunk size 0 +- lowindex [ 194740 : 223123 ] highIndex +- executable 68 mapping /usr/lib64/libicuuc.so.69.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 1 , total entries: 473123 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 69 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - new mapping +=> found 52051 unwind entries for /usr/lib64/libicui18n.so.69.1 low pc e7020 high pc 284a89 +- current chunk size 26877 +- rest of chunk size 25174 +- lowindex [ 223123 : 250000 ] highIndex +- executable 69 mapping /usr/lib64/libicui18n.so.69.1 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 25174 +- rest of chunk size 0 +- lowindex [ 0 : 25174 ] highIndex +- executable 69 mapping /usr/lib64/libicui18n.so.69.1 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 525174 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 70 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - new mapping +=> found 4773 unwind entries for /usr/lib64/libnss_systemd.so.2 low pc 7020 high pc 3d540 +- current chunk size 4773 +- rest of chunk size 0 +- lowindex [ 25174 : 29947 ] highIndex +- executable 70 mapping /usr/lib64/libnss_systemd.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 529947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 71 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 529947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 71 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - new mapping +=> found 787 unwind entries for /usr/lib64/libnss_sss.so.2 low pc 2020 high pc 8fb6 +- current chunk size 787 +- rest of chunk size 0 +- lowindex [ 29947 : 30734 ] highIndex +- executable 71 mapping /usr/lib64/libnss_sss.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 530734 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 72 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 530734 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 72 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 530734 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 72 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - new mapping +=> found 31820 unwind entries for /usr/lib64/libstdc++.so.6.0.30 low pc 9a020 high pc 1aa742 +- current chunk size 31820 +- rest of chunk size 0 +- lowindex [ 30734 : 62554 ] highIndex +- executable 72 mapping /usr/lib64/libstdc++.so.6.0.30 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 562554 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 73 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 562554 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 73 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 562554 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 73 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 562554 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 73 buildId 8d3773b4ff0382951bd3c72ac05aaacf988f8663 exec /usr/lib64/libmozjs-91.so.0.0.0 +-> caching - new mapping +=> found 176555 unwind entries for /usr/lib64/libmozjs-91.so.0.0.0 low pc cb020 high pc a1baf3 +- current chunk size 176555 +- rest of chunk size 0 +- lowindex [ 62554 : 239109 ] highIndex +- executable 73 mapping /usr/lib64/libmozjs-91.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 739109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 74 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - new mapping +=> found 2894 unwind entries for /usr/lib64/libpolkit-gobject-1.so.0.0.0 low pc 7020 high pc 1546d +- current chunk size 2894 +- rest of chunk size 0 +- lowindex [ 239109 : 242003 ] highIndex +- executable 74 mapping /usr/lib64/libpolkit-gobject-1.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742003 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 75 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742003 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742003 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.404593171Z caller=cpu.go:495 msg="adding unwind tables" pid=894 +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742003 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557d56c8b000, StartAddr: 0x557d56c8f000, EndAddr: 0x557d56c97000, Executable:/usr/libexec/power-profiles-daemon} +[info] adding memory mappings in for executable with ID 75 buildId 3b48f7e4b572317acaed27c3262fcae87086dae1 exec /usr/libexec/power-profiles-daemon +-> caching - new mapping +=> found 887 unwind entries for /usr/libexec/power-profiles-daemon low pc 4020 high pc b560 +- current chunk size 887 +- rest of chunk size 0 +- lowindex [ 242003 : 242890 ] highIndex +- executable 75 mapping /usr/libexec/power-profiles-daemon shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 742890 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 76 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - new mapping +=> found 898 unwind entries for /usr/lib64/libgudev-1.0.so.0.3.0 low pc 4020 high pc 88ad +- current chunk size 898 +- rest of chunk size 0 +- lowindex [ 242890 : 243788 ] highIndex +- executable 76 mapping /usr/lib64/libgudev-1.0.so.0.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 77 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 77 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 77 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 77 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.40925044Z caller=cpu.go:495 msg="adding unwind tables" pid=895 +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.409847391Z caller=cpu.go:495 msg="adding unwind tables" pid=899 +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 743788 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556a317a2000, StartAddr: 0x556a317ab000, EndAddr: 0x556a317bd000, Executable:/usr/libexec/accounts-daemon} +[info] adding memory mappings in for executable with ID 77 buildId b0feade25dcdb71b7b5917dd8f960679bf142091 exec /usr/libexec/accounts-daemon +-> caching - new mapping +=> found 2253 unwind entries for /usr/libexec/accounts-daemon low pc 9020 high pc 1aad3 +- current chunk size 2253 +- rest of chunk size 0 +- lowindex [ 243788 : 246041 ] highIndex +- executable 77 mapping /usr/libexec/accounts-daemon shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 78 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.414136761Z caller=cpu.go:495 msg="adding unwind tables" pid=900 +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746041 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557f67627000, StartAddr: 0x557f67629000, EndAddr: 0x557f6762b000, Executable:/usr/libexec/switcheroo-control} +[info] adding memory mappings in for executable with ID 78 buildId c283a49e4931af9669db85fbee107057aaf8dc45 exec /usr/libexec/switcheroo-control +-> caching - new mapping +=> found 109 unwind entries for /usr/libexec/switcheroo-control low pc 2020 high pc 3de3 +- current chunk size 109 +- rest of chunk size 0 +- lowindex [ 246041 : 246150 ] highIndex +- executable 78 mapping /usr/libexec/switcheroo-control shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 79 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.416555124Z caller=cpu.go:495 msg="adding unwind tables" pid=906 +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 746150 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556759b38000, StartAddr: 0x556759b43000, EndAddr: 0x556759b68000, Executable:/usr/lib/systemd/systemd-logind} +[info] adding memory mappings in for executable with ID 79 buildId 06f49c98ce4263cc66ba58b008da13fa03c746d6 exec /usr/lib/systemd/systemd-logind +-> caching - new mapping +=> found 3226 unwind entries for /usr/lib/systemd/systemd-logind low pc b020 high pc 2fa8e +- current chunk size 3226 +- rest of chunk size 0 +- lowindex [ 246150 : 249376 ] highIndex +- executable 79 mapping /usr/lib/systemd/systemd-logind shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 80 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.422103617Z caller=cpu.go:495 msg="adding unwind tables" pid=909 +======================================================================================== +setUnwindTable called (total shards: 2 , total entries: 749376 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cd97f44000, StartAddr: 0x55cd97f4b000, EndAddr: 0x55cd97f5c000, Executable:/usr/lib/systemd/systemd-machined} +[info] adding memory mappings in for executable with ID 80 buildId 5db1774c17735f9973015f2239b686fd9001c64f exec /usr/lib/systemd/systemd-machined +-> caching - new mapping +=> found 1064 unwind entries for /usr/lib/systemd/systemd-machined low pc 7020 high pc 1708f +- current chunk size 624 +- rest of chunk size 440 +- lowindex [ 249376 : 250000 ] highIndex +- executable 80 mapping /usr/lib/systemd/systemd-machined shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 440 +- rest of chunk size 0 +- lowindex [ 0 : 440 ] highIndex +- executable 80 mapping /usr/lib/systemd/systemd-machined shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 81 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.427422339Z caller=cpu.go:495 msg="adding unwind tables" pid=912 +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 750440 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cd12b39000, StartAddr: 0x55cd12b4e000, EndAddr: 0x55cd12ba2000, Executable:/usr/sbin/thermald} +[info] adding memory mappings in for executable with ID 81 buildId 6ecd1969a78dcc60ee37509ae018eeda04ec9c04 exec /usr/sbin/thermald +-> caching - new mapping +=> found 6252 unwind entries for /usr/sbin/thermald low pc 15020 high pc 687fa +- current chunk size 6252 +- rest of chunk size 0 +- lowindex [ 440 : 6692 ] highIndex +- executable 81 mapping /usr/sbin/thermald shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 756692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 82 buildId d13c41b5c9134427a05badbfeb99349c994802fe exec /usr/lib64/libevdev.so.2.3.0 +-> caching - new mapping +=> found 776 unwind entries for /usr/lib64/libevdev.so.2.3.0 low pc c020 high pc 11e59 +- current chunk size 776 +- rest of chunk size 0 +- lowindex [ 6692 : 7468 ] highIndex +- executable 82 mapping /usr/lib64/libevdev.so.2.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 757468 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 83 buildId 3c4a279d030ea72be9a41649f31114395d89ea02 exec /usr/lib64/libupower-glib.so.3.1.0 +-> caching - new mapping +=> found 3047 unwind entries for /usr/lib64/libupower-glib.so.3.1.0 low pc 9020 high pc 18aa4 +- current chunk size 3047 +- rest of chunk size 0 +- lowindex [ 7468 : 10515 ] highIndex +- executable 83 mapping /usr/lib64/libupower-glib.so.3.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 760515 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 84 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 760515 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 84 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - new mapping +=> found 27707 unwind entries for /usr/lib64/libxml2.so.2.10.3 low pc 35020 high pc 122c20 +- current chunk size 27707 +- rest of chunk size 0 +- lowindex [ 10515 : 38222 ] highIndex +- executable 84 mapping /usr/lib64/libxml2.so.2.10.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 788222 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 85 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 788222 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 85 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 788222 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 85 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 788222 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 85 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 788222 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 85 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 788222 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 85 buildId 0ad6c01c2ddf0a16c0cf4f4699bbac76fe73b03b exec /usr/lib64/libdbus-glib-1.so.2.3.5 +-> caching - new mapping +=> found 3104 unwind entries for /usr/lib64/libdbus-glib-1.so.2.3.5 low pc a020 high pc 22ca5 +- current chunk size 3104 +- rest of chunk size 0 +- lowindex [ 38222 : 41326 ] highIndex +- executable 85 mapping /usr/lib64/libdbus-glib-1.so.2.3.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 791326 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 86 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 791326 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 791326 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.458218078Z caller=cpu.go:495 msg="adding unwind tables" pid=917 +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 791326 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55db14ca6000, StartAddr: 0x55db14cbf000, EndAddr: 0x55db14d05000, Executable:/usr/libexec/udisks2/udisksd} +[info] adding memory mappings in for executable with ID 86 buildId 76402de93b82febe1ee2274ae0484c91d7f4ddbd exec /usr/libexec/udisks2/udisksd +-> caching - new mapping +=> found 8739 unwind entries for /usr/libexec/udisks2/udisksd low pc 19020 high pc 5e82e +- current chunk size 8739 +- rest of chunk size 0 +- lowindex [ 41326 : 50065 ] highIndex +- executable 86 mapping /usr/libexec/udisks2/udisksd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 800065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 87 buildId 38c38e45afd6f782e5da76bb17081fda11c7120f exec /usr/lib64/libbd_fs.so.2.0.0 +-> caching - new mapping +=> found 690 unwind entries for /usr/lib64/libbd_fs.so.2.0.0 low pc 4020 high pc a9f6 +- current chunk size 690 +- rest of chunk size 0 +- lowindex [ 50065 : 50755 ] highIndex +- executable 87 mapping /usr/lib64/libbd_fs.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 800755 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 88 buildId e767156b42344b69628726ce591e288a328e3f83 exec /usr/lib64/libparted.so.2.0.3 +-> caching - new mapping +=> found 6501 unwind entries for /usr/lib64/libparted.so.2.0.3 low pc d020 high pc 4755a +- current chunk size 6501 +- rest of chunk size 0 +- lowindex [ 50755 : 57256 ] highIndex +- executable 88 mapping /usr/lib64/libparted.so.2.0.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 807256 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 89 buildId 11657fd0e07319395b267b9fb4d0188efb412e73 exec /usr/lib64/libparted-fs-resize.so.0.0.3 +-> caching - new mapping +=> found 1014 unwind entries for /usr/lib64/libparted-fs-resize.so.0.0.3 low pc 2020 high pc e959 +- current chunk size 1014 +- rest of chunk size 0 +- lowindex [ 57256 : 58270 ] highIndex +- executable 89 mapping /usr/lib64/libparted-fs-resize.so.0.0.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 808270 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 90 buildId 34ea54109c8c72441fb3426ca56548db3b600986 exec /usr/lib64/libbd_part.so.2.0.0 +-> caching - new mapping +=> found 409 unwind entries for /usr/lib64/libbd_part.so.2.0.0 low pc 3020 high pc 7455 +- current chunk size 409 +- rest of chunk size 0 +- lowindex [ 58270 : 58679 ] highIndex +- executable 90 mapping /usr/lib64/libbd_part.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 808679 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 91 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - new mapping +=> found 6226 unwind entries for /usr/lib64/libgmp.so.10.4.1 low pc 11020 high pc 6d937 +- current chunk size 6226 +- rest of chunk size 0 +- lowindex [ 58679 : 64905 ] highIndex +- executable 91 mapping /usr/lib64/libgmp.so.10.4.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 814905 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 92 buildId 466c44d39f9a44bfca6ac266cc13db7aa0af21a7 exec /usr/lib64/libmpfr.so.6.1.0 +-> caching - new mapping +=> found 6578 unwind entries for /usr/lib64/libmpfr.so.6.1.0 low pc d020 high pc 8e364 +- current chunk size 6578 +- rest of chunk size 0 +- lowindex [ 64905 : 71483 ] highIndex +- executable 92 mapping /usr/lib64/libmpfr.so.6.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 821483 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 93 buildId edfa254de1c868fb960a4098116865a61926252b exec /usr/lib64/libbytesize.so.1.0.0 +-> caching - new mapping +=> found 312 unwind entries for /usr/lib64/libbytesize.so.1.0.0 low pc 3020 high pc 5959 +- current chunk size 312 +- rest of chunk size 0 +- lowindex [ 71483 : 71795 ] highIndex +- executable 93 mapping /usr/lib64/libbytesize.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 821795 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 94 buildId acfc4b558918f16489e20e72d26a6b076ac33953 exec /usr/lib64/libbd_mdraid.so.2.0.0 +-> caching - new mapping +=> found 338 unwind entries for /usr/lib64/libbd_mdraid.so.2.0.0 low pc 2020 high pc 4f46 +- current chunk size 338 +- rest of chunk size 0 +- lowindex [ 71795 : 72133 ] highIndex +- executable 94 mapping /usr/lib64/libbd_mdraid.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 822133 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 95 buildId 217fffd36034244556bb034169a29fb366e38575 exec /usr/lib64/libassuan.so.0.8.5 +-> caching - new mapping +=> found 1708 unwind entries for /usr/lib64/libassuan.so.0.8.5 low pc 4020 high pc e9a9 +- current chunk size 1708 +- rest of chunk size 0 +- lowindex [ 72133 : 73841 ] highIndex +- executable 95 mapping /usr/lib64/libassuan.so.0.8.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 823841 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 96 buildId 45d6b9bf7051ee6e9b6e90c65d63f50d95eb69b1 exec /usr/lib64/libgpgme.so.11.26.0 +-> caching - new mapping +=> found 10940 unwind entries for /usr/lib64/libgpgme.so.11.26.0 low pc 7020 high pc 3f77e +- current chunk size 10940 +- rest of chunk size 0 +- lowindex [ 73841 : 84781 ] highIndex +- executable 96 mapping /usr/lib64/libgpgme.so.11.26.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 834781 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 97 buildId cb5f89af81053c7c924c0394a19395dfa98ac32e exec /usr/lib64/libjson-c.so.5.1.0 +-> caching - new mapping +=> found 1052 unwind entries for /usr/lib64/libjson-c.so.5.1.0 low pc 4020 high pc cada +- current chunk size 1052 +- rest of chunk size 0 +- lowindex [ 84781 : 85833 ] highIndex +- executable 97 mapping /usr/lib64/libjson-c.so.5.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 835833 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 98 buildId f0c55d12841bfd8c96f4d917a9401d1a604d5596 exec /usr/lib64/libargon2.so.1 +-> caching - new mapping +=> found 287 unwind entries for /usr/lib64/libargon2.so.1 low pc 1020 high pc 4c8e +- current chunk size 287 +- rest of chunk size 0 +- lowindex [ 85833 : 86120 ] highIndex +- executable 98 mapping /usr/lib64/libargon2.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 836120 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 99 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 836120 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 99 buildId 364efc38c27269f1236f213dbf989434c7e9c41a exec /usr/lib64/libdevmapper.so.1.02 +-> caching - new mapping +=> found 6443 unwind entries for /usr/lib64/libdevmapper.so.1.02 low pc b020 high pc 41ef7 +- current chunk size 6443 +- rest of chunk size 0 +- lowindex [ 86120 : 92563 ] highIndex +- executable 99 mapping /usr/lib64/libdevmapper.so.1.02 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 842563 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 100 buildId a778f167869046540d2f155f484aab1a8cdc1265 exec /usr/lib64/libvolume_key.so.1.2.3 +-> caching - new mapping +=> found 872 unwind entries for /usr/lib64/libvolume_key.so.1.2.3 low pc 5020 high pc ea80 +- current chunk size 872 +- rest of chunk size 0 +- lowindex [ 92563 : 93435 ] highIndex +- executable 100 mapping /usr/lib64/libvolume_key.so.1.2.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 843435 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 101 buildId 69f18bdda4a0d69b709352f2be54459ab1659196 exec /usr/lib64/libnspr4.so +-> caching - new mapping +=> found 4364 unwind entries for /usr/lib64/libnspr4.so low pc c020 high pc 307e9 +- current chunk size 4364 +- rest of chunk size 0 +- lowindex [ 93435 : 97799 ] highIndex +- executable 101 mapping /usr/lib64/libnspr4.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 847799 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 102 buildId 230846234ba17ea30abf4bc5d6db862e426403a0 exec /usr/lib64/libnssutil3.so +-> caching - new mapping +=> found 2211 unwind entries for /usr/lib64/libnssutil3.so low pc d020 high pc 1e87b +- current chunk size 2211 +- rest of chunk size 0 +- lowindex [ 97799 : 100010 ] highIndex +- executable 102 mapping /usr/lib64/libnssutil3.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 850010 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 103 buildId 799c12abf237e79e52cf8218585d0c7306d6b295 exec /usr/lib64/libnss3.so +-> caching - new mapping +=> found 22336 unwind entries for /usr/lib64/libnss3.so low pc 1a020 high pc f9188 +- current chunk size 22336 +- rest of chunk size 0 +- lowindex [ 100010 : 122346 ] highIndex +- executable 103 mapping /usr/lib64/libnss3.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 872346 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 104 buildId 520900151c552db6268aae7f3962f30622c5ccce exec /usr/lib64/libsmime3.so +-> caching - new mapping +=> found 3743 unwind entries for /usr/lib64/libsmime3.so low pc 9020 high pc 20407 +- current chunk size 3743 +- rest of chunk size 0 +- lowindex [ 122346 : 126089 ] highIndex +- executable 104 mapping /usr/lib64/libsmime3.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 876089 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 105 buildId 2f6acb73a9a417df53a9d86931747fc5613d3a73 exec /usr/lib64/libssl3.so +-> caching - new mapping +=> found 7681 unwind entries for /usr/lib64/libssl3.so low pc d020 high pc 4c8a3 +- current chunk size 7681 +- rest of chunk size 0 +- lowindex [ 126089 : 133770 ] highIndex +- executable 105 mapping /usr/lib64/libssl3.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 883770 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 106 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 883770 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 106 buildId cf10898b16463f066b27aee96ee7188c8d0424b7 exec /usr/lib64/libbd_part_err.so.2.0.0 +-> caching - new mapping +=> found 12 unwind entries for /usr/lib64/libbd_part_err.so.2.0.0 low pc 1020 high pc 11f4 +- current chunk size 12 +- rest of chunk size 0 +- lowindex [ 133770 : 133782 ] highIndex +- executable 106 mapping /usr/lib64/libbd_part_err.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 883782 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 107 buildId 6bf91f0466d158b9f127dab48daf3dd60ab17782 exec /usr/lib64/libplc4.so +-> caching - new mapping +=> found 264 unwind entries for /usr/lib64/libplc4.so low pc 2020 high pc 3c09 +- current chunk size 264 +- rest of chunk size 0 +- lowindex [ 133782 : 134046 ] highIndex +- executable 107 mapping /usr/lib64/libplc4.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 884046 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 108 buildId 79b65472c4ae279af3974bd8c6bf01f56790c2ea exec /usr/lib64/libplds4.so +-> caching - new mapping +=> found 244 unwind entries for /usr/lib64/libplds4.so low pc 1020 high pc 1f0c +- current chunk size 244 +- rest of chunk size 0 +- lowindex [ 134046 : 134290 ] highIndex +- executable 108 mapping /usr/lib64/libplds4.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 884290 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 109 buildId b95e600a508202170d66856a49c30ad3ba16defe exec /usr/lib64/libcryptsetup.so.12.7.0 +-> caching - new mapping +=> found 7845 unwind entries for /usr/lib64/libcryptsetup.so.12.7.0 low pc 8020 high pc 5a5b5 +- current chunk size 7845 +- rest of chunk size 0 +- lowindex [ 134290 : 142135 ] highIndex +- executable 109 mapping /usr/lib64/libcryptsetup.so.12.7.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892135 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 110 buildId 69b39173b180990a887c3ff743a6148b729337aa exec /usr/lib64/libbd_crypto.so.2.0.0 +-> caching - new mapping +=> found 605 unwind entries for /usr/lib64/libbd_crypto.so.2.0.0 low pc 3020 high pc 8083 +- current chunk size 605 +- rest of chunk size 0 +- lowindex [ 142135 : 142740 ] highIndex +- executable 110 mapping /usr/lib64/libbd_crypto.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892740 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 111 buildId 993dc124255e07677631ed8737b7281831961145 exec /usr/lib64/libbd_loop.so.2.0.0 +-> caching - new mapping +=> found 117 unwind entries for /usr/lib64/libbd_loop.so.2.0.0 low pc 1020 high pc 2038 +- current chunk size 117 +- rest of chunk size 0 +- lowindex [ 142740 : 142857 ] highIndex +- executable 111 mapping /usr/lib64/libbd_loop.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892857 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 112 buildId d3f0ea313b884fca3a2031b18690b2e7f48e2c0c exec /usr/lib64/libbd_swap.so.2.0.0 +-> caching - new mapping +=> found 90 unwind entries for /usr/lib64/libbd_swap.so.2.0.0 low pc 2020 high pc 31a6 +- current chunk size 90 +- rest of chunk size 0 +- lowindex [ 142857 : 142947 ] highIndex +- executable 112 mapping /usr/lib64/libbd_swap.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 892947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 113 buildId 2d67c0b4b2a7eb170c5163a0cf0643756771b6ea exec /usr/lib64/libudisks2.so.0.0.0 +-> caching - new mapping +=> found 23846 unwind entries for /usr/lib64/libudisks2.so.0.0.0 low pc 33020 high pc 950fa +- current chunk size 23846 +- rest of chunk size 0 +- lowindex [ 142947 : 166793 ] highIndex +- executable 113 mapping /usr/lib64/libudisks2.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 916793 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 114 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 916793 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 114 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 916793 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 114 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 916793 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 114 buildId a5009041f85b1ec5b58f06105aeb0319524ef526 exec /usr/lib64/libuuid.so.1.3.0 +-> caching - new mapping +=> found 261 unwind entries for /usr/lib64/libuuid.so.1.3.0 low pc 2020 high pc 5dfc +- current chunk size 261 +- rest of chunk size 0 +- lowindex [ 166793 : 167054 ] highIndex +- executable 114 mapping /usr/lib64/libuuid.so.1.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 917054 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 115 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 917054 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 115 buildId 400ebc74bddc0c9c42c4fc814d885003848c2045 exec /usr/lib64/libatasmart.so.4.0.5 +-> caching - new mapping +=> found 418 unwind entries for /usr/lib64/libatasmart.so.4.0.5 low pc 2020 high pc 76cf +- current chunk size 418 +- rest of chunk size 0 +- lowindex [ 167054 : 167472 ] highIndex +- executable 115 mapping /usr/lib64/libatasmart.so.4.0.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 917472 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 116 buildId 2484a2a5f33af1a1b2737273fd8be5ac619fc11e exec /usr/lib64/libbd_utils.so.2.1.0 +-> caching - new mapping +=> found 399 unwind entries for /usr/lib64/libbd_utils.so.2.1.0 low pc 3020 high pc 681e +- current chunk size 399 +- rest of chunk size 0 +- lowindex [ 167472 : 167871 ] highIndex +- executable 116 mapping /usr/lib64/libbd_utils.so.2.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 917871 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 117 buildId 6bf8f439021ee8963ed334eb218b1b0a5c08d49e exec /usr/lib64/libblockdev.so.2.0.0 +-> caching - new mapping +=> found 3039 unwind entries for /usr/lib64/libblockdev.so.2.0.0 low pc a020 high pc 1b8f1 +- current chunk size 3039 +- rest of chunk size 0 +- lowindex [ 167871 : 170910 ] highIndex +- executable 117 mapping /usr/lib64/libblockdev.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 920910 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 118 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 920910 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 118 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 920910 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 118 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 920910 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 920910 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.518989554Z caller=cpu.go:495 msg="adding unwind tables" pid=919 +level=info name=parca-agent ts=2023-01-25T11:15:48.519212466Z caller=cpu.go:495 msg="adding unwind tables" pid=927 +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 920910 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555f1de59000, StartAddr: 0x555f1de60000, EndAddr: 0x555f1de73000, Executable:/usr/libexec/upowerd} +[info] adding memory mappings in for executable with ID 118 buildId 6b84ba740e6063ce6e4a0dd108ba26882a3e68e4 exec /usr/libexec/upowerd +-> caching - new mapping +=> found 2080 unwind entries for /usr/libexec/upowerd low pc 7020 high pc 19546 +- current chunk size 2080 +- rest of chunk size 0 +- lowindex [ 170910 : 172990 ] highIndex +- executable 118 mapping /usr/libexec/upowerd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 3c4a279d030ea72be9a41649f31114395d89ea02 exec /usr/lib64/libupower-glib.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 119 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.522014618Z caller=cpu.go:495 msg="adding unwind tables" pid=939 +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 922990 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5634b6f86000, StartAddr: 0x5634b6f8c000, EndAddr: 0x5634b6fa0000, Executable:/usr/sbin/avahi-daemon} +[info] adding memory mappings in for executable with ID 119 buildId c007bed3acde81191ef27c0b333f87473750627e exec /usr/sbin/avahi-daemon +-> caching - new mapping +=> found 1818 unwind entries for /usr/sbin/avahi-daemon low pc 6020 high pc 19690 +- current chunk size 1818 +- rest of chunk size 0 +- lowindex [ 172990 : 174808 ] highIndex +- executable 119 mapping /usr/sbin/avahi-daemon shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 924808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 120 buildId 0c9a3c255aedbc2ff6f1332ffc130bb9728708ef exec /usr/lib64/libdaemon.so.0.5.0 +-> caching - new mapping +=> found 284 unwind entries for /usr/lib64/libdaemon.so.0.5.0 low pc 2020 high pc 5360 +- current chunk size 284 +- rest of chunk size 0 +- lowindex [ 174808 : 175092 ] highIndex +- executable 120 mapping /usr/lib64/libdaemon.so.0.5.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 925092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 121 buildId a187200fd1239f3c255d830a7593c3b1e9ef1d9c exec /usr/lib64/libavahi-core.so.7.1.0 +-> caching - new mapping +=> found 4422 unwind entries for /usr/lib64/libavahi-core.so.7.1.0 low pc 9020 high pc 2af6e +- current chunk size 4422 +- rest of chunk size 0 +- lowindex [ 175092 : 179514 ] highIndex +- executable 121 mapping /usr/lib64/libavahi-core.so.7.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 929514 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 122 buildId 73dc9fc24e164a6a81b597f4b2b6350837500dc5 exec /usr/lib64/libavahi-common.so.3.5.4 +-> caching - new mapping +=> found 873 unwind entries for /usr/lib64/libavahi-common.so.3.5.4 low pc 3020 high pc 8da0 +- current chunk size 873 +- rest of chunk size 0 +- lowindex [ 179514 : 180387 ] highIndex +- executable 122 mapping /usr/lib64/libavahi-common.so.3.5.4 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 930387 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 123 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 930387 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 930387 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.527413363Z caller=cpu.go:495 msg="adding unwind tables" pid=1006 +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 930387 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563aeb755000, StartAddr: 0x563aeb75c000, EndAddr: 0x563aeb76f000, Executable:/usr/sbin/alsactl} +[info] adding memory mappings in for executable with ID 123 buildId 0c7f7c347b947ebbf8c9677ac5d6bdec98860ae7 exec /usr/sbin/alsactl +-> caching - new mapping +=> found 938 unwind entries for /usr/sbin/alsactl low pc 7020 high pc 19d6f +- current chunk size 938 +- rest of chunk size 0 +- lowindex [ 180387 : 181325 ] highIndex +- executable 123 mapping /usr/sbin/alsactl shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 931325 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 124 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 931325 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 124 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 931325 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 124 buildId d2900f143d90bfa10dbf7689bd5e10544cb46c6a exec /usr/lib64/libasound.so.2.0.0 +-> caching - new mapping +=> found 19026 unwind entries for /usr/lib64/libasound.so.2.0.0 low pc 2e020 high pc cb44a +- current chunk size 19026 +- rest of chunk size 0 +- lowindex [ 181325 : 200351 ] highIndex +- executable 124 mapping /usr/lib64/libasound.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 950351 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 125 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 950351 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 950351 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.538181319Z caller=cpu.go:495 msg="adding unwind tables" pid=1067 +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 950351 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558023af3000, StartAddr: 0x558023af6000, EndAddr: 0x558023afa000, Executable:/usr/sbin/abrtd} +[info] adding memory mappings in for executable with ID 125 buildId 7c0cffef9d2f91d118769fd1fe5b2ea0b4a1b79a exec /usr/sbin/abrtd +-> caching - new mapping +=> found 200 unwind entries for /usr/sbin/abrtd low pc 3020 high pc 6126 +- current chunk size 200 +- rest of chunk size 0 +- lowindex [ 200351 : 200551 ] highIndex +- executable 125 mapping /usr/sbin/abrtd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 950551 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 126 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 950551 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 126 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 950551 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 126 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 950551 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 126 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - new mapping +=> found 22313 unwind entries for /usr/lib64/libsqlite3.so.0.8.6 low pc 10020 high pc 108695 +- current chunk size 22313 +- rest of chunk size 0 +- lowindex [ 200551 : 222864 ] highIndex +- executable 126 mapping /usr/lib64/libsqlite3.so.0.8.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 972864 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 127 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 972864 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 127 buildId 7db607745eb5f2634f9488a3699fad29b9b0b629 exec /usr/lib64/liblua-5.4.so +-> caching - new mapping +=> found 5432 unwind entries for /usr/lib64/liblua-5.4.so low pc 8020 high pc 36916 +- current chunk size 5432 +- rest of chunk size 0 +- lowindex [ 222864 : 228296 ] highIndex +- executable 127 mapping /usr/lib64/liblua-5.4.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 978296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 128 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 978296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 128 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 978296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 128 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 978296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 128 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 978296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 128 buildId 00dac45074a8b3267e80ddf9f5419356998957e3 exec /usr/lib64/libfa.so.1.5.3 +-> caching - new mapping +=> found 1073 unwind entries for /usr/lib64/libfa.so.1.5.3 low pc 2020 high pc d3ce +- current chunk size 1073 +- rest of chunk size 0 +- lowindex [ 228296 : 229369 ] highIndex +- executable 128 mapping /usr/lib64/libfa.so.1.5.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979369 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 129 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - new mapping +=> found 479 unwind entries for /usr/lib64/libbz2.so.1.0.8 low pc 2020 high pc ea93 +- current chunk size 479 +- rest of chunk size 0 +- lowindex [ 229369 : 229848 ] highIndex +- executable 129 mapping /usr/lib64/libbz2.so.1.0.8 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 979848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 130 buildId c3f24c7ba050a70c1d297dfcf1cbbd82f1124643 exec /usr/lib64/libpopt.so.0.0.1 +-> caching - new mapping +=> found 796 unwind entries for /usr/lib64/libpopt.so.0.0.1 low pc 3020 high pc abb2 +- current chunk size 796 +- rest of chunk size 0 +- lowindex [ 229848 : 230644 ] highIndex +- executable 130 mapping /usr/lib64/libpopt.so.0.0.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 980644 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 131 buildId 894c2b0df11f94e5efd8212b1b56eac7a09b9c16 exec /usr/lib64/librpmio.so.9.3.0 +-> caching - new mapping +=> found 4384 unwind entries for /usr/lib64/librpmio.so.9.3.0 low pc c020 high pc 2a954 +- current chunk size 4384 +- rest of chunk size 0 +- lowindex [ 230644 : 235028 ] highIndex +- executable 131 mapping /usr/lib64/librpmio.so.9.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 985028 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 132 buildId b9de0a847a43bd60485067346cb7228f5dc96002 exec /usr/lib64/librpm.so.9.3.0 +-> caching - new mapping +=> found 8255 unwind entries for /usr/lib64/librpm.so.9.3.0 low pc 15020 high pc 62b22 +- current chunk size 8255 +- rest of chunk size 0 +- lowindex [ 235028 : 243283 ] highIndex +- executable 132 mapping /usr/lib64/librpm.so.9.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 993283 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 133 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 993283 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 133 buildId e63ed8f34565089e8482c8fa1bae1b48ab21893f exec /usr/lib64/libdw-0.188.so +-> caching - new mapping +=> found 6119 unwind entries for /usr/lib64/libdw-0.188.so low pc 14020 high pc 896a2 +- current chunk size 6119 +- rest of chunk size 0 +- lowindex [ 243283 : 249402 ] highIndex +- executable 133 mapping /usr/lib64/libdw-0.188.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 999402 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 134 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 999402 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 134 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 3 , total entries: 999402 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 134 buildId 94e3b8ef106a63bd7c172c5c8469f73f06a2121f exec /usr/lib64/libaugeas.so.0.25.0 +-> caching - new mapping +=> found 7008 unwind entries for /usr/lib64/libaugeas.so.0.25.0 low pc 7020 high pc 4939d +- current chunk size 598 +- rest of chunk size 6410 +- lowindex [ 249402 : 250000 ] highIndex +- executable 134 mapping /usr/lib64/libaugeas.so.0.25.0 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 6410 +- rest of chunk size 0 +- lowindex [ 0 : 6410 ] highIndex +- executable 134 mapping /usr/lib64/libaugeas.so.0.25.0 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1006410 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 135 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1006410 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 135 buildId 595367e25f102be8f5a6149a9a237df3212c1dd5 exec /usr/lib64/libarchive.so.13.5.3 +-> caching - new mapping +=> found 12623 unwind entries for /usr/lib64/libarchive.so.13.5.3 low pc 13020 high pc 9f534 +- current chunk size 12623 +- rest of chunk size 0 +- lowindex [ 6410 : 19033 ] highIndex +- executable 135 mapping /usr/lib64/libarchive.so.13.5.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1019033 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 136 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1019033 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 136 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1019033 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 136 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1019033 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 136 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1019033 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 136 buildId 94677f60a8d271cc20f7b278fd83b3c52b972479 exec /usr/lib64/libsatyr.so.4.0.3 +-> caching - new mapping +=> found 4568 unwind entries for /usr/lib64/libsatyr.so.4.0.3 low pc e020 high pc 2d476 +- current chunk size 4568 +- rest of chunk size 0 +- lowindex [ 19033 : 23601 ] highIndex +- executable 136 mapping /usr/lib64/libsatyr.so.4.0.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1023601 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 137 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1023601 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 137 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1023601 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 137 buildId cb5f89af81053c7c924c0394a19395dfa98ac32e exec /usr/lib64/libjson-c.so.5.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1023601 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 137 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1023601 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 137 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1023601 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 137 buildId 55eceed0b369d4ed0ea39fb121a767112b4298f7 exec /usr/lib64/libreport.so.2.0.1 +-> caching - new mapping +=> found 5087 unwind entries for /usr/lib64/libreport.so.2.0.1 low pc c020 high pc 2a2eb +- current chunk size 5087 +- rest of chunk size 0 +- lowindex [ 23601 : 28688 ] highIndex +- executable 137 mapping /usr/lib64/libreport.so.2.0.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1028688 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 138 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1028688 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 138 buildId bc0bb32a38cc46960f0bbca15f8ede1f5a66c909 exec /usr/lib64/libabrt.so.0.1.0 +-> caching - new mapping +=> found 820 unwind entries for /usr/lib64/libabrt.so.0.1.0 low pc 5020 high pc b6ca +- current chunk size 820 +- rest of chunk size 0 +- lowindex [ 28688 : 29508 ] highIndex +- executable 138 mapping /usr/lib64/libabrt.so.0.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1029508 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 139 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1029508 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1029508 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.579584204Z caller=cpu.go:495 msg="adding unwind tables" pid=1134 +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1029508 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563f02b89000, StartAddr: 0x563f02b8d000, EndAddr: 0x563f02bcb000, Executable:/usr/sbin/chronyd} +[info] adding memory mappings in for executable with ID 139 buildId a96a9de814d55ccf9433cc24fdf562782ee83c22 exec /usr/sbin/chronyd +-> caching - new mapping +=> found 4990 unwind entries for /usr/sbin/chronyd low pc 4020 high pc 41262 +- current chunk size 4990 +- rest of chunk size 0 +- lowindex [ 29508 : 34498 ] highIndex +- executable 139 mapping /usr/sbin/chronyd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId d2adea0bb9957ff20330e50a2eaeb95e2bcf6148 exec /usr/lib64/libnss_resolve.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId dafdffba96104f365a8ea751c4c97282f3c46263 exec /usr/lib64/libnss_myhostname.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId fe461d55e34f82892fff98869493b1faba410e52 exec /usr/lib64/libnss_mdns4_minimal.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1034498 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 140 buildId 345872e1fd9fc345eccc8344049d028164796f36 exec /usr/lib64/libhogweed.so.6.5 +-> caching - new mapping +=> found 3200 unwind entries for /usr/lib64/libhogweed.so.6.5 low pc 9020 high pc 1c284 +- current chunk size 3200 +- rest of chunk size 0 +- lowindex [ 34498 : 37698 ] highIndex +- executable 140 mapping /usr/lib64/libhogweed.so.6.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1037698 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 141 buildId 4407f7333e5bcb96a54db0c939dd19a770c73096 exec /usr/lib64/libtasn1.so.6.6.3 +-> caching - new mapping +=> found 857 unwind entries for /usr/lib64/libtasn1.so.6.6.3 low pc 3020 high pc 10d69 +- current chunk size 857 +- rest of chunk size 0 +- lowindex [ 37698 : 38555 ] highIndex +- executable 141 mapping /usr/lib64/libtasn1.so.6.6.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1038555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 142 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1038555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 142 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1038555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 142 buildId 8e40305f04041f14ebbb123182f15f67c4cec0af exec /usr/lib64/libgnutls.so.30.34.2 +-> caching - new mapping +=> found 25715 unwind entries for /usr/lib64/libgnutls.so.30.34.2 low pc 37020 high pc 173a44 +- current chunk size 25715 +- rest of chunk size 0 +- lowindex [ 38555 : 64270 ] highIndex +- executable 142 mapping /usr/lib64/libgnutls.so.30.34.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1064270 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 143 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1064270 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 143 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1064270 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 143 buildId 15554c81e3ea5792d76ebfe663a5354944e3a0ab exec /usr/lib64/libnettle.so.8.5 +-> caching - new mapping +=> found 3384 unwind entries for /usr/lib64/libnettle.so.8.5 low pc d020 high pc 309f5 +- current chunk size 3384 +- rest of chunk size 0 +- lowindex [ 64270 : 67654 ] highIndex +- executable 143 mapping /usr/lib64/libnettle.so.8.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067654 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 144 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067654 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 144 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067654 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067654 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.596215648Z caller=cpu.go:495 msg="adding unwind tables" pid=1154 +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067654 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556dfd188000, StartAddr: 0x556dfd18a000, EndAddr: 0x556dfd18d000, Executable:/usr/bin/abrt-dump-journal-core} +[info] adding memory mappings in for executable with ID 144 buildId 343c30bc37c45fecd90e0fad8e2d5135737ce064 exec /usr/bin/abrt-dump-journal-core +-> caching - new mapping +=> found 209 unwind entries for /usr/bin/abrt-dump-journal-core low pc 2020 high pc 4ec8 +- current chunk size 209 +- rest of chunk size 0 +- lowindex [ 67654 : 67863 ] highIndex +- executable 144 mapping /usr/bin/abrt-dump-journal-core shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 7db607745eb5f2634f9488a3699fad29b9b0b629 exec /usr/lib64/liblua-5.4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 00dac45074a8b3267e80ddf9f5419356998957e3 exec /usr/lib64/libfa.so.1.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId c3f24c7ba050a70c1d297dfcf1cbbd82f1124643 exec /usr/lib64/libpopt.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 894c2b0df11f94e5efd8212b1b56eac7a09b9c16 exec /usr/lib64/librpmio.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId b9de0a847a43bd60485067346cb7228f5dc96002 exec /usr/lib64/librpm.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId e63ed8f34565089e8482c8fa1bae1b48ab21893f exec /usr/lib64/libdw-0.188.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 94e3b8ef106a63bd7c172c5c8469f73f06a2121f exec /usr/lib64/libaugeas.so.0.25.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 595367e25f102be8f5a6149a9a237df3212c1dd5 exec /usr/lib64/libarchive.so.13.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 94677f60a8d271cc20f7b278fd83b3c52b972479 exec /usr/lib64/libsatyr.so.4.0.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId cb5f89af81053c7c924c0394a19395dfa98ac32e exec /usr/lib64/libjson-c.so.5.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 55eceed0b369d4ed0ea39fb121a767112b4298f7 exec /usr/lib64/libreport.so.2.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId bc0bb32a38cc46960f0bbca15f8ede1f5a66c909 exec /usr/lib64/libabrt.so.0.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 145 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.601138438Z caller=cpu.go:495 msg="adding unwind tables" pid=1155 +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1067863 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fd2ff41000, StartAddr: 0x55fd2ff44000, EndAddr: 0x55fd2ff48000, Executable:/usr/bin/abrt-dump-journal-oops} +[info] adding memory mappings in for executable with ID 145 buildId 5d9d6f930345faa060609e45b7ad922eb851f994 exec /usr/bin/abrt-dump-journal-oops +-> caching - new mapping +=> found 204 unwind entries for /usr/bin/abrt-dump-journal-oops low pc 3020 high pc 659e +- current chunk size 204 +- rest of chunk size 0 +- lowindex [ 67863 : 68067 ] highIndex +- executable 145 mapping /usr/bin/abrt-dump-journal-oops shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 7db607745eb5f2634f9488a3699fad29b9b0b629 exec /usr/lib64/liblua-5.4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 00dac45074a8b3267e80ddf9f5419356998957e3 exec /usr/lib64/libfa.so.1.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId c3f24c7ba050a70c1d297dfcf1cbbd82f1124643 exec /usr/lib64/libpopt.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 894c2b0df11f94e5efd8212b1b56eac7a09b9c16 exec /usr/lib64/librpmio.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId b9de0a847a43bd60485067346cb7228f5dc96002 exec /usr/lib64/librpm.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId e63ed8f34565089e8482c8fa1bae1b48ab21893f exec /usr/lib64/libdw-0.188.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 94e3b8ef106a63bd7c172c5c8469f73f06a2121f exec /usr/lib64/libaugeas.so.0.25.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 595367e25f102be8f5a6149a9a237df3212c1dd5 exec /usr/lib64/libarchive.so.13.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId cb5f89af81053c7c924c0394a19395dfa98ac32e exec /usr/lib64/libjson-c.so.5.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 94677f60a8d271cc20f7b278fd83b3c52b972479 exec /usr/lib64/libsatyr.so.4.0.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 55eceed0b369d4ed0ea39fb121a767112b4298f7 exec /usr/lib64/libreport.so.2.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId bc0bb32a38cc46960f0bbca15f8ede1f5a66c909 exec /usr/lib64/libabrt.so.0.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 146 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.605298324Z caller=cpu.go:495 msg="adding unwind tables" pid=1156 +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068067 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5652ff675000, StartAddr: 0x5652ff677000, EndAddr: 0x5652ff67a000, Executable:/usr/bin/abrt-dump-journal-xorg} +[info] adding memory mappings in for executable with ID 146 buildId ccf6fb413ab10a1a9cd04023f3d6dff58f8dfa14 exec /usr/bin/abrt-dump-journal-xorg +-> caching - new mapping +=> found 201 unwind entries for /usr/bin/abrt-dump-journal-xorg low pc 2020 high pc 4d9e +- current chunk size 201 +- rest of chunk size 0 +- lowindex [ 68067 : 68268 ] highIndex +- executable 146 mapping /usr/bin/abrt-dump-journal-xorg shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 7db607745eb5f2634f9488a3699fad29b9b0b629 exec /usr/lib64/liblua-5.4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 00dac45074a8b3267e80ddf9f5419356998957e3 exec /usr/lib64/libfa.so.1.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId c3f24c7ba050a70c1d297dfcf1cbbd82f1124643 exec /usr/lib64/libpopt.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 894c2b0df11f94e5efd8212b1b56eac7a09b9c16 exec /usr/lib64/librpmio.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId b9de0a847a43bd60485067346cb7228f5dc96002 exec /usr/lib64/librpm.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId e63ed8f34565089e8482c8fa1bae1b48ab21893f exec /usr/lib64/libdw-0.188.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 94e3b8ef106a63bd7c172c5c8469f73f06a2121f exec /usr/lib64/libaugeas.so.0.25.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 595367e25f102be8f5a6149a9a237df3212c1dd5 exec /usr/lib64/libarchive.so.13.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId cb5f89af81053c7c924c0394a19395dfa98ac32e exec /usr/lib64/libjson-c.so.5.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 94677f60a8d271cc20f7b278fd83b3c52b972479 exec /usr/lib64/libsatyr.so.4.0.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 55eceed0b369d4ed0ea39fb121a767112b4298f7 exec /usr/lib64/libreport.so.2.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId bc0bb32a38cc46960f0bbca15f8ede1f5a66c909 exec /usr/lib64/libabrt.so.0.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 147 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.610087462Z caller=cpu.go:495 msg="adding unwind tables" pid=1171 +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1068268 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b6d3491000, StartAddr: 0x55b6d34e0000, EndAddr: 0x55b6d35f3000, Executable:/usr/sbin/ModemManager} +[info] adding memory mappings in for executable with ID 147 buildId 7322887fde841374869d7eca288a12d8bf4d47e0 exec /usr/sbin/ModemManager +-> caching - new mapping +=> found 44051 unwind entries for /usr/sbin/ModemManager low pc 4f020 high pc 16164b +- current chunk size 44051 +- rest of chunk size 0 +- lowindex [ 68268 : 112319 ] highIndex +- executable 147 mapping /usr/sbin/ModemManager shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1112319 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 148 buildId 2294d602444dbb22b9f46c5f26a45bd7a59655c7 exec /usr/lib64/ModemManager/libmm-plugin-altair-lte.so +-> caching - new mapping +=> found 683 unwind entries for /usr/lib64/ModemManager/libmm-plugin-altair-lte.so low pc 3020 high pc 767c +- current chunk size 683 +- rest of chunk size 0 +- lowindex [ 112319 : 113002 ] highIndex +- executable 148 mapping /usr/lib64/ModemManager/libmm-plugin-altair-lte.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1113002 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 149 buildId 979bdb5f975cb2ad6f8c32aadb959b96f8a1fd4c exec /usr/lib64/ModemManager/libmm-plugin-anydata.so +-> caching - new mapping +=> found 176 unwind entries for /usr/lib64/ModemManager/libmm-plugin-anydata.so low pc 2020 high pc 339c +- current chunk size 176 +- rest of chunk size 0 +- lowindex [ 113002 : 113178 ] highIndex +- executable 149 mapping /usr/lib64/ModemManager/libmm-plugin-anydata.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1113178 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 150 buildId 353c3dd87be2c90165db8f2dca215689e515aa28 exec /usr/lib64/ModemManager/libmm-plugin-broadmobi.so +-> caching - new mapping +=> found 48 unwind entries for /usr/lib64/ModemManager/libmm-plugin-broadmobi.so low pc 1020 high pc 155c +- current chunk size 48 +- rest of chunk size 0 +- lowindex [ 113178 : 113226 ] highIndex +- executable 150 mapping /usr/lib64/ModemManager/libmm-plugin-broadmobi.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1113226 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 151 buildId 2f0a5c7cab3f82ea5d4e1f5bb8b64f268ade946f exec /usr/lib64/ModemManager/libmm-plugin-cinterion.so +-> caching - new mapping +=> found 2397 unwind entries for /usr/lib64/ModemManager/libmm-plugin-cinterion.so low pc 5020 high pc 15d5e +- current chunk size 2397 +- rest of chunk size 0 +- lowindex [ 113226 : 115623 ] highIndex +- executable 151 mapping /usr/lib64/ModemManager/libmm-plugin-cinterion.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1115623 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 152 buildId f6466da9050f320ca5418b85483261c1aa300940 exec /usr/lib64/ModemManager/libmm-plugin-dell.so +-> caching - new mapping +=> found 170 unwind entries for /usr/lib64/ModemManager/libmm-plugin-dell.so low pc 2020 high pc 389c +- current chunk size 170 +- rest of chunk size 0 +- lowindex [ 115623 : 115793 ] highIndex +- executable 152 mapping /usr/lib64/ModemManager/libmm-plugin-dell.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1115793 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 153 buildId 3139aa5accbd335dd0211d8e5f7b712f2e7f8dc1 exec /usr/lib64/ModemManager/libmm-plugin-dlink.so +-> caching - new mapping +=> found 46 unwind entries for /usr/lib64/ModemManager/libmm-plugin-dlink.so low pc 1020 high pc 1548 +- current chunk size 46 +- rest of chunk size 0 +- lowindex [ 115793 : 115839 ] highIndex +- executable 153 mapping /usr/lib64/ModemManager/libmm-plugin-dlink.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1115839 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 154 buildId 0689bffdc605e29dec5ce9334973ebe9088d148a exec /usr/lib64/ModemManager/libmm-plugin-ericsson-mbm.so +-> caching - new mapping +=> found 1120 unwind entries for /usr/lib64/ModemManager/libmm-plugin-ericsson-mbm.so low pc 4020 high pc a6e8 +- current chunk size 1120 +- rest of chunk size 0 +- lowindex [ 115839 : 116959 ] highIndex +- executable 154 mapping /usr/lib64/ModemManager/libmm-plugin-ericsson-mbm.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1116959 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 155 buildId c46d8433a9e4f56870770c710295b656d22f6fbb exec /usr/lib64/ModemManager/libmm-plugin-fibocom.so +-> caching - new mapping +=> found 52 unwind entries for /usr/lib64/ModemManager/libmm-plugin-fibocom.so low pc 1020 high pc 177c +- current chunk size 52 +- rest of chunk size 0 +- lowindex [ 116959 : 117011 ] highIndex +- executable 155 mapping /usr/lib64/ModemManager/libmm-plugin-fibocom.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1117011 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 156 buildId c97c67675051e76b189159ab60924752df46d4d3 exec /usr/lib64/ModemManager/libmm-plugin-foxconn.so +-> caching - new mapping +=> found 50 unwind entries for /usr/lib64/ModemManager/libmm-plugin-foxconn.so low pc 1020 high pc 1634 +- current chunk size 50 +- rest of chunk size 0 +- lowindex [ 117011 : 117061 ] highIndex +- executable 156 mapping /usr/lib64/ModemManager/libmm-plugin-foxconn.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1117061 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 157 buildId f80d69ef38cd39edc50f0552bf1b6eada5c313cf exec /usr/lib64/ModemManager/libmm-plugin-generic.so +-> caching - new mapping +=> found 50 unwind entries for /usr/lib64/ModemManager/libmm-plugin-generic.so low pc 1020 high pc 1614 +- current chunk size 50 +- rest of chunk size 0 +- lowindex [ 117061 : 117111 ] highIndex +- executable 157 mapping /usr/lib64/ModemManager/libmm-plugin-generic.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1117111 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 158 buildId f4c4f06387512918f2bf96d7acf5db071a80acd5 exec /usr/lib64/ModemManager/libmm-plugin-gosuncn.so +-> caching - new mapping +=> found 52 unwind entries for /usr/lib64/ModemManager/libmm-plugin-gosuncn.so low pc 1020 high pc 162c +- current chunk size 52 +- rest of chunk size 0 +- lowindex [ 117111 : 117163 ] highIndex +- executable 158 mapping /usr/lib64/ModemManager/libmm-plugin-gosuncn.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1117163 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 159 buildId 664d4c853069f1d2732d2dab8e8fa2b203252466 exec /usr/lib64/ModemManager/libmm-plugin-haier.so +-> caching - new mapping +=> found 43 unwind entries for /usr/lib64/ModemManager/libmm-plugin-haier.so low pc 1020 high pc 146d +- current chunk size 43 +- rest of chunk size 0 +- lowindex [ 117163 : 117206 ] highIndex +- executable 159 mapping /usr/lib64/ModemManager/libmm-plugin-haier.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1117206 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 160 buildId df2841559267ee4b50b571a2246e6c712b6f2649 exec /usr/lib64/ModemManager/libmm-plugin-huawei.so +-> caching - new mapping +=> found 2276 unwind entries for /usr/lib64/ModemManager/libmm-plugin-huawei.so low pc 6020 high pc 15bf7 +- current chunk size 2276 +- rest of chunk size 0 +- lowindex [ 117206 : 119482 ] highIndex +- executable 160 mapping /usr/lib64/ModemManager/libmm-plugin-huawei.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1119482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 161 buildId fc06955f13e5a3f19c354791a5ec3dc4a7c282d9 exec /usr/lib64/ModemManager/libmm-plugin-iridium.so +-> caching - new mapping +=> found 336 unwind entries for /usr/lib64/ModemManager/libmm-plugin-iridium.so low pc 2020 high pc 3d14 +- current chunk size 336 +- rest of chunk size 0 +- lowindex [ 119482 : 119818 ] highIndex +- executable 161 mapping /usr/lib64/ModemManager/libmm-plugin-iridium.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1119818 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 162 buildId 950aec665cd2a9dd5b205b31cb7ab542ad519217 exec /usr/lib64/ModemManager/libmm-plugin-linktop.so +-> caching - new mapping +=> found 151 unwind entries for /usr/lib64/ModemManager/libmm-plugin-linktop.so low pc 2020 high pc 2efd +- current chunk size 151 +- rest of chunk size 0 +- lowindex [ 119818 : 119969 ] highIndex +- executable 162 mapping /usr/lib64/ModemManager/libmm-plugin-linktop.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1119969 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 163 buildId 710523f7cb3bfcc041064e068e77626b8c588f80 exec /usr/lib64/ModemManager/libmm-plugin-longcheer.so +-> caching - new mapping +=> found 272 unwind entries for /usr/lib64/ModemManager/libmm-plugin-longcheer.so low pc 2020 high pc 37e4 +- current chunk size 272 +- rest of chunk size 0 +- lowindex [ 119969 : 120241 ] highIndex +- executable 163 mapping /usr/lib64/ModemManager/libmm-plugin-longcheer.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1120241 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 164 buildId 8a43ea98501f7b90a790ca22bd1eff8e142c62ff exec /usr/lib64/ModemManager/libmm-plugin-motorola.so +-> caching - new mapping +=> found 74 unwind entries for /usr/lib64/ModemManager/libmm-plugin-motorola.so low pc 1020 high pc 16dd +- current chunk size 74 +- rest of chunk size 0 +- lowindex [ 120241 : 120315 ] highIndex +- executable 164 mapping /usr/lib64/ModemManager/libmm-plugin-motorola.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1120315 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 165 buildId 3c4c3f34a20fc69a54aa5e8d0f8af3105f9a5cf2 exec /usr/lib64/ModemManager/libmm-plugin-mtk.so +-> caching - new mapping +=> found 410 unwind entries for /usr/lib64/ModemManager/libmm-plugin-mtk.so low pc 2020 high pc 471d +- current chunk size 410 +- rest of chunk size 0 +- lowindex [ 120315 : 120725 ] highIndex +- executable 165 mapping /usr/lib64/ModemManager/libmm-plugin-mtk.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1120725 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 166 buildId 055ab2ac1083f57c930c2d0ece0426a25d8e6368 exec /usr/lib64/ModemManager/libmm-plugin-nokia-icera.so +-> caching - new mapping +=> found 47 unwind entries for /usr/lib64/ModemManager/libmm-plugin-nokia-icera.so low pc 1020 high pc 148c +- current chunk size 47 +- rest of chunk size 0 +- lowindex [ 120725 : 120772 ] highIndex +- executable 166 mapping /usr/lib64/ModemManager/libmm-plugin-nokia-icera.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1120772 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 167 buildId 5b7547203ad1aa5c4ffb0a3723f93e9eb036b689 exec /usr/lib64/ModemManager/libmm-plugin-nokia.so +-> caching - new mapping +=> found 219 unwind entries for /usr/lib64/ModemManager/libmm-plugin-nokia.so low pc 2020 high pc 33c4 +- current chunk size 219 +- rest of chunk size 0 +- lowindex [ 120772 : 120991 ] highIndex +- executable 167 mapping /usr/lib64/ModemManager/libmm-plugin-nokia.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1120991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 168 buildId 30bc437044df8a2d1c5534edcc1f372f7b9f45e3 exec /usr/lib64/ModemManager/libmm-plugin-novatel-lte.so +-> caching - new mapping +=> found 623 unwind entries for /usr/lib64/ModemManager/libmm-plugin-novatel-lte.so low pc 3020 high pc 65fd +- current chunk size 623 +- rest of chunk size 0 +- lowindex [ 120991 : 121614 ] highIndex +- executable 168 mapping /usr/lib64/ModemManager/libmm-plugin-novatel-lte.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1121614 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 169 buildId 3b3a26d714e49b32995169377a31f9734ddf8785 exec /usr/lib64/ModemManager/libmm-plugin-novatel.so +-> caching - new mapping +=> found 52 unwind entries for /usr/lib64/ModemManager/libmm-plugin-novatel.so low pc 1020 high pc 157c +- current chunk size 52 +- rest of chunk size 0 +- lowindex [ 121614 : 121666 ] highIndex +- executable 169 mapping /usr/lib64/ModemManager/libmm-plugin-novatel.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1121666 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 170 buildId 9639abb51c43bf23af7f7eaeba3b70ef5caf5cd1 exec /usr/lib64/ModemManager/libmm-plugin-option-hso.so +-> caching - new mapping +=> found 690 unwind entries for /usr/lib64/ModemManager/libmm-plugin-option-hso.so low pc 3020 high pc 709c +- current chunk size 690 +- rest of chunk size 0 +- lowindex [ 121666 : 122356 ] highIndex +- executable 170 mapping /usr/lib64/ModemManager/libmm-plugin-option-hso.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1122356 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 171 buildId 6b582ef5a711e003d0e074cbab558efbcfc60cdf exec /usr/lib64/ModemManager/libmm-plugin-option.so +-> caching - new mapping +=> found 56 unwind entries for /usr/lib64/ModemManager/libmm-plugin-option.so low pc 1020 high pc 15d0 +- current chunk size 56 +- rest of chunk size 0 +- lowindex [ 122356 : 122412 ] highIndex +- executable 171 mapping /usr/lib64/ModemManager/libmm-plugin-option.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1122412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 172 buildId 6086fa5b7cd03eace7bfccd11b275a4d5a4cf1fc exec /usr/lib64/ModemManager/libmm-plugin-pantech.so +-> caching - new mapping +=> found 183 unwind entries for /usr/lib64/ModemManager/libmm-plugin-pantech.so low pc 2020 high pc 2fac +- current chunk size 183 +- rest of chunk size 0 +- lowindex [ 122412 : 122595 ] highIndex +- executable 172 mapping /usr/lib64/ModemManager/libmm-plugin-pantech.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1122595 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 173 buildId 0834d0a0875f0128dd5acedd174f9b74a7e06ac9 exec /usr/lib64/ModemManager/libmm-plugin-qcom-soc.so +-> caching - new mapping +=> found 111 unwind entries for /usr/lib64/ModemManager/libmm-plugin-qcom-soc.so low pc 1020 high pc 1aa8 +- current chunk size 111 +- rest of chunk size 0 +- lowindex [ 122595 : 122706 ] highIndex +- executable 173 mapping /usr/lib64/ModemManager/libmm-plugin-qcom-soc.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1122706 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 174 buildId ee59440a1f3623ccf7f515477ee3be9df2a50b47 exec /usr/lib64/ModemManager/libmm-plugin-quectel.so +-> caching - new mapping +=> found 553 unwind entries for /usr/lib64/ModemManager/libmm-plugin-quectel.so low pc 3020 high pc 673c +- current chunk size 553 +- rest of chunk size 0 +- lowindex [ 122706 : 123259 ] highIndex +- executable 174 mapping /usr/lib64/ModemManager/libmm-plugin-quectel.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1123259 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 175 buildId 623f56cc4986321e0ab0df5b5502c41cf85f3d7b exec /usr/lib64/ModemManager/libmm-plugin-samsung.so +-> caching - new mapping +=> found 81 unwind entries for /usr/lib64/ModemManager/libmm-plugin-samsung.so low pc 1020 high pc 16f8 +- current chunk size 81 +- rest of chunk size 0 +- lowindex [ 123259 : 123340 ] highIndex +- executable 175 mapping /usr/lib64/ModemManager/libmm-plugin-samsung.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1123340 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 176 buildId b7265a036c34491a8742d82aba149831bf114f5c exec /usr/lib64/ModemManager/libmm-plugin-sierra-legacy.so +-> caching - new mapping +=> found 115 unwind entries for /usr/lib64/ModemManager/libmm-plugin-sierra-legacy.so low pc 2020 high pc 2adc +- current chunk size 115 +- rest of chunk size 0 +- lowindex [ 123340 : 123455 ] highIndex +- executable 176 mapping /usr/lib64/ModemManager/libmm-plugin-sierra-legacy.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1123455 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 177 buildId 560b22d35b61d84759a57aeb6e06f040ca06e426 exec /usr/lib64/ModemManager/libmm-plugin-sierra.so +-> caching - new mapping +=> found 54 unwind entries for /usr/lib64/ModemManager/libmm-plugin-sierra.so low pc 1020 high pc 175c +- current chunk size 54 +- rest of chunk size 0 +- lowindex [ 123455 : 123509 ] highIndex +- executable 177 mapping /usr/lib64/ModemManager/libmm-plugin-sierra.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1123509 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 178 buildId 44febc26f27f99f0aa7baf6f7b112f61b1068c7a exec /usr/lib64/ModemManager/libmm-plugin-simtech.so +-> caching - new mapping +=> found 1183 unwind entries for /usr/lib64/ModemManager/libmm-plugin-simtech.so low pc 3020 high pc 933c +- current chunk size 1183 +- rest of chunk size 0 +- lowindex [ 123509 : 124692 ] highIndex +- executable 178 mapping /usr/lib64/ModemManager/libmm-plugin-simtech.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1124692 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 179 buildId 27a68bbc44f4956e77e228e3db122d500cf03150 exec /usr/lib64/ModemManager/libmm-plugin-telit.so +-> caching - new mapping +=> found 54 unwind entries for /usr/lib64/ModemManager/libmm-plugin-telit.so low pc 1020 high pc 163c +- current chunk size 54 +- rest of chunk size 0 +- lowindex [ 124692 : 124746 ] highIndex +- executable 179 mapping /usr/lib64/ModemManager/libmm-plugin-telit.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1124746 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 180 buildId 2f60b1f9f361a200e8d62abe4c07307cfa825d96 exec /usr/lib64/ModemManager/libmm-plugin-thuraya.so +-> caching - new mapping +=> found 143 unwind entries for /usr/lib64/ModemManager/libmm-plugin-thuraya.so low pc 2020 high pc 36bd +- current chunk size 143 +- rest of chunk size 0 +- lowindex [ 124746 : 124889 ] highIndex +- executable 180 mapping /usr/lib64/ModemManager/libmm-plugin-thuraya.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1124889 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 181 buildId 7112b6d7f08e73b8483e026adf7366fc508a76ad exec /usr/lib64/ModemManager/libmm-plugin-tplink.so +-> caching - new mapping +=> found 46 unwind entries for /usr/lib64/ModemManager/libmm-plugin-tplink.so low pc 1020 high pc 1548 +- current chunk size 46 +- rest of chunk size 0 +- lowindex [ 124889 : 124935 ] highIndex +- executable 181 mapping /usr/lib64/ModemManager/libmm-plugin-tplink.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1124935 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 182 buildId 164ca1f08cb94219e23605f612a5e153c4b3c2b0 exec /usr/lib64/ModemManager/libmm-plugin-ublox.so +-> caching - new mapping +=> found 1591 unwind entries for /usr/lib64/ModemManager/libmm-plugin-ublox.so low pc 4020 high pc df84 +- current chunk size 1591 +- rest of chunk size 0 +- lowindex [ 124935 : 126526 ] highIndex +- executable 182 mapping /usr/lib64/ModemManager/libmm-plugin-ublox.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1126526 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 183 buildId 0888063ee206d4bf63632778c0ba0d2e11c9a132 exec /usr/lib64/ModemManager/libmm-plugin-via.so +-> caching - new mapping +=> found 257 unwind entries for /usr/lib64/ModemManager/libmm-plugin-via.so low pc 2020 high pc 37fd +- current chunk size 257 +- rest of chunk size 0 +- lowindex [ 126526 : 126783 ] highIndex +- executable 183 mapping /usr/lib64/ModemManager/libmm-plugin-via.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1126783 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 184 buildId a233751d592cb32cb3c452d25a92b90182b77296 exec /usr/lib64/ModemManager/libmm-plugin-wavecom.so +-> caching - new mapping +=> found 455 unwind entries for /usr/lib64/ModemManager/libmm-plugin-wavecom.so low pc 2020 high pc 5470 +- current chunk size 455 +- rest of chunk size 0 +- lowindex [ 126783 : 127238 ] highIndex +- executable 184 mapping /usr/lib64/ModemManager/libmm-plugin-wavecom.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1127238 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 185 buildId 35bca9cfc095b57283b964ace9bdb07252319a71 exec /usr/lib64/ModemManager/libmm-plugin-x22x.so +-> caching - new mapping +=> found 286 unwind entries for /usr/lib64/ModemManager/libmm-plugin-x22x.so low pc 2020 high pc 3b64 +- current chunk size 286 +- rest of chunk size 0 +- lowindex [ 127238 : 127524 ] highIndex +- executable 185 mapping /usr/lib64/ModemManager/libmm-plugin-x22x.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1127524 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 186 buildId 5c36f33c56392b1794340054a577a997a3aa01c2 exec /usr/lib64/ModemManager/libmm-plugin-zte.so +-> caching - new mapping +=> found 510 unwind entries for /usr/lib64/ModemManager/libmm-plugin-zte.so low pc 2020 high pc 4c7c +- current chunk size 510 +- rest of chunk size 0 +- lowindex [ 127524 : 128034 ] highIndex +- executable 186 mapping /usr/lib64/ModemManager/libmm-plugin-zte.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1128034 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 187 buildId 3307ef197484a327f02684ae1965f29478cd5f71 exec /usr/lib64/ModemManager/libmm-shared-foxconn.so +-> caching - new mapping +=> found 218 unwind entries for /usr/lib64/ModemManager/libmm-shared-foxconn.so low pc 2020 high pc 3580 +- current chunk size 218 +- rest of chunk size 0 +- lowindex [ 128034 : 128252 ] highIndex +- executable 187 mapping /usr/lib64/ModemManager/libmm-shared-foxconn.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1128252 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 188 buildId 14c18eae2e4c184b516fcd685538b9f03505612a exec /usr/lib64/ModemManager/libmm-shared-icera.so +-> caching - new mapping +=> found 1304 unwind entries for /usr/lib64/ModemManager/libmm-shared-icera.so low pc 4020 high pc c03a +- current chunk size 1304 +- rest of chunk size 0 +- lowindex [ 128252 : 129556 ] highIndex +- executable 188 mapping /usr/lib64/ModemManager/libmm-shared-icera.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1129556 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 189 buildId b5d41a208fed95d61dd9b1b476b7407120d8fabe exec /usr/lib64/ModemManager/libmm-shared-novatel.so +-> caching - new mapping +=> found 640 unwind entries for /usr/lib64/ModemManager/libmm-shared-novatel.so low pc 3020 high pc 6df1 +- current chunk size 640 +- rest of chunk size 0 +- lowindex [ 129556 : 130196 ] highIndex +- executable 189 mapping /usr/lib64/ModemManager/libmm-shared-novatel.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1130196 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 190 buildId c310a40b42a25d06436b110424f6bb46a79d342e exec /usr/lib64/ModemManager/libmm-shared-sierra.so +-> caching - new mapping +=> found 1215 unwind entries for /usr/lib64/ModemManager/libmm-shared-sierra.so low pc 4020 high pc abb1 +- current chunk size 1215 +- rest of chunk size 0 +- lowindex [ 130196 : 131411 ] highIndex +- executable 190 mapping /usr/lib64/ModemManager/libmm-shared-sierra.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1131411 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 191 buildId 740d7ec46dcf8a4711a2b8bd9e73e218d7d28c2c exec /usr/lib64/ModemManager/libmm-shared-telit.so +-> caching - new mapping +=> found 1163 unwind entries for /usr/lib64/ModemManager/libmm-shared-telit.so low pc 4020 high pc aabd +- current chunk size 1163 +- rest of chunk size 0 +- lowindex [ 131411 : 132574 ] highIndex +- executable 191 mapping /usr/lib64/ModemManager/libmm-shared-telit.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1132574 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 192 buildId 8abfe3def8954984014690eb441a7097c3d663eb exec /usr/lib64/ModemManager/libmm-shared-xmm.so +-> caching - new mapping +=> found 908 unwind entries for /usr/lib64/ModemManager/libmm-shared-xmm.so low pc 4020 high pc a25b +- current chunk size 908 +- rest of chunk size 0 +- lowindex [ 132574 : 133482 ] highIndex +- executable 192 mapping /usr/lib64/ModemManager/libmm-shared-xmm.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 193 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 193 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 193 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 193 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 193 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 193 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 193 buildId 2e70dffade23a04e748de7f7522420a7f3785cec exec /usr/lib64/gconv/IBM850.so +-> caching - new mapping +=> found 53 unwind entries for /usr/lib64/gconv/IBM850.so low pc 1020 high pc 2222 +- current chunk size 53 +- rest of chunk size 0 +- lowindex [ 133482 : 133535 ] highIndex +- executable 193 mapping /usr/lib64/gconv/IBM850.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1133535 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 194 buildId 333c711fc1d9ef0ba6ad2b65bac3a220824af03d exec /usr/lib64/libqmi-glib.so.5.8.0 +-> caching - new mapping +=> found 43159 unwind entries for /usr/lib64/libqmi-glib.so.5.8.0 low pc 8f020 high pc 2477c8 +- current chunk size 43159 +- rest of chunk size 0 +- lowindex [ 133535 : 176694 ] highIndex +- executable 194 mapping /usr/lib64/libqmi-glib.so.5.8.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1176694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 195 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1176694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 195 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1176694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 195 buildId ce8d7a0ca7feca01cdf6ef5f45aff22eec05223b exec /usr/lib64/libmbim-glib.so.4.6.0 +-> caching - new mapping +=> found 8162 unwind entries for /usr/lib64/libmbim-glib.so.4.6.0 low pc 16020 high pc 578ae +- current chunk size 8162 +- rest of chunk size 0 +- lowindex [ 176694 : 184856 ] highIndex +- executable 195 mapping /usr/lib64/libmbim-glib.so.4.6.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1184856 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 196 buildId 72fb948f257653d4733e987634648d7a7da29257 exec /usr/lib64/libqrtr-glib.so.0.0.0 +-> caching - new mapping +=> found 724 unwind entries for /usr/lib64/libqrtr-glib.so.0.0.0 low pc 3020 high pc 725e +- current chunk size 724 +- rest of chunk size 0 +- lowindex [ 184856 : 185580 ] highIndex +- executable 196 mapping /usr/lib64/libqrtr-glib.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1185580 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 197 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1185580 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 197 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1185580 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 197 buildId f69a4077563594fe9569904e2807dfaa06928738 exec /usr/lib64/libmm-glib.so.0.8.0 +-> caching - new mapping +=> found 26887 unwind entries for /usr/lib64/libmm-glib.so.0.8.0 low pc 3c020 high pc b06d5 +- current chunk size 26887 +- rest of chunk size 0 +- lowindex [ 185580 : 212467 ] highIndex +- executable 197 mapping /usr/lib64/libmm-glib.so.0.8.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1212467 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 198 buildId 20f774b26ea61925654798d6979c7349a5d16f81 exec /usr/lib64/ModemManager/libmm-shared-option.so +-> caching - new mapping +=> found 492 unwind entries for /usr/lib64/ModemManager/libmm-shared-option.so low pc 2020 high pc 4c3f +- current chunk size 492 +- rest of chunk size 0 +- lowindex [ 212467 : 212959 ] highIndex +- executable 198 mapping /usr/lib64/ModemManager/libmm-shared-option.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1212959 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 199 buildId 19132656744c1a9c0df8cae899840a32e376a7a8 exec /usr/lib64/gconv/UTF-16.so +-> caching - new mapping +=> found 71 unwind entries for /usr/lib64/gconv/UTF-16.so low pc 1020 high pc 2b14 +- current chunk size 71 +- rest of chunk size 0 +- lowindex [ 212959 : 213030 ] highIndex +- executable 199 mapping /usr/lib64/gconv/UTF-16.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1213030 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 200 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1213030 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1213030 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.674035979Z caller=cpu.go:495 msg="adding unwind tables" pid=1176 +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1213030 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556ef5369000, StartAddr: 0x556ef536a000, EndAddr: 0x556ef536b000, Executable:/usr/bin/python3.10} +[info] adding memory mappings in for executable with ID 200 buildId 4b377952f9ac85a1e7855b67d0e7b05621512e85 exec /usr/bin/python3.10 +-> caching - new mapping +=> found 7 unwind entries for /usr/bin/python3.10 low pc 1020 high pc 1169 +- current chunk size 7 +- rest of chunk size 0 +- lowindex [ 213030 : 213037 ] highIndex +- executable 200 mapping /usr/bin/python3.10 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1213037 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 201 buildId edf11ae0d51d87f93925e8825edaff9692fad170 exec /usr/lib64/libnl-3.so.200.26.0 +-> caching - new mapping +=> found 3024 unwind entries for /usr/lib64/libnl-3.so.200.26.0 low pc 8020 high pc 17869 +- current chunk size 3024 +- rest of chunk size 0 +- lowindex [ 213037 : 216061 ] highIndex +- executable 201 mapping /usr/lib64/libnl-3.so.200.26.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1216061 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 202 buildId b59053e3f19465524fa7a6929f7bd1c741a1196c exec /usr/lib64/libnl-route-3.so.200.26.0 +-> caching - new mapping +=> found 9236 unwind entries for /usr/lib64/libnl-route-3.so.200.26.0 low pc 1d020 high pc 63ee7 +- current chunk size 9236 +- rest of chunk size 0 +- lowindex [ 216061 : 225297 ] highIndex +- executable 202 mapping /usr/lib64/libnl-route-3.so.200.26.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1225297 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 203 buildId 67ffd2af6462ed8be51aaa96f18d227651f9f00e exec /usr/lib64/libibverbs.so.1.14.39.0 +-> caching - new mapping +=> found 2099 unwind entries for /usr/lib64/libibverbs.so.1.14.39.0 low pc 7020 high pc 19f6e +- current chunk size 2099 +- rest of chunk size 0 +- lowindex [ 225297 : 227396 ] highIndex +- executable 203 mapping /usr/lib64/libibverbs.so.1.14.39.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1227396 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 204 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - new mapping +=> found 1502 unwind entries for /usr/lib64/libtinfo.so.6.2 low pc e020 high pc 1bedc +- current chunk size 1502 +- rest of chunk size 0 +- lowindex [ 227396 : 228898 ] highIndex +- executable 204 mapping /usr/lib64/libtinfo.so.6.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1228898 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 205 buildId c7526197eaa3ec267ac09b9b007f069267f3cd7a exec /usr/lib64/libpcap.so.1.10.1 +-> caching - new mapping +=> found 3278 unwind entries for /usr/lib64/libpcap.so.1.10.1 low pc 6020 high pc 2df72 +- current chunk size 3278 +- rest of chunk size 0 +- lowindex [ 228898 : 232176 ] highIndex +- executable 205 mapping /usr/lib64/libpcap.so.1.10.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1232176 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 206 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1232176 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 206 buildId 786ebbe150c63e27beb2957d717bece33431af6f exec /usr/lib64/libedit.so.0.0.68 +-> caching - new mapping +=> found 3325 unwind entries for /usr/lib64/libedit.so.0.0.68 low pc 9020 high pc 28496 +- current chunk size 3325 +- rest of chunk size 0 +- lowindex [ 232176 : 235501 ] highIndex +- executable 206 mapping /usr/lib64/libedit.so.0.0.68 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1235501 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 207 buildId e32f5cb5436c6263da70f463afa84e34418d2884 exec /usr/lib64/libxtables.so.12.4.0 +-> caching - new mapping +=> found 914 unwind entries for /usr/lib64/libxtables.so.12.4.0 low pc 4020 high pc b43f +- current chunk size 914 +- rest of chunk size 0 +- lowindex [ 235501 : 236415 ] highIndex +- executable 207 mapping /usr/lib64/libxtables.so.12.4.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1236415 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 208 buildId 40982101549bd2c5f33a646fd1c21b135b5e93bf exec /usr/lib64/libnftnl.so.11.6.0 +-> caching - new mapping +=> found 4375 unwind entries for /usr/lib64/libnftnl.so.11.6.0 low pc a020 high pc 24815 +- current chunk size 4375 +- rest of chunk size 0 +- lowindex [ 236415 : 240790 ] highIndex +- executable 208 mapping /usr/lib64/libnftnl.so.11.6.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 4 , total entries: 1240790 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 209 buildId 6dc7e4d361dc7dd1edeab47f960efcf81441047c exec /usr/lib64/libnftables.so.1.1.0 +-> caching - new mapping +=> found 10503 unwind entries for /usr/lib64/libnftables.so.1.1.0 low pc 18020 high pc 88f44 +- current chunk size 9210 +- rest of chunk size 1293 +- lowindex [ 240790 : 250000 ] highIndex +- executable 209 mapping /usr/lib64/libnftables.so.1.1.0 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 1293 +- rest of chunk size 0 +- lowindex [ 0 : 1293 ] highIndex +- executable 209 mapping /usr/lib64/libnftables.so.1.1.0 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1251293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 210 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1251293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 210 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1251293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 210 buildId 010af6973aaad1eeae9a500bbab83738aa22fbbe exec /usr/lib64/libjansson.so.4.13.0 +-> caching - new mapping +=> found 1085 unwind entries for /usr/lib64/libjansson.so.4.13.0 low pc 2020 high pc aadf +- current chunk size 1085 +- rest of chunk size 0 +- lowindex [ 1293 : 2378 ] highIndex +- executable 210 mapping /usr/lib64/libjansson.so.4.13.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1252378 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 211 buildId 285fc73557bd60879160feecce2041ec32196c6b exec /usr/lib64/libmnl.so.0.2.0 +-> caching - new mapping +=> found 357 unwind entries for /usr/lib64/libmnl.so.0.2.0 low pc 2020 high pc 3a51 +- current chunk size 357 +- rest of chunk size 0 +- lowindex [ 2378 : 2735 ] highIndex +- executable 211 mapping /usr/lib64/libmnl.so.0.2.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1252735 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 212 buildId 5d5c9f5f4f7cd156075fb004727163768bf9f746 exec /usr/lib64/python3.10/lib-dynload/_ssl.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 1251 unwind entries for /usr/lib64/python3.10/lib-dynload/_ssl.cpython-310-x86_64-linux-gnu.so low pc 12020 high pc 1d0b6 +- current chunk size 1251 +- rest of chunk size 0 +- lowindex [ 2735 : 3986 ] highIndex +- executable 212 mapping /usr/lib64/python3.10/lib-dynload/_ssl.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1253986 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 213 buildId 149201ea5c14c8a863a79f33ac50df3d25789008 exec /usr/lib64/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 1626 unwind entries for /usr/lib64/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so low pc 5020 high pc 104ac +- current chunk size 1626 +- rest of chunk size 0 +- lowindex [ 3986 : 5612 ] highIndex +- executable 213 mapping /usr/lib64/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1255612 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 214 buildId 4d6ded48033ba0255210d167610de64e9d712284 exec /usr/lib64/python3.10/lib-dynload/_blake2.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 291 unwind entries for /usr/lib64/python3.10/lib-dynload/_blake2.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 8577 +- current chunk size 291 +- rest of chunk size 0 +- lowindex [ 5612 : 5903 ] highIndex +- executable 214 mapping /usr/lib64/python3.10/lib-dynload/_blake2.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1255903 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 215 buildId 77ab270ea9c1847d622119c419ecd63de8e5b6e7 exec /usr/lib64/python3.10/site-packages/cairo/_cairo.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 2710 unwind entries for /usr/lib64/python3.10/site-packages/cairo/_cairo.cpython-310-x86_64-linux-gnu.so low pc d020 high pc 21882 +- current chunk size 2710 +- rest of chunk size 0 +- lowindex [ 5903 : 8613 ] highIndex +- executable 215 mapping /usr/lib64/python3.10/site-packages/cairo/_cairo.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1258613 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 216 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - new mapping +=> found 20 unwind entries for /usr/lib64/libbrotlicommon.so.1.0.9 low pc 1020 high pc 15d4 +- current chunk size 20 +- rest of chunk size 0 +- lowindex [ 8613 : 8633 ] highIndex +- executable 216 mapping /usr/lib64/libbrotlicommon.so.1.0.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1258633 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 217 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - new mapping +=> found 1149 unwind entries for /usr/lib64/libgraphite2.so.3.2.1 low pc 3020 high pc 1a2ea +- current chunk size 1149 +- rest of chunk size 0 +- lowindex [ 8633 : 9782 ] highIndex +- executable 217 mapping /usr/lib64/libgraphite2.so.3.2.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1259782 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 218 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - new mapping +=> found 136 unwind entries for /usr/lib64/libXau.so.6.0.0 low pc 1020 high pc 2082 +- current chunk size 136 +- rest of chunk size 0 +- lowindex [ 9782 : 9918 ] highIndex +- executable 218 mapping /usr/lib64/libXau.so.6.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1259918 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 219 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - new mapping +=> found 299 unwind entries for /usr/lib64/libbrotlidec.so.1.0.9 low pc 1020 high pc 7d3a +- current chunk size 299 +- rest of chunk size 0 +- lowindex [ 9918 : 10217 ] highIndex +- executable 219 mapping /usr/lib64/libbrotlidec.so.1.0.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1260217 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 220 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - new mapping +=> found 11546 unwind entries for /usr/lib64/libharfbuzz.so.0.40000.0 low pc a020 high pc afa92 +- current chunk size 11546 +- rest of chunk size 0 +- lowindex [ 10217 : 21763 ] highIndex +- executable 220 mapping /usr/lib64/libharfbuzz.so.0.40000.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1271763 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 221 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1271763 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 221 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - new mapping +=> found 7844 unwind entries for /usr/lib64/libpixman-1.so.0.40.0 low pc b020 high pc 922b7 +- current chunk size 7844 +- rest of chunk size 0 +- lowindex [ 21763 : 29607 ] highIndex +- executable 221 mapping /usr/lib64/libpixman-1.so.0.40.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1279607 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 222 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - new mapping +=> found 588 unwind entries for /usr/lib64/libxcb-render.so.0.0.0 low pc 5020 high pc a4bf +- current chunk size 588 +- rest of chunk size 0 +- lowindex [ 29607 : 30195 ] highIndex +- executable 222 mapping /usr/lib64/libxcb-render.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1280195 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 223 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - new mapping +=> found 2372 unwind entries for /usr/lib64/libxcb.so.1.1.0 low pc c020 high pc 202f0 +- current chunk size 2372 +- rest of chunk size 0 +- lowindex [ 30195 : 32567 ] highIndex +- executable 223 mapping /usr/lib64/libxcb.so.1.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1282567 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 224 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - new mapping +=> found 896 unwind entries for /usr/lib64/libXrender.so.1.3.0 low pc 2020 high pc 8761 +- current chunk size 896 +- rest of chunk size 0 +- lowindex [ 32567 : 33463 ] highIndex +- executable 224 mapping /usr/lib64/libXrender.so.1.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1283463 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 225 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - new mapping +=> found 1976 unwind entries for /usr/lib64/libXext.so.6.4.0 low pc 4020 high pc e88e +- current chunk size 1976 +- rest of chunk size 0 +- lowindex [ 33463 : 35439 ] highIndex +- executable 225 mapping /usr/lib64/libXext.so.6.4.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1285439 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 226 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - new mapping +=> found 17982 unwind entries for /usr/lib64/libX11.so.6.4.0 low pc 1c020 high pc ab0de +- current chunk size 17982 +- rest of chunk size 0 +- lowindex [ 35439 : 53421 ] highIndex +- executable 226 mapping /usr/lib64/libX11.so.6.4.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1303421 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 227 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - new mapping +=> found 11818 unwind entries for /usr/lib64/libfreetype.so.6.18.3 low pc e020 high pc 9a32c +- current chunk size 11818 +- rest of chunk size 0 +- lowindex [ 53421 : 65239 ] highIndex +- executable 227 mapping /usr/lib64/libfreetype.so.6.18.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1315239 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 228 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - new mapping +=> found 4411 unwind entries for /usr/lib64/libfontconfig.so.1.12.0 low pc 7020 high pc 337ee +- current chunk size 4411 +- rest of chunk size 0 +- lowindex [ 65239 : 69650 ] highIndex +- executable 228 mapping /usr/lib64/libfontconfig.so.1.12.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1319650 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 229 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - new mapping +=> found 3333 unwind entries for /usr/lib64/libpng16.so.16.37.0 low pc 5020 high pc 2c72a +- current chunk size 3333 +- rest of chunk size 0 +- lowindex [ 69650 : 72983 ] highIndex +- executable 229 mapping /usr/lib64/libpng16.so.16.37.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1322983 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 230 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - new mapping +=> found 20954 unwind entries for /usr/lib64/libcairo.so.2.11706.0 low pc 12020 high pc e763e +- current chunk size 20954 +- rest of chunk size 0 +- lowindex [ 72983 : 93937 ] highIndex +- executable 230 mapping /usr/lib64/libcairo.so.2.11706.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1343937 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 231 buildId 43cfd55f4e646c94967f0b517894518e91740626 exec /usr/lib64/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 789 unwind entries for /usr/lib64/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so low pc 4020 high pc 9418 +- current chunk size 789 +- rest of chunk size 0 +- lowindex [ 93937 : 94726 ] highIndex +- executable 231 mapping /usr/lib64/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1344726 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 232 buildId 787ec16b76d1d533d95a328b5f368521fbd6ad8c exec /usr/lib64/libgirepository-1.0.so.1.0.0 +-> caching - new mapping +=> found 2441 unwind entries for /usr/lib64/libgirepository-1.0.so.1.0.0 low pc 8020 high pc 19329 +- current chunk size 2441 +- rest of chunk size 0 +- lowindex [ 94726 : 97167 ] highIndex +- executable 232 mapping /usr/lib64/libgirepository-1.0.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1347167 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 233 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1347167 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 233 buildId 4110f1ce306e47f9c649ae4d860dd1547e2af3cb exec /usr/lib64/python3.10/site-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 5859 unwind entries for /usr/lib64/python3.10/site-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so low pc f020 high pc 3cedd +- current chunk size 5859 +- rest of chunk size 0 +- lowindex [ 97167 : 103026 ] highIndex +- executable 233 mapping /usr/lib64/python3.10/site-packages/gi/_gi.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1353026 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 234 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1353026 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 234 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - new mapping +=> found 172 unwind entries for /usr/lib64/libcairo-gobject.so.2.11706.0 low pc 4020 high pc 5116 +- current chunk size 172 +- rest of chunk size 0 +- lowindex [ 103026 : 103198 ] highIndex +- executable 234 mapping /usr/lib64/libcairo-gobject.so.2.11706.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1353198 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 235 buildId 3d80ad344e9abec06f4555f00ef272e78e3d9b3e exec /usr/lib64/python3.10/site-packages/gi/_gi_cairo.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 209 unwind entries for /usr/lib64/python3.10/site-packages/gi/_gi_cairo.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 38d8 +- current chunk size 209 +- rest of chunk size 0 +- lowindex [ 103198 : 103407 ] highIndex +- executable 235 mapping /usr/lib64/python3.10/site-packages/gi/_gi_cairo.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1353407 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 236 buildId 2b343c54d1bd384e1c1593a941a2739d2cc2b06a exec /usr/lib64/python3.10/site-packages/_capng.so +-> caching - new mapping +=> found 411 unwind entries for /usr/lib64/python3.10/site-packages/_capng.so low pc 3020 high pc 7db6 +- current chunk size 411 +- rest of chunk size 0 +- lowindex [ 103407 : 103818 ] highIndex +- executable 236 mapping /usr/lib64/python3.10/site-packages/_capng.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1353818 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 237 buildId 4006c90cb9b90a3e8fd272b7d5cd6608369b5129 exec /usr/lib64/python3.10/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 85 unwind entries for /usr/lib64/python3.10/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so low pc 1020 high pc 22dd +- current chunk size 85 +- rest of chunk size 0 +- lowindex [ 103818 : 103903 ] highIndex +- executable 237 mapping /usr/lib64/python3.10/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1353903 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 238 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1353903 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 238 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1353903 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 238 buildId 653f02422e5f2a79b6dd31e6b4c40626c0944b50 exec /usr/lib64/python3.10/lib-dynload/_sha512.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 161 unwind entries for /usr/lib64/python3.10/lib-dynload/_sha512.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 5ddc +- current chunk size 161 +- rest of chunk size 0 +- lowindex [ 103903 : 104064 ] highIndex +- executable 238 mapping /usr/lib64/python3.10/lib-dynload/_sha512.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1354064 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 239 buildId c25a962f063bdf79f91fcfc4e1295796c9fda9bb exec /usr/lib64/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 312 unwind entries for /usr/lib64/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so low pc 3020 high pc 67ec +- current chunk size 312 +- rest of chunk size 0 +- lowindex [ 104064 : 104376 ] highIndex +- executable 239 mapping /usr/lib64/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1354376 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 240 buildId 9324c493e3c452b561f673ad4f066be38d2ba715 exec /usr/lib64/python3.10/lib-dynload/binascii.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 289 unwind entries for /usr/lib64/python3.10/lib-dynload/binascii.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 5779 +- current chunk size 289 +- rest of chunk size 0 +- lowindex [ 104376 : 104665 ] highIndex +- executable 240 mapping /usr/lib64/python3.10/lib-dynload/binascii.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1354665 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 241 buildId 85f021b22321cd3ae9316623a402918b302352f9 exec /usr/lib64/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 1548 unwind entries for /usr/lib64/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so low pc 6020 high pc 13829 +- current chunk size 1548 +- rest of chunk size 0 +- lowindex [ 104665 : 106213 ] highIndex +- executable 241 mapping /usr/lib64/python3.10/lib-dynload/_ctypes.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1356213 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 242 buildId 673d6f1506a166cb588ac253a21a99c0d9f0388d exec /usr/lib64/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 269 unwind entries for /usr/lib64/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so low pc 3020 high pc 8f1d +- current chunk size 269 +- rest of chunk size 0 +- lowindex [ 106213 : 106482 ] highIndex +- executable 242 mapping /usr/lib64/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1356482 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 243 buildId a03028ddd726386f3f9a595dc494c655e8315970 exec /usr/lib64/python3.10/lib-dynload/_posixsubprocess.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 200 unwind entries for /usr/lib64/python3.10/lib-dynload/_posixsubprocess.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 42a1 +- current chunk size 200 +- rest of chunk size 0 +- lowindex [ 106482 : 106682 ] highIndex +- executable 243 mapping /usr/lib64/python3.10/lib-dynload/_posixsubprocess.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1356682 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 244 buildId 2197d8cda3101c6b073c923c557ae1614bdf159b exec /usr/lib64/python3.10/site-packages/_dbus_glib_bindings.so +-> caching - new mapping +=> found 226 unwind entries for /usr/lib64/python3.10/site-packages/_dbus_glib_bindings.so low pc 2020 high pc 3730 +- current chunk size 226 +- rest of chunk size 0 +- lowindex [ 106682 : 106908 ] highIndex +- executable 244 mapping /usr/lib64/python3.10/site-packages/_dbus_glib_bindings.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1356908 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 245 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1356908 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 245 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1356908 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 245 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1356908 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 245 buildId 6ebcddaccfdf181225e33f6f8c5988e47b94c8d4 exec /usr/lib64/python3.10/lib-dynload/_random.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 131 unwind entries for /usr/lib64/python3.10/lib-dynload/_random.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 33b5 +- current chunk size 131 +- rest of chunk size 0 +- lowindex [ 106908 : 107039 ] highIndex +- executable 245 mapping /usr/lib64/python3.10/lib-dynload/_random.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1357039 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 246 buildId 7bd6cc00ea7404c801ce15c998211451cea08ca0 exec /usr/lib64/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 152 unwind entries for /usr/lib64/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 3b79 +- current chunk size 152 +- rest of chunk size 0 +- lowindex [ 107039 : 107191 ] highIndex +- executable 246 mapping /usr/lib64/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1357191 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 247 buildId a18edcfaf2fa21015ec7f26e6beffcd103948031 exec /usr/lib64/python3.10/lib-dynload/zlib.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 386 unwind entries for /usr/lib64/python3.10/lib-dynload/zlib.cpython-310-x86_64-linux-gnu.so low pc 3020 high pc 66a3 +- current chunk size 386 +- rest of chunk size 0 +- lowindex [ 107191 : 107577 ] highIndex +- executable 247 mapping /usr/lib64/python3.10/lib-dynload/zlib.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1357577 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 248 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1357577 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 248 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1357577 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 248 buildId 3b3f464951d30244394e38593687e10ac99d0eff exec /usr/lib64/python3.10/lib-dynload/array.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 793 unwind entries for /usr/lib64/python3.10/lib-dynload/array.cpython-310-x86_64-linux-gnu.so low pc 4020 high pc 9f53 +- current chunk size 793 +- rest of chunk size 0 +- lowindex [ 107577 : 108370 ] highIndex +- executable 248 mapping /usr/lib64/python3.10/lib-dynload/array.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1358370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 249 buildId 68f1ecf763a6610e9720325e713baed89ff05559 exec /usr/lib64/python3.10/lib-dynload/select.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 304 unwind entries for /usr/lib64/python3.10/lib-dynload/select.cpython-310-x86_64-linux-gnu.so low pc 3020 high pc 5680 +- current chunk size 304 +- rest of chunk size 0 +- lowindex [ 108370 : 108674 ] highIndex +- executable 249 mapping /usr/lib64/python3.10/lib-dynload/select.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1358674 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 250 buildId 3a323f020a937e833dec845fd1b7678d4cf63820 exec /usr/lib64/python3.10/lib-dynload/_socket.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 858 unwind entries for /usr/lib64/python3.10/lib-dynload/_socket.cpython-310-x86_64-linux-gnu.so low pc 4020 high pc d2ba +- current chunk size 858 +- rest of chunk size 0 +- lowindex [ 108674 : 109532 ] highIndex +- executable 250 mapping /usr/lib64/python3.10/lib-dynload/_socket.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1359532 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 251 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1359532 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 251 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1359532 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 251 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1359532 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 251 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1359532 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 251 buildId b000b1b67599f328e69431d4ac2d896996f4d743 exec /usr/lib64/libpython3.10.so.1.0 +-> caching - new mapping +=> found 48774 unwind entries for /usr/lib64/libpython3.10.so.1.0 low pc 59020 high pc 21b13e +- current chunk size 48774 +- rest of chunk size 0 +- lowindex [ 109532 : 158306 ] highIndex +- executable 251 mapping /usr/lib64/libpython3.10.so.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1408306 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 252 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - new mapping +=> found 74 unwind entries for /usr/lib64/libxcb-shm.so.0.0.0 low pc 1020 high pc 1cf7 +- current chunk size 74 +- rest of chunk size 0 +- lowindex [ 158306 : 158380 ] highIndex +- executable 252 mapping /usr/lib64/libxcb-shm.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1408380 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 253 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1408380 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 253 buildId 653f271cf988615aec3c2a952b855eaf0ac97396 exec /usr/lib64/python3.10/lib-dynload/syslog.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 43 unwind entries for /usr/lib64/python3.10/lib-dynload/syslog.cpython-310-x86_64-linux-gnu.so low pc 1020 high pc 1c38 +- current chunk size 43 +- rest of chunk size 0 +- lowindex [ 158380 : 158423 ] highIndex +- executable 253 mapping /usr/lib64/python3.10/lib-dynload/syslog.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1408423 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 254 buildId 41710bf7b89c67d0df727285e5275c7880b51776 exec /usr/lib64/python3.10/lib-dynload/pyexpat.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 873 unwind entries for /usr/lib64/python3.10/lib-dynload/pyexpat.cpython-310-x86_64-linux-gnu.so low pc 4020 high pc 9567 +- current chunk size 873 +- rest of chunk size 0 +- lowindex [ 158423 : 159296 ] highIndex +- executable 254 mapping /usr/lib64/python3.10/lib-dynload/pyexpat.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1409296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 255 buildId 05d45f57bd89c39918e9a04ddd751343f788b9ff exec /usr/lib64/python3.10/site-packages/_dbus_bindings.so +-> caching - new mapping +=> found 1527 unwind entries for /usr/lib64/python3.10/site-packages/_dbus_bindings.so low pc 7020 high pc 15335 +- current chunk size 1527 +- rest of chunk size 0 +- lowindex [ 159296 : 160823 ] highIndex +- executable 255 mapping /usr/lib64/python3.10/site-packages/_dbus_bindings.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1410823 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1410823 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 256 buildId 595a051e9f16aa291e4e7040e69984bb3f141cf7 exec /usr/lib64/python3.10/lib-dynload/_bisect.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 136 unwind entries for /usr/lib64/python3.10/lib-dynload/_bisect.cpython-310-x86_64-linux-gnu.so low pc 1020 high pc 20cc +- current chunk size 136 +- rest of chunk size 0 +- lowindex [ 160823 : 160959 ] highIndex +- executable 256 mapping /usr/lib64/python3.10/lib-dynload/_bisect.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1410959 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 257 buildId 07d800ee35c02ad748b414bb52e20fa6c89f71a2 exec /usr/lib64/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 565 unwind entries for /usr/lib64/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so low pc 3020 high pc 92b4 +- current chunk size 565 +- rest of chunk size 0 +- lowindex [ 160959 : 161524 ] highIndex +- executable 257 mapping /usr/lib64/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1411524 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 258 buildId 1d9735c7efa40331dd6eb81055a03135188ce39c exec /usr/lib64/python3.10/lib-dynload/_struct.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 718 unwind entries for /usr/lib64/python3.10/lib-dynload/_struct.cpython-310-x86_64-linux-gnu.so low pc 3020 high pc 741e +- current chunk size 718 +- rest of chunk size 0 +- lowindex [ 161524 : 162242 ] highIndex +- executable 258 mapping /usr/lib64/python3.10/lib-dynload/_struct.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1412242 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 259 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1412242 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 259 buildId baf8eb71457163bc98bcd921e6b8c0cdd49a5407 exec /usr/lib64/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 23 unwind entries for /usr/lib64/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so low pc 1020 high pc 1440 +- current chunk size 23 +- rest of chunk size 0 +- lowindex [ 162242 : 162265 ] highIndex +- executable 259 mapping /usr/lib64/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1412265 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 260 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1412265 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 260 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1412265 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1412265 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.748065241Z caller=cpu.go:495 msg="adding unwind tables" pid=1185 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.748111922Z caller=cpu.go:495 msg="adding unwind tables" pid=1186 +level=info name=parca-agent ts=2023-01-25T11:15:48.748764567Z caller=cpu.go:495 msg="adding unwind tables" pid=1190 +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1412265 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564f3f853000, StartAddr: 0x564f3f88e000, EndAddr: 0x564f3fae5000, Executable:/usr/sbin/NetworkManager} +[info] adding memory mappings in for executable with ID 260 buildId fe013ae15dd7938cf081286925db235af8478ccf exec /usr/sbin/NetworkManager +-> caching - new mapping +=> found 67316 unwind entries for /usr/sbin/NetworkManager low pc 3b020 high pc 291150 +- current chunk size 67316 +- rest of chunk size 0 +- lowindex [ 162265 : 229581 ] highIndex +- executable 260 mapping /usr/sbin/NetworkManager shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1479581 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 261 buildId acc6b56bc841e56e589ab1e8d8ac707a0a37f91e exec /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-wifi.so +-> caching - new mapping +=> found 5177 unwind entries for /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-wifi.so low pc d020 high pc 39d9d +- current chunk size 5177 +- rest of chunk size 0 +- lowindex [ 229581 : 234758 ] highIndex +- executable 261 mapping /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-wifi.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1484758 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 262 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1484758 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 262 buildId 010af6973aaad1eeae9a500bbab83738aa22fbbe exec /usr/lib64/libjansson.so.4.13.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1484758 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 262 buildId f69a4077563594fe9569904e2807dfaa06928738 exec /usr/lib64/libmm-glib.so.0.8.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1484758 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 262 buildId f4d004e46e873cf768037ce59e7dbd22e982acd0 exec /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-wwan.so +-> caching - new mapping +=> found 1530 unwind entries for /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-wwan.so low pc 6020 high pc 1325b +- current chunk size 1530 +- rest of chunk size 0 +- lowindex [ 234758 : 236288 ] highIndex +- executable 262 mapping /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-wwan.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1486288 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 263 buildId b26e92b821c3c007137b2059a190d369139ae74c exec /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-team.so +-> caching - new mapping +=> found 650 unwind entries for /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-team.so low pc 3020 high pc 7fad +- current chunk size 650 +- rest of chunk size 0 +- lowindex [ 236288 : 236938 ] highIndex +- executable 263 mapping /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-team.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1486938 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 264 buildId 4540a00e8c355bfe5edcb32b2bad20368b4e4a7a exec /usr/lib64/libbluetooth.so.3.19.8 +-> caching - new mapping +=> found 1753 unwind entries for /usr/lib64/libbluetooth.so.3.19.8 low pc 7020 high pc 17e2e +- current chunk size 1753 +- rest of chunk size 0 +- lowindex [ 236938 : 238691 ] highIndex +- executable 264 mapping /usr/lib64/libbluetooth.so.3.19.8 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1488691 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 265 buildId d954704f1f3fd67ffa332e686c4a65de160db296 exec /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-wwan.so +-> caching - new mapping +=> found 459 unwind entries for /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-wwan.so low pc 3020 high pc 57cd +- current chunk size 459 +- rest of chunk size 0 +- lowindex [ 238691 : 239150 ] highIndex +- executable 265 mapping /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-wwan.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1489150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 266 buildId cc34f177cdf3e02e0f5428454cf4d1fcd48f7db5 exec /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-adsl.so +-> caching - new mapping +=> found 490 unwind entries for /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-adsl.so low pc 3020 high pc 676d +- current chunk size 490 +- rest of chunk size 0 +- lowindex [ 239150 : 239640 ] highIndex +- executable 266 mapping /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-adsl.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1489640 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 267 buildId 35fbdd825f97356710e48f8ac25593a9bb5fd4f5 exec /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-bluetooth.so +-> caching - new mapping +=> found 1482 unwind entries for /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-bluetooth.so low pc 5020 high pc 1276d +- current chunk size 1482 +- rest of chunk size 0 +- lowindex [ 239640 : 241122 ] highIndex +- executable 267 mapping /usr/lib64/NetworkManager/1.38.6-1.fc36/libnm-device-plugin-bluetooth.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1491122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 268 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1491122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 268 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1491122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 268 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1491122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 268 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - new mapping +=> found 2025 unwind entries for /usr/lib64/libsasl2.so.3.0.0 low pc 5020 high pc 1754d +- current chunk size 2025 +- rest of chunk size 0 +- lowindex [ 241122 : 243147 ] highIndex +- executable 268 mapping /usr/lib64/libsasl2.so.3.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 5 , total entries: 1493147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 269 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - new mapping +=> found 7248 unwind entries for /usr/lib64/libevent-2.1.so.7.0.1 low pc e020 high pc 419c3 +- current chunk size 6853 +- rest of chunk size 395 +- lowindex [ 243147 : 250000 ] highIndex +- executable 269 mapping /usr/lib64/libevent-2.1.so.7.0.1 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 395 +- rest of chunk size 0 +- lowindex [ 0 : 395 ] highIndex +- executable 269 mapping /usr/lib64/libevent-2.1.so.7.0.1 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1500395 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 270 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - new mapping +=> found 6528 unwind entries for /usr/lib64/libldap.so.2.0.200 low pc 11020 high pc 4e837 +- current chunk size 6528 +- rest of chunk size 0 +- lowindex [ 395 : 6923 ] highIndex +- executable 270 mapping /usr/lib64/libldap.so.2.0.200 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1506923 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 271 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1506923 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 271 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1506923 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 271 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - new mapping +=> found 1019 unwind entries for /usr/lib64/liblber.so.2.0.200 low pc 4020 high pc be41 +- current chunk size 1019 +- rest of chunk size 0 +- lowindex [ 6923 : 7942 ] highIndex +- executable 271 mapping /usr/lib64/liblber.so.2.0.200 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1507942 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 272 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1507942 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 272 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1507942 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 272 buildId 0a88dc8884357041dcd174412f2cc14ce0071289 exec /usr/lib64/libssh.so.4.8.7 +-> caching - new mapping +=> found 6644 unwind entries for /usr/lib64/libssh.so.4.8.7 low pc e020 high pc 511c8 +- current chunk size 6644 +- rest of chunk size 0 +- lowindex [ 7942 : 14586 ] highIndex +- executable 272 mapping /usr/lib64/libssh.so.4.8.7 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1514586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 273 buildId c193404811a60b405cfd506cbbd74a296cf04b1b exec /usr/lib64/libnghttp2.so.14.24.1 +-> caching - new mapping +=> found 1730 unwind entries for /usr/lib64/libnghttp2.so.14.24.1 low pc 5020 high pc 19aa3 +- current chunk size 1730 +- rest of chunk size 0 +- lowindex [ 14586 : 16316 ] highIndex +- executable 273 mapping /usr/lib64/libnghttp2.so.14.24.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 345872e1fd9fc345eccc8344049d028164796f36 exec /usr/lib64/libhogweed.so.6.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 15554c81e3ea5792d76ebfe663a5354944e3a0ab exec /usr/lib64/libnettle.so.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 4407f7333e5bcb96a54db0c939dd19a770c73096 exec /usr/lib64/libtasn1.so.6.6.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1516316 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 274 buildId 1511f3df5a8d1ea63657c4b50cc7bb5de05d6edc exec /usr/lib64/libcurl.so.4.7.0 +-> caching - new mapping +=> found 8307 unwind entries for /usr/lib64/libcurl.so.4.7.0 low pc f020 high pc 85e9e +- current chunk size 8307 +- rest of chunk size 0 +- lowindex [ 16316 : 24623 ] highIndex +- executable 274 mapping /usr/lib64/libcurl.so.4.7.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1524623 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 275 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1524623 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 275 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1524623 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 275 buildId 8e40305f04041f14ebbb123182f15f67c4cec0af exec /usr/lib64/libgnutls.so.30.34.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1524623 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 275 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1524623 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 275 buildId 6c0cf7ed0ae68dfd766f9b51f0fafec148f26f48 exec /usr/lib64/libpsl.so.5.3.3 +-> caching - new mapping +=> found 191 unwind entries for /usr/lib64/libpsl.so.5.3.3 low pc 2020 high pc 3f92 +- current chunk size 191 +- rest of chunk size 0 +- lowindex [ 24623 : 24814 ] highIndex +- executable 275 mapping /usr/lib64/libpsl.so.5.3.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1524814 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 276 buildId 517d34050cc8608ccda2fc030c3b3c98f0678399 exec /usr/lib64/libndp.so.0.2.0 +-> caching - new mapping +=> found 301 unwind entries for /usr/lib64/libndp.so.0.2.0 low pc 2020 high pc 40e8 +- current chunk size 301 +- rest of chunk size 0 +- lowindex [ 24814 : 25115 ] highIndex +- executable 276 mapping /usr/lib64/libndp.so.0.2.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1525115 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 277 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1525115 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 277 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1525115 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 277 buildId 3e0a27f81f0ce295b66274c069aa60d2ff8dd669 exec /usr/lib64/libteamdctl.so.0.1.5 +-> caching - new mapping +=> found 289 unwind entries for /usr/lib64/libteamdctl.so.0.1.5 low pc 2020 high pc 42d1 +- current chunk size 289 +- rest of chunk size 0 +- lowindex [ 25115 : 25404 ] highIndex +- executable 277 mapping /usr/lib64/libteamdctl.so.0.1.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1525404 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 278 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1525404 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1525404 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.973315231Z caller=cpu.go:495 msg="adding unwind tables" pid=1217 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.97338725Z caller=cpu.go:495 msg="adding unwind tables" pid=1218 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:48.973434943Z caller=cpu.go:495 msg="adding unwind tables" pid=1219 +level=info name=parca-agent ts=2023-01-25T11:15:48.973884037Z caller=cpu.go:495 msg="adding unwind tables" pid=1222 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1525404 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a317736000, StartAddr: 0x55a317740000, EndAddr: 0x55a317791000, Executable:/usr/sbin/cupsd} +[info] adding memory mappings in for executable with ID 278 buildId e6d5be503fcad12775720941347193db8708a81f exec /usr/sbin/cupsd +-> caching - new mapping +=> found 4910 unwind entries for /usr/sbin/cupsd low pc a020 high pc 5a57f +- current chunk size 4910 +- rest of chunk size 0 +- lowindex [ 25404 : 30314 ] highIndex +- executable 278 mapping /usr/sbin/cupsd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 345872e1fd9fc345eccc8344049d028164796f36 exec /usr/lib64/libhogweed.so.6.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 15554c81e3ea5792d76ebfe663a5354944e3a0ab exec /usr/lib64/libnettle.so.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 8e40305f04041f14ebbb123182f15f67c4cec0af exec /usr/lib64/libgnutls.so.30.34.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 4407f7333e5bcb96a54db0c939dd19a770c73096 exec /usr/lib64/libtasn1.so.6.6.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1530314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 279 buildId 8e6eecca9052c33732bba209238d48154576619a exec /usr/lib64/libcups.so.2 +-> caching - new mapping +=> found 7651 unwind entries for /usr/lib64/libcups.so.2 low pc 1e020 high pc 76c7a +- current chunk size 7651 +- rest of chunk size 0 +- lowindex [ 30314 : 37965 ] highIndex +- executable 279 mapping /usr/lib64/libcups.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1537965 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 280 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1537965 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 280 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1537965 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 280 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1537965 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 280 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1537965 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 280 buildId 2f8fd2316bdf9e504a0362be708e745e85e89050 exec /usr/lib64/libavahi-client.so.3.2.9 +-> caching - new mapping +=> found 1140 unwind entries for /usr/lib64/libavahi-client.so.3.2.9 low pc 4020 high pc d611 +- current chunk size 1140 +- rest of chunk size 0 +- lowindex [ 37965 : 39105 ] highIndex +- executable 280 mapping /usr/lib64/libavahi-client.so.3.2.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1539105 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 281 buildId 73dc9fc24e164a6a81b597f4b2b6350837500dc5 exec /usr/lib64/libavahi-common.so.3.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1539105 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 281 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1539105 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 281 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1539105 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1539105 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.984707149Z caller=cpu.go:495 msg="adding unwind tables" pid=1232 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1539105 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55acd7351000, StartAddr: 0x55acd735d000, EndAddr: 0x55acd73ea000, Executable:/usr/sbin/sshd} +[info] adding memory mappings in for executable with ID 281 buildId 95821265f13c432ab22fbfef77d6d7a9b1f6a754 exec /usr/sbin/sshd +-> caching - new mapping +=> found 18556 unwind entries for /usr/sbin/sshd low pc c020 high pc 982d5 +- current chunk size 18556 +- rest of chunk size 0 +- lowindex [ 39105 : 57661 ] highIndex +- executable 281 mapping /usr/sbin/sshd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 282 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:48.997230027Z caller=cpu.go:495 msg="adding unwind tables" pid=1237 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1557661 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ae607b3000, StartAddr: 0x55ae607b8000, EndAddr: 0x55ae607cc000, Executable:/usr/sbin/gssproxy} +[info] adding memory mappings in for executable with ID 282 buildId c5e3a08f9a22403758a7efd9c2577f670e59aba9 exec /usr/sbin/gssproxy +-> caching - new mapping +=> found 1492 unwind entries for /usr/sbin/gssproxy low pc 5020 high pc 18744 +- current chunk size 1492 +- rest of chunk size 0 +- lowindex [ 57661 : 59153 ] highIndex +- executable 282 mapping /usr/sbin/gssproxy shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1559153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 283 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1559153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 283 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1559153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 283 buildId b987d637ee8a08240f6b49172d02f27da872c207 exec /usr/lib64/libev.so.4.0.0 +-> caching - new mapping +=> found 1033 unwind entries for /usr/lib64/libev.so.4.0.0 low pc 3020 high pc bdb2 +- current chunk size 1033 +- rest of chunk size 0 +- lowindex [ 59153 : 60186 ] highIndex +- executable 283 mapping /usr/lib64/libev.so.4.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1560186 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 284 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1560186 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 284 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1560186 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 284 buildId 806afffe511389fcfe6e66ea84b08fc77960f7db exec /usr/lib64/libbasicobjects.so.0.1.0 +-> caching - new mapping +=> found 53 unwind entries for /usr/lib64/libbasicobjects.so.0.1.0 low pc 1020 high pc 1478 +- current chunk size 53 +- rest of chunk size 0 +- lowindex [ 60186 : 60239 ] highIndex +- executable 284 mapping /usr/lib64/libbasicobjects.so.0.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1560239 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 285 buildId c99a9604c28c1a2307b08862cdb0ae52021a8514 exec /usr/lib64/libpath_utils.so.1.0.1 +-> caching - new mapping +=> found 179 unwind entries for /usr/lib64/libpath_utils.so.1.0.1 low pc 1020 high pc 24c5 +- current chunk size 179 +- rest of chunk size 0 +- lowindex [ 60239 : 60418 ] highIndex +- executable 285 mapping /usr/lib64/libpath_utils.so.1.0.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1560418 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 286 buildId eb5e431a003cd2c54e0ed98c8d68296696cbb10d exec /usr/lib64/libcollection.so.4.1.1 +-> caching - new mapping +=> found 1452 unwind entries for /usr/lib64/libcollection.so.4.1.1 low pc 3020 high pc 94e0 +- current chunk size 1452 +- rest of chunk size 0 +- lowindex [ 60418 : 61870 ] highIndex +- executable 286 mapping /usr/lib64/libcollection.so.4.1.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1561870 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 287 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1561870 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 287 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1561870 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 287 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1561870 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 287 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1561870 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 287 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1561870 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 287 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1561870 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 287 buildId 518f3c36c8edc087aaef3825b96a725ca76baa61 exec /usr/lib64/libgssrpc.so.4.2 +-> caching - new mapping +=> found 2490 unwind entries for /usr/lib64/libgssrpc.so.4.2 low pc 6020 high pc 1800f +- current chunk size 2490 +- rest of chunk size 0 +- lowindex [ 61870 : 64360 ] highIndex +- executable 287 mapping /usr/lib64/libgssrpc.so.4.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1564360 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 288 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1564360 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 288 buildId 2503dcb0d03d793722f386582f4b12672d230278 exec /usr/lib64/libref_array.so.1.2.1 +-> caching - new mapping +=> found 170 unwind entries for /usr/lib64/libref_array.so.1.2.1 low pc 1020 high pc 1b2a +- current chunk size 170 +- rest of chunk size 0 +- lowindex [ 64360 : 64530 ] highIndex +- executable 288 mapping /usr/lib64/libref_array.so.1.2.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1564530 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 289 buildId 37ab83cc31321e1fd053c21ebdfe046f5d586ac1 exec /usr/lib64/libini_config.so.5.2.1 +-> caching - new mapping +=> found 2112 unwind entries for /usr/lib64/libini_config.so.5.2.1 low pc 6020 high pc 15e35 +- current chunk size 2112 +- rest of chunk size 0 +- lowindex [ 64530 : 66642 ] highIndex +- executable 289 mapping /usr/lib64/libini_config.so.5.2.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1566642 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 290 buildId 5c76c430ea3d65f0bc42d8081bb58711993386d0 exec /usr/lib64/libverto.so.1.0.0 +-> caching - new mapping +=> found 287 unwind entries for /usr/lib64/libverto.so.1.0.0 low pc 2020 high pc 48cc +- current chunk size 287 +- rest of chunk size 0 +- lowindex [ 66642 : 66929 ] highIndex +- executable 290 mapping /usr/lib64/libverto.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1566929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 291 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1566929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 291 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1566929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 291 buildId c3f24c7ba050a70c1d297dfcf1cbbd82f1124643 exec /usr/lib64/libpopt.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1566929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 291 buildId 09ef2b031dd68eedb6559359a5af3d568f47c490 exec /usr/lib64/libverto-libev.so.1.0.0 +-> caching - new mapping +=> found 81 unwind entries for /usr/lib64/libverto-libev.so.1.0.0 low pc 1020 high pc 1965 +- current chunk size 81 +- rest of chunk size 0 +- lowindex [ 66929 : 67010 ] highIndex +- executable 291 mapping /usr/lib64/libverto-libev.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1567010 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 292 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1567010 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1567010 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.007772187Z caller=cpu.go:495 msg="adding unwind tables" pid=1246 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1567010 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600fed91000, StartAddr: 0x5600fee57000, EndAddr: 0x5600ff3f9000, Executable:/usr/bin/postgres} +[info] adding memory mappings in for executable with ID 292 buildId fc8e3f5bdf24747246833b88be016056e1c742c4 exec /usr/bin/postgres +-> caching - new mapping +=> found 135877 unwind entries for /usr/bin/postgres low pc c6020 high pc 6677d2 +- current chunk size 135877 +- rest of chunk size 0 +- lowindex [ 67010 : 202887 ] highIndex +- executable 292 mapping /usr/bin/postgres shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:49.071316204Z caller=cpu.go:495 msg="adding unwind tables" pid=1249 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:49.07136373Z caller=cpu.go:495 msg="adding unwind tables" pid=1250 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:49.071404473Z caller=cpu.go:495 msg="adding unwind tables" pid=1262 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:49.071445557Z caller=cpu.go:495 msg="adding unwind tables" pid=1263 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:49.071487024Z caller=cpu.go:495 msg="adding unwind tables" pid=1264 +level=info name=parca-agent ts=2023-01-25T11:15:49.073413107Z caller=cpu.go:495 msg="adding unwind tables" pid=1269 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600fed91000, StartAddr: 0x5600fee57000, EndAddr: 0x5600ff3f9000, Executable:/usr/bin/postgres} +[info] adding memory mappings in for executable with ID 293 buildId fc8e3f5bdf24747246833b88be016056e1c742c4 exec /usr/bin/postgres +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.078702459Z caller=cpu.go:495 msg="adding unwind tables" pid=1286 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600fed91000, StartAddr: 0x5600fee57000, EndAddr: 0x5600ff3f9000, Executable:/usr/bin/postgres} +[info] adding memory mappings in for executable with ID 293 buildId fc8e3f5bdf24747246833b88be016056e1c742c4 exec /usr/bin/postgres +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.08416112Z caller=cpu.go:495 msg="adding unwind tables" pid=1287 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600fed91000, StartAddr: 0x5600fee57000, EndAddr: 0x5600ff3f9000, Executable:/usr/bin/postgres} +[info] adding memory mappings in for executable with ID 293 buildId fc8e3f5bdf24747246833b88be016056e1c742c4 exec /usr/bin/postgres +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.091535363Z caller=cpu.go:495 msg="adding unwind tables" pid=1288 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600fed91000, StartAddr: 0x5600fee57000, EndAddr: 0x5600ff3f9000, Executable:/usr/bin/postgres} +[info] adding memory mappings in for executable with ID 293 buildId fc8e3f5bdf24747246833b88be016056e1c742c4 exec /usr/bin/postgres +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.096729499Z caller=cpu.go:495 msg="adding unwind tables" pid=1289 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600fed91000, StartAddr: 0x5600fee57000, EndAddr: 0x5600ff3f9000, Executable:/usr/bin/postgres} +[info] adding memory mappings in for executable with ID 293 buildId fc8e3f5bdf24747246833b88be016056e1c742c4 exec /usr/bin/postgres +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.10176849Z caller=cpu.go:495 msg="adding unwind tables" pid=1290 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600fed91000, StartAddr: 0x5600fee57000, EndAddr: 0x5600ff3f9000, Executable:/usr/bin/postgres} +[info] adding memory mappings in for executable with ID 293 buildId fc8e3f5bdf24747246833b88be016056e1c742c4 exec /usr/bin/postgres +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.106577692Z caller=cpu.go:495 msg="adding unwind tables" pid=1291 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600fed91000, StartAddr: 0x5600fee57000, EndAddr: 0x5600ff3f9000, Executable:/usr/bin/postgres} +[info] adding memory mappings in for executable with ID 293 buildId fc8e3f5bdf24747246833b88be016056e1c742c4 exec /usr/bin/postgres +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 293 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.111316808Z caller=cpu.go:495 msg="adding unwind tables" pid=1310 +======================================================================================== +setUnwindTable called (total shards: 6 , total entries: 1702887 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a74d057000, StartAddr: 0x55a74d070000, EndAddr: 0x55a74d25e000, Executable:/usr/sbin/wpa_supplicant} +[info] adding memory mappings in for executable with ID 293 buildId 95b918370beadd2c987402d77864ff4aa3e7a0f4 exec /usr/sbin/wpa_supplicant +-> caching - new mapping +=> found 47797 unwind entries for /usr/sbin/wpa_supplicant low pc 19020 high pc 2064db +- current chunk size 47113 +- rest of chunk size 684 +- lowindex [ 202887 : 250000 ] highIndex +- executable 293 mapping /usr/sbin/wpa_supplicant shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 684 +- rest of chunk size 0 +- lowindex [ 0 : 684 ] highIndex +- executable 293 mapping /usr/sbin/wpa_supplicant shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1750684 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 294 buildId bb27ef667e3d1b68b5402b6fd4d5d2816d95bfc3 exec /usr/lib64/ossl-modules/legacy.so +-> caching - new mapping +=> found 1624 unwind entries for /usr/lib64/ossl-modules/legacy.so low pc 7020 high pc 1289b +- current chunk size 1624 +- rest of chunk size 0 +- lowindex [ 684 : 2308 ] highIndex +- executable 294 mapping /usr/lib64/ossl-modules/legacy.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId b59053e3f19465524fa7a6929f7bd1c741a1196c exec /usr/lib64/libnl-route-3.so.200.26.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 295 buildId 934d8c39fdad4e2d324d7052bccd9b86aaa10f91 exec /usr/lib64/libnl-genl-3.so.200.26.0 +-> caching - new mapping +=> found 368 unwind entries for /usr/lib64/libnl-genl-3.so.200.26.0 low pc 3020 high pc 5524 +- current chunk size 368 +- rest of chunk size 0 +- lowindex [ 2308 : 2676 ] highIndex +- executable 295 mapping /usr/lib64/libnl-genl-3.so.200.26.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752676 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 296 buildId edf11ae0d51d87f93925e8825edaff9692fad170 exec /usr/lib64/libnl-3.so.200.26.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752676 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 296 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752676 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752676 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.159735944Z caller=cpu.go:495 msg="adding unwind tables" pid=1476 +======================================================================================== +setUnwindTable called (total shards: 7 , total entries: 1752676 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558e7caab000, StartAddr: 0x558e7e5b1000, EndAddr: 0x558e820a1000, Executable:/opt/redpanda/libexec/redpanda} +[info] adding memory mappings in for executable with ID 296 buildId c3ed42bd2de718719df5f7bd5fa871e7086cee27 exec /opt/redpanda/libexec/redpanda +-> caching - new mapping +=> found 539848 unwind entries for /opt/redpanda/libexec/redpanda low pc 1b06640 high pc 55f3ae0 +- current chunk size 247324 +- rest of chunk size 292524 +- lowindex [ 2676 : 250000 ] highIndex +- executable 296 mapping /opt/redpanda/libexec/redpanda shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 250000 +- rest of chunk size 42524 +- lowindex [ 0 : 250000 ] highIndex +- executable 296 mapping /opt/redpanda/libexec/redpanda shard 1 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 42524 +- rest of chunk size 0 +- lowindex [ 0 : 42524 ] highIndex +- executable 296 mapping /opt/redpanda/libexec/redpanda shard 2 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2292524 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 297 buildId 6e7b96dfb83f0bdcb6a410469b82f86415e5ada3 exec /opt/redpanda/lib/libc.so.6 +-> caching - new mapping +=> found 24653 unwind entries for /opt/redpanda/lib/libc.so.6 low pc 2c000 high pc 19f11c +- current chunk size 24653 +- rest of chunk size 0 +- lowindex [ 42524 : 67177 ] highIndex +- executable 297 mapping /opt/redpanda/lib/libc.so.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2317177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 298 buildId a855b56e392a8e38bd8861ef5bc99b82c5bcc7e2 exec /opt/redpanda/lib/libpciaccess.so.0 +-> caching - new mapping +=> found 687 unwind entries for /opt/redpanda/lib/libpciaccess.so.0 low pc 2020 high pc 8d85 +- current chunk size 687 +- rest of chunk size 0 +- lowindex [ 67177 : 67864 ] highIndex +- executable 298 mapping /opt/redpanda/lib/libpciaccess.so.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2317864 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 299 buildId 156a488dd4cfdaf68cdabe421beac302c99a8657 exec /opt/redpanda/lib/libgmp.so.10 +-> caching - new mapping +=> found 4910 unwind entries for /opt/redpanda/lib/libgmp.so.10 low pc b020 high pc 6ccbe +- current chunk size 4910 +- rest of chunk size 0 +- lowindex [ 67864 : 72774 ] highIndex +- executable 299 mapping /opt/redpanda/lib/libgmp.so.10 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2322774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 300 buildId 69c948b81e79f4c6f55a8808a4c69d3a8cbc7867 exec /opt/redpanda/lib/libhogweed.so.6 +-> caching - new mapping +=> found 2919 unwind entries for /opt/redpanda/lib/libhogweed.so.6 low pc 31940 high pc 451b0 +- current chunk size 2919 +- rest of chunk size 0 +- lowindex [ 72774 : 75693 ] highIndex +- executable 300 mapping /opt/redpanda/lib/libhogweed.so.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2325693 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 301 buildId 092ea904c6c961e89decea597a1afe7c5d002fb4 exec /opt/redpanda/lib/libnettle.so.8 +-> caching - new mapping +=> found 2875 unwind entries for /opt/redpanda/lib/libnettle.so.8 low pc 21df0 high pc 5534f +- current chunk size 2875 +- rest of chunk size 0 +- lowindex [ 75693 : 78568 ] highIndex +- executable 301 mapping /opt/redpanda/lib/libnettle.so.8 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2328568 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 302 buildId d14e4e492003556b25e1a4572b3c14bbecc0f48e exec /opt/redpanda/lib/libgcc_s.so.1 +-> caching - new mapping +=> found 1244 unwind entries for /opt/redpanda/lib/libgcc_s.so.1 low pc 3020 high pc 19c05 +- current chunk size 1244 +- rest of chunk size 0 +- lowindex [ 78568 : 79812 ] highIndex +- executable 302 mapping /opt/redpanda/lib/libgcc_s.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2329812 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 303 buildId 2c5afe11116cc85e21a8d87e6f52a481efefa1d1 exec /opt/redpanda/lib/libm.so.6 +-> caching - new mapping +=> found 5431 unwind entries for /opt/redpanda/lib/libm.so.6 low pc 10020 high pc 81c28 +- current chunk size 5431 +- rest of chunk size 0 +- lowindex [ 79812 : 85243 ] highIndex +- executable 303 mapping /opt/redpanda/lib/libm.so.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2335243 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 304 buildId a4656751fea1df4c exec /opt/redpanda/lib/libc++abi.so.1 +-> caching - new mapping +=> found 4648 unwind entries for /opt/redpanda/lib/libc++abi.so.1 low pc e730 high pc 2df40 +- current chunk size 4648 +- rest of chunk size 0 +- lowindex [ 85243 : 89891 ] highIndex +- executable 304 mapping /opt/redpanda/lib/libc++abi.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2339891 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 305 buildId df5c11c13f7890c9 exec /opt/redpanda/lib/libc++.so.1 +-> caching - new mapping +=> found 14724 unwind entries for /opt/redpanda/lib/libc++.so.1 low pc 3db80 high pc ad48a +- current chunk size 14724 +- rest of chunk size 0 +- lowindex [ 89891 : 104615 ] highIndex +- executable 305 mapping /opt/redpanda/lib/libc++.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2354615 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 306 buildId a80317ce5aab6534decb6b39a21829dda370c518 exec /opt/redpanda/lib/libgnutls.so.30 +-> caching - new mapping +=> found 29330 unwind entries for /opt/redpanda/lib/libgnutls.so.30 low pc 36020 high pc 27dec8 +- current chunk size 29330 +- rest of chunk size 0 +- lowindex [ 104615 : 133945 ] highIndex +- executable 306 mapping /opt/redpanda/lib/libgnutls.so.30 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2383945 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 307 buildId 03fbef95faa14a75968e16de23ca116760bd7402 exec /opt/redpanda/lib/libboost_filesystem.so.1.75.0 +-> caching - new mapping +=> found 1550 unwind entries for /opt/redpanda/lib/libboost_filesystem.so.1.75.0 low pc 7020 high pc 1d779 +- current chunk size 1550 +- rest of chunk size 0 +- lowindex [ 133945 : 135495 ] highIndex +- executable 307 mapping /opt/redpanda/lib/libboost_filesystem.so.1.75.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2385495 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 308 buildId 281d008737f7cc9939b90e542842bdbf13b4c370 exec /opt/redpanda/lib/libhwloc.so.15 +-> caching - new mapping +=> found 4236 unwind entries for /opt/redpanda/lib/libhwloc.so.15 low pc 6020 high pc 5c74d +- current chunk size 4236 +- rest of chunk size 0 +- lowindex [ 135495 : 139731 ] highIndex +- executable 308 mapping /opt/redpanda/lib/libhwloc.so.15 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2389731 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 309 buildId d9528865dd86b571a64a10c83d7199590e0a9b0c exec /opt/redpanda/lib/libcryptopp.so.8.3 +-> caching - new mapping +=> found 42923 unwind entries for /opt/redpanda/lib/libcryptopp.so.8.3 low pc 282d60 high pc 599ec2 +- current chunk size 42923 +- rest of chunk size 0 +- lowindex [ 139731 : 182654 ] highIndex +- executable 309 mapping /opt/redpanda/lib/libcryptopp.so.8.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2432654 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 310 buildId d3ddb0e9aceff9e2ca04d7a21391b56abd891049 exec /opt/redpanda/lib/libnuma.so.1 +-> caching - new mapping +=> found 773 unwind entries for /opt/redpanda/lib/libnuma.so.1 low pc 3020 high pc a978 +- current chunk size 773 +- rest of chunk size 0 +- lowindex [ 182654 : 183427 ] highIndex +- executable 310 mapping /opt/redpanda/lib/libnuma.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2433427 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 311 buildId bc304be3067df0d7 exec /opt/redpanda/lib/liburing.so.2 +-> caching - new mapping +=> found 165 unwind entries for /opt/redpanda/lib/liburing.so.2 low pc 2020 high pc 3bb2 +- current chunk size 165 +- rest of chunk size 0 +- lowindex [ 183427 : 183592 ] highIndex +- executable 311 mapping /opt/redpanda/lib/liburing.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2433592 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 312 buildId fa9525b3cfea98dbcb0be3be2f71e8ff12699b2e exec /opt/redpanda/lib/libsctp.so.1 +-> caching - new mapping +=> found 131 unwind entries for /opt/redpanda/lib/libsctp.so.1 low pc 1020 high pc 1fe1 +- current chunk size 131 +- rest of chunk size 0 +- lowindex [ 183592 : 183723 ] highIndex +- executable 312 mapping /opt/redpanda/lib/libsctp.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2433723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 313 buildId ebb6b21cad677866c57b411106d3378352084327 exec /opt/redpanda/lib/libatomic.so.1 +-> caching - new mapping +=> found 571 unwind entries for /opt/redpanda/lib/libatomic.so.1 low pc 2020 high pc 4d8c +- current chunk size 571 +- rest of chunk size 0 +- lowindex [ 183723 : 184294 ] highIndex +- executable 313 mapping /opt/redpanda/lib/libatomic.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2434294 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 314 buildId 4f4bbc715a2f0d7bb148ecdb1cc54bc2b3bf4987 exec /opt/redpanda/lib/libcares.so.2 +-> caching - new mapping +=> found 1344 unwind entries for /opt/redpanda/lib/libcares.so.2 low pc 6890 high pc 18865 +- current chunk size 1344 +- rest of chunk size 0 +- lowindex [ 184294 : 185638 ] highIndex +- executable 314 mapping /opt/redpanda/lib/libcares.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2435638 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 315 buildId 0bd8633777760a40f39655086798218e126b0b4c exec /opt/redpanda/lib/libboost_atomic.so.1.75.0 +-> caching - new mapping +=> found 122 unwind entries for /opt/redpanda/lib/libboost_atomic.so.1.75.0 low pc 1020 high pc 2332 +- current chunk size 122 +- rest of chunk size 0 +- lowindex [ 185638 : 185760 ] highIndex +- executable 315 mapping /opt/redpanda/lib/libboost_atomic.so.1.75.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2435760 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 316 buildId faf034c1fae42d5825309a7f932f29e66dd4b9b2 exec /opt/redpanda/lib/libboost_date_time.so.1.75.0 +-> caching - new mapping +=> found 4 unwind entries for /opt/redpanda/lib/libboost_date_time.so.1.75.0 low pc 1020 high pc 1101 +- current chunk size 4 +- rest of chunk size 0 +- lowindex [ 185760 : 185764 ] highIndex +- executable 316 mapping /opt/redpanda/lib/libboost_date_time.so.1.75.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2435764 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 317 buildId 42dadca13a00b4c19be7a471d57a47c889024b34 exec /opt/redpanda/lib/libboost_chrono.so.1.75.0 +-> caching - new mapping +=> found 245 unwind entries for /opt/redpanda/lib/libboost_chrono.so.1.75.0 low pc 3020 high pc 4954 +- current chunk size 245 +- rest of chunk size 0 +- lowindex [ 185764 : 186009 ] highIndex +- executable 317 mapping /opt/redpanda/lib/libboost_chrono.so.1.75.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2436009 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 318 buildId a16b7213f761351472ec926bed4f2e9479d86a59 exec /opt/redpanda/lib/libboost_thread.so.1.75.0 +-> caching - new mapping +=> found 1797 unwind entries for /opt/redpanda/lib/libboost_thread.so.1.75.0 low pc 7020 high pc 176c1 +- current chunk size 1797 +- rest of chunk size 0 +- lowindex [ 186009 : 187806 ] highIndex +- executable 318 mapping /opt/redpanda/lib/libboost_thread.so.1.75.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2437806 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 319 buildId 8c42404dee9435ef4d8bf5ad33c471eb83ff06b7 exec /opt/redpanda/lib/libboost_program_options.so.1.75.0 +-> caching - new mapping +=> found 4469 unwind entries for /opt/redpanda/lib/libboost_program_options.so.1.75.0 low pc 13020 high pc 52be0 +- current chunk size 4469 +- rest of chunk size 0 +- lowindex [ 187806 : 192275 ] highIndex +- executable 319 mapping /opt/redpanda/lib/libboost_program_options.so.1.75.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2442275 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 320 buildId 4db50bdababa9636c5a64e2a96d21edc2320e70b exec /opt/redpanda/lib/liblz4.so.1 +-> caching - new mapping +=> found 1088 unwind entries for /opt/redpanda/lib/liblz4.so.1 low pc 5b10 high pc 3df17 +- current chunk size 1088 +- rest of chunk size 0 +- lowindex [ 192275 : 193363 ] highIndex +- executable 320 mapping /opt/redpanda/lib/liblz4.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2443363 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 321 buildId 62c2402eea0c7b943ebcafdad30959c58ffe6778 exec /opt/redpanda/lib/libz.so.1 +-> caching - new mapping +=> found 925 unwind entries for /opt/redpanda/lib/libz.so.1 low pc 9450 high pc 20048 +- current chunk size 925 +- rest of chunk size 0 +- lowindex [ 193363 : 194288 ] highIndex +- executable 321 mapping /opt/redpanda/lib/libz.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2444288 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 322 buildId 00488e75d2321e5e1c92a74490607ff6a01abd71 exec /opt/redpanda/lib/libboost_regex.so.1.75.0 +-> caching - new mapping +=> found 7735 unwind entries for /opt/redpanda/lib/libboost_regex.so.1.75.0 low pc c020 high pc fd89b +- current chunk size 7735 +- rest of chunk size 0 +- lowindex [ 194288 : 202023 ] highIndex +- executable 322 mapping /opt/redpanda/lib/libboost_regex.so.1.75.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2452023 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 323 buildId a487bdad20a07ef8af1ce827511351698f116896 exec /opt/redpanda/lib/libboost_iostreams.so.1.75.0 +-> caching - new mapping +=> found 1014 unwind entries for /opt/redpanda/lib/libboost_iostreams.so.1.75.0 low pc 6020 high pc f730 +- current chunk size 1014 +- rest of chunk size 0 +- lowindex [ 202023 : 203037 ] highIndex +- executable 323 mapping /opt/redpanda/lib/libboost_iostreams.so.1.75.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2453037 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 324 buildId 997994d4535f8c791738540c3e6ee8e46a752603 exec /opt/redpanda/lib/ld.so +-> caching - new mapping +=> found 2279 unwind entries for /opt/redpanda/lib/ld.so low pc 2000 high pc 28c95 +- current chunk size 2279 +- rest of chunk size 0 +- lowindex [ 203037 : 205316 ] highIndex +- executable 324 mapping /opt/redpanda/lib/ld.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2455316 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2455316 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.420166327Z caller=cpu.go:495 msg="adding unwind tables" pid=1482 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2455316 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56480241e000, StartAddr: 0x56480242d000, EndAddr: 0x564802460000, Executable:/usr/sbin/gdm} +[info] adding memory mappings in for executable with ID 325 buildId a01a2f905cf9281a6b5d77fa023a28c419bb41f1 exec /usr/sbin/gdm +-> caching - new mapping +=> found 7304 unwind entries for /usr/sbin/gdm low pc f020 high pc 41302 +- current chunk size 7304 +- rest of chunk size 0 +- lowindex [ 205316 : 212620 ] highIndex +- executable 325 mapping /usr/sbin/gdm shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462620 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 326 buildId d999c865b5d7a3abdd88ce5bcf338b1e19bea9f6 exec /usr/lib64/libXdmcp.so.6.0.0 +-> caching - new mapping +=> found 324 unwind entries for /usr/lib64/libXdmcp.so.6.0.0 low pc 2020 high pc 3bdf +- current chunk size 324 +- rest of chunk size 0 +- lowindex [ 212620 : 212944 ] highIndex +- executable 326 mapping /usr/lib64/libXdmcp.so.6.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462944 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 327 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462944 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 327 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2462944 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 327 buildId 09ba7cbbc9ca38f147f330fc602a9cb243deb68a exec /usr/lib64/libaccountsservice.so.0.0.0 +-> caching - new mapping +=> found 7790 unwind entries for /usr/lib64/libaccountsservice.so.0.0.0 low pc 14020 high pc 357dc +- current chunk size 7790 +- rest of chunk size 0 +- lowindex [ 212944 : 220734 ] highIndex +- executable 327 mapping /usr/lib64/libaccountsservice.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2470734 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 328 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2470734 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 328 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2470734 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 328 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2470734 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 328 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2470734 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 328 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2470734 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2470734 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.431577819Z caller=cpu.go:495 msg="adding unwind tables" pid=1515 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2470734 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 328 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - new mapping +=> found 19277 unwind entries for /usr/sbin/nginx low pc 23020 high pc ee698 +- current chunk size 19277 +- rest of chunk size 0 +- lowindex [ 220734 : 240011 ] highIndex +- executable 328 mapping /usr/sbin/nginx shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2490011 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 329 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2490011 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 329 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2490011 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 329 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2490011 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 329 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2490011 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 329 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - new mapping +=> found 672 unwind entries for /usr/lib64/libunwind.so.8.0.1 low pc 2000 high pc ab2f +- current chunk size 672 +- rest of chunk size 0 +- lowindex [ 240011 : 240683 ] highIndex +- executable 329 mapping /usr/lib64/libunwind.so.8.0.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2490683 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 330 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - new mapping +=> found 1093 unwind entries for /usr/lib64/libprofiler.so.0.5.4 low pc 5020 high pc c53f +- current chunk size 1093 +- rest of chunk size 0 +- lowindex [ 240683 : 241776 ] highIndex +- executable 330 mapping /usr/lib64/libprofiler.so.0.5.4 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.446526929Z caller=cpu.go:495 msg="adding unwind tables" pid=1516 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.448591681Z caller=cpu.go:495 msg="adding unwind tables" pid=1517 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.450964689Z caller=cpu.go:495 msg="adding unwind tables" pid=1518 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.453237898Z caller=cpu.go:495 msg="adding unwind tables" pid=1519 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.45553012Z caller=cpu.go:495 msg="adding unwind tables" pid=1520 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.457887741Z caller=cpu.go:495 msg="adding unwind tables" pid=1521 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.460440097Z caller=cpu.go:495 msg="adding unwind tables" pid=1522 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.462896301Z caller=cpu.go:495 msg="adding unwind tables" pid=1523 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.465568576Z caller=cpu.go:495 msg="adding unwind tables" pid=1524 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.467848394Z caller=cpu.go:495 msg="adding unwind tables" pid=1525 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.470083567Z caller=cpu.go:495 msg="adding unwind tables" pid=1526 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.472314595Z caller=cpu.go:495 msg="adding unwind tables" pid=1527 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601442f0000, StartAddr: 0x560144313000, EndAddr: 0x5601443df000, Executable:/usr/sbin/nginx} +[info] adding memory mappings in for executable with ID 331 buildId a32d2e23db2773a9605e74a6fd072af813864149 exec /usr/sbin/nginx +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId b6d3bdf2fd1b0630a4fcbfe643333b8bd77235cb exec /usr/lib64/libunwind.so.8.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 102cf63caec52b17b67bce8e1ef40bdfbc08bf92 exec /usr/lib64/libprofiler.so.0.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 331 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.474549661Z caller=cpu.go:495 msg="adding unwind tables" pid=1567 +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2491776 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560e4fbee000, StartAddr: 0x560e4fbf9000, EndAddr: 0x560e4fc16000, Executable:/usr/libexec/gdm-session-worker} +[info] adding memory mappings in for executable with ID 331 buildId fdd132cf5e30d85a71492819fb09aeb2fc6bb2c7 exec /usr/libexec/gdm-session-worker +-> caching - new mapping +=> found 4425 unwind entries for /usr/libexec/gdm-session-worker low pc b020 high pc 27070 +- current chunk size 4425 +- rest of chunk size 0 +- lowindex [ 241776 : 246201 ] highIndex +- executable 331 mapping /usr/libexec/gdm-session-worker shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496201 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 332 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496201 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 332 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496201 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 332 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496201 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 332 buildId 3f71547e2718cd9fb8247a4efd07548f9db0dfba exec /usr/lib64/security/pam_deny.so +-> caching - new mapping +=> found 10 unwind entries for /usr/lib64/security/pam_deny.so low pc 1020 high pc 116a +- current chunk size 10 +- rest of chunk size 0 +- lowindex [ 246201 : 246211 ] highIndex +- executable 332 mapping /usr/lib64/security/pam_deny.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496211 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 333 buildId 6a83303073da04a0da55800159ecadecce21c795 exec /usr/lib64/security/pam_lastlog.so +-> caching - new mapping +=> found 139 unwind entries for /usr/lib64/security/pam_lastlog.so low pc 1020 high pc 2c7f +- current chunk size 139 +- rest of chunk size 0 +- lowindex [ 246211 : 246350 ] highIndex +- executable 333 mapping /usr/lib64/security/pam_lastlog.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496350 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 334 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496350 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 334 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496350 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 334 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496350 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 334 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496350 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 334 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 9 , total entries: 2496350 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 334 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - new mapping +=> found 3846 unwind entries for /usr/lib64/libtirpc.so.3.0.0 low pc 8020 high pc 2380c +- current chunk size 3650 +- rest of chunk size 196 +- lowindex [ 246350 : 250000 ] highIndex +- executable 334 mapping /usr/lib64/libtirpc.so.3.0.0 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 196 +- rest of chunk size 0 +- lowindex [ 0 : 196 ] highIndex +- executable 334 mapping /usr/lib64/libtirpc.so.3.0.0 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2500196 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 335 buildId e7145864e2968e691df3a46068e289aac25f8afd exec /usr/lib64/security/pam_systemd.so +-> caching - new mapping +=> found 6341 unwind entries for /usr/lib64/security/pam_systemd.so low pc a020 high pc 5af90 +- current chunk size 6341 +- rest of chunk size 0 +- lowindex [ 196 : 6537 ] highIndex +- executable 335 mapping /usr/lib64/security/pam_systemd.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2506537 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 336 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2506537 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 336 buildId a96111b1466674fa8802de6814ffeb3121062165 exec /usr/lib64/security/pam_umask.so +-> caching - new mapping +=> found 21 unwind entries for /usr/lib64/security/pam_umask.so low pc 1020 high pc 1837 +- current chunk size 21 +- rest of chunk size 0 +- lowindex [ 6537 : 6558 ] highIndex +- executable 336 mapping /usr/lib64/security/pam_umask.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2506558 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 337 buildId 00ac86bed4af7f5350d9891b13c0cb2dfba9eb07 exec /usr/lib64/security/pam_sss.so +-> caching - new mapping +=> found 674 unwind entries for /usr/lib64/security/pam_sss.so low pc 3020 high pc af68 +- current chunk size 674 +- rest of chunk size 0 +- lowindex [ 6558 : 7232 ] highIndex +- executable 337 mapping /usr/lib64/security/pam_sss.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2507232 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 338 buildId 4fb63e4a2a82bfb7a33eddf15f6c6225469caf3e exec /usr/lib64/security/pam_unix.so +-> caching - new mapping +=> found 478 unwind entries for /usr/lib64/security/pam_unix.so low pc 3020 high pc ac8d +- current chunk size 478 +- rest of chunk size 0 +- lowindex [ 7232 : 7710 ] highIndex +- executable 338 mapping /usr/lib64/security/pam_unix.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2507710 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 339 buildId 3a68fe19586f46e1593df5e9e4e7d4e5ed9ae2a1 exec /usr/lib64/libpam_misc.so.0.82.1 +-> caching - new mapping +=> found 75 unwind entries for /usr/lib64/libpam_misc.so.0.82.1 low pc 2020 high pc 2fb1 +- current chunk size 75 +- rest of chunk size 0 +- lowindex [ 7710 : 7785 ] highIndex +- executable 339 mapping /usr/lib64/libpam_misc.so.0.82.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2507785 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 340 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2507785 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 340 buildId f9fa08b5ce00bc8cfa34f3c43b385b65276c07b5 exec /usr/lib64/libnsl.so.3.0.0 +-> caching - new mapping +=> found 514 unwind entries for /usr/lib64/libnsl.so.3.0.0 low pc 2020 high pc 4f04 +- current chunk size 514 +- rest of chunk size 0 +- lowindex [ 7785 : 8299 ] highIndex +- executable 340 mapping /usr/lib64/libnsl.so.3.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508299 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 341 buildId 2a6727bad1741d8c1935e0e272a45f94829cccd4 exec /usr/lib64/security/pam_succeed_if.so +-> caching - new mapping +=> found 86 unwind entries for /usr/lib64/security/pam_succeed_if.so low pc 1020 high pc 2559 +- current chunk size 86 +- rest of chunk size 0 +- lowindex [ 8299 : 8385 ] highIndex +- executable 341 mapping /usr/lib64/security/pam_succeed_if.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508385 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 342 buildId b1e2ea5ac7e1fa8095e88439279d0614490bb29f exec /usr/lib64/security/pam_limits.so +-> caching - new mapping +=> found 91 unwind entries for /usr/lib64/security/pam_limits.so low pc 2020 high pc 4c57 +- current chunk size 91 +- rest of chunk size 0 +- lowindex [ 8385 : 8476 ] highIndex +- executable 342 mapping /usr/lib64/security/pam_limits.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508476 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 343 buildId 0d9219fe3b54e964e09c165d792227751b917c0b exec /usr/lib64/security/pam_keyinit.so +-> caching - new mapping +=> found 73 unwind entries for /usr/lib64/security/pam_keyinit.so low pc 1020 high pc 1b33 +- current chunk size 73 +- rest of chunk size 0 +- lowindex [ 8476 : 8549 ] highIndex +- executable 343 mapping /usr/lib64/security/pam_keyinit.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 09ba7cbbc9ca38f147f330fc602a9cb243deb68a exec /usr/lib64/libaccountsservice.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508549 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 344 buildId 502a7eeb9bee3a4bfed49cda2e28d15e947edb6e exec /usr/lib64/security/pam_permit.so +-> caching - new mapping +=> found 17 unwind entries for /usr/lib64/security/pam_permit.so low pc 1020 high pc 1247 +- current chunk size 17 +- rest of chunk size 0 +- lowindex [ 8549 : 8566 ] highIndex +- executable 344 mapping /usr/lib64/security/pam_permit.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508566 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 345 buildId e64f037adaed159ab45b04f78749e59bf3243f0b exec /usr/lib64/security/pam_env.so +-> caching - new mapping +=> found 121 unwind entries for /usr/lib64/security/pam_env.so low pc 1020 high pc 29c5 +- current chunk size 121 +- rest of chunk size 0 +- lowindex [ 8566 : 8687 ] highIndex +- executable 345 mapping /usr/lib64/security/pam_env.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508687 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 346 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508687 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508687 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.494843223Z caller=cpu.go:495 msg="adding unwind tables" pid=1571 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2508687 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558cced59000, StartAddr: 0x558cced5d000, EndAddr: 0x558cced64000, Executable:/usr/libexec/uresourced} +[info] adding memory mappings in for executable with ID 346 buildId a9472b97a616e5ef984dd1e9ed5a0dd685903029 exec /usr/libexec/uresourced +-> caching - new mapping +=> found 595 unwind entries for /usr/libexec/uresourced low pc 4020 high pc ab22 +- current chunk size 595 +- rest of chunk size 0 +- lowindex [ 8687 : 9282 ] highIndex +- executable 346 mapping /usr/libexec/uresourced shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2509282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 347 buildId 383ecd23693dfee098bd892eb64bf7c33c07f7e2 exec /usr/lib64/libpipewire-0.3.so.0.363.0 +-> caching - new mapping +=> found 10877 unwind entries for /usr/lib64/libpipewire-0.3.so.0.363.0 low pc 31020 high pc 8ba50 +- current chunk size 10877 +- rest of chunk size 0 +- lowindex [ 9282 : 20159 ] highIndex +- executable 347 mapping /usr/lib64/libpipewire-0.3.so.0.363.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.504860636Z caller=cpu.go:495 msg="adding unwind tables" pid=1578 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561b0ea83000, StartAddr: 0x561b0eabb000, EndAddr: 0x561b0ebad000, Executable:/usr/lib/systemd/systemd} +[info] adding memory mappings in for executable with ID 348 buildId e07b76a68d46d6098028ed5d50f4dfa83c490ab4 exec /usr/lib/systemd/systemd +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId d6980844066013271b32b9e7705e24b67ccf320b exec /usr/lib64/libbpf.so.0.8.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.509629947Z caller=cpu.go:495 msg="adding unwind tables" pid=1586 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5628147b8000, StartAddr: 0x5628147f0000, EndAddr: 0x5628148e2000, Executable:/usr/lib/systemd/systemd} +[info] adding memory mappings in for executable with ID 348 buildId e07b76a68d46d6098028ed5d50f4dfa83c490ab4 exec /usr/lib/systemd/systemd +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 3a68fe19586f46e1593df5e9e4e7d4e5ed9ae2a1 exec /usr/lib64/libpam_misc.so.0.82.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 3f71547e2718cd9fb8247a4efd07548f9db0dfba exec /usr/lib64/security/pam_deny.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 2a6727bad1741d8c1935e0e272a45f94829cccd4 exec /usr/lib64/security/pam_succeed_if.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId e7145864e2968e691df3a46068e289aac25f8afd exec /usr/lib64/security/pam_systemd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId b1e2ea5ac7e1fa8095e88439279d0614490bb29f exec /usr/lib64/security/pam_limits.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 0d9219fe3b54e964e09c165d792227751b917c0b exec /usr/lib64/security/pam_keyinit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520159 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 348 buildId 988bd68e349570ecbb85906f17c8d2ebc5029911 exec /usr/lib64/security/pam_namespace.so +-> caching - new mapping +=> found 183 unwind entries for /usr/lib64/security/pam_namespace.so low pc 2020 high pc 7667 +- current chunk size 183 +- rest of chunk size 0 +- lowindex [ 20159 : 20342 ] highIndex +- executable 348 mapping /usr/lib64/security/pam_namespace.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520342 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 349 buildId 38a36d131ca1ef0a27d8175c9cebc69b25202677 exec /usr/lib64/security/pam_loginuid.so +-> caching - new mapping +=> found 41 unwind entries for /usr/lib64/security/pam_loginuid.so low pc 1020 high pc 18c7 +- current chunk size 41 +- rest of chunk size 0 +- lowindex [ 20342 : 20383 ] highIndex +- executable 349 mapping /usr/lib64/security/pam_loginuid.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520383 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 350 buildId 2ed95e7bc8ea7c3f0afe909dc88288b42e8ed35d exec /usr/lib64/security/pam_selinux.so +-> caching - new mapping +=> found 136 unwind entries for /usr/lib64/security/pam_selinux.so low pc 2020 high pc 42f2 +- current chunk size 136 +- rest of chunk size 0 +- lowindex [ 20383 : 20519 ] highIndex +- executable 350 mapping /usr/lib64/security/pam_selinux.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId 502a7eeb9bee3a4bfed49cda2e28d15e947edb6e exec /usr/lib64/security/pam_permit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId 4fb63e4a2a82bfb7a33eddf15f6c6225469caf3e exec /usr/lib64/security/pam_unix.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId d6980844066013271b32b9e7705e24b67ccf320b exec /usr/lib64/libbpf.so.0.8.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId 00ac86bed4af7f5350d9891b13c0cb2dfba9eb07 exec /usr/lib64/security/pam_sss.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520519 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 351 buildId e27bcb812f6cb0900c9ecfc6dd053c38580887b4 exec /usr/lib64/security/pam_usertype.so +-> caching - new mapping +=> found 61 unwind entries for /usr/lib64/security/pam_usertype.so low pc 1020 high pc 17e9 +- current chunk size 61 +- rest of chunk size 0 +- lowindex [ 20519 : 20580 ] highIndex +- executable 351 mapping /usr/lib64/security/pam_usertype.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520580 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 352 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520580 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 352 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520580 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 352 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520580 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 352 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520580 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 352 buildId ec4901510d94c63c65ecf7d90012f760935f9766 exec /usr/lib64/security/pam_localuser.so +-> caching - new mapping +=> found 25 unwind entries for /usr/lib64/security/pam_localuser.so low pc 1020 high pc 1409 +- current chunk size 25 +- rest of chunk size 0 +- lowindex [ 20580 : 20605 ] highIndex +- executable 352 mapping /usr/lib64/security/pam_localuser.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId f9fa08b5ce00bc8cfa34f3c43b385b65276c07b5 exec /usr/lib64/libnsl.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 353 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.517079372Z caller=cpu.go:495 msg="adding unwind tables" pid=1597 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2520605 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56030b833000, StartAddr: 0x56030b837000, EndAddr: 0x56030b83c000, Executable:/usr/libexec/gdm-wayland-session} +[info] adding memory mappings in for executable with ID 353 buildId 6094bf1268d1e05c56f7de03a45468a15c2d37db exec /usr/libexec/gdm-wayland-session +-> caching - new mapping +=> found 514 unwind entries for /usr/libexec/gdm-wayland-session low pc 4020 high pc 88b6 +- current chunk size 514 +- rest of chunk size 0 +- lowindex [ 20605 : 21119 ] highIndex +- executable 353 mapping /usr/libexec/gdm-wayland-session shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.519428553Z caller=cpu.go:495 msg="adding unwind tables" pid=1599 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556d0b759000, StartAddr: 0x556d0b75c000, EndAddr: 0x556d0b771000, Executable:/usr/bin/dbus-broker-launch} +[info] adding memory mappings in for executable with ID 354 buildId 1507f35ad61f503f9a4505b53b052842ed9f5f33 exec /usr/bin/dbus-broker-launch +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.521523147Z caller=cpu.go:495 msg="adding unwind tables" pid=1600 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56140ac16000, StartAddr: 0x56140ac1a000, EndAddr: 0x56140ac40000, Executable:/usr/bin/dbus-broker} +[info] adding memory mappings in for executable with ID 354 buildId a0fdfb06853e5922e97da022959b63a4b185b25a exec /usr/bin/dbus-broker +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 354 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.522767801Z caller=cpu.go:495 msg="adding unwind tables" pid=1602 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521119 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56233e18e000, StartAddr: 0x56233e18f000, EndAddr: 0x56233e190000, Executable:/usr/bin/dbus-run-session} +[info] adding memory mappings in for executable with ID 354 buildId 386315fb90dab374b4759935efc4ae32644360d9 exec /usr/bin/dbus-run-session +-> caching - new mapping +=> found 26 unwind entries for /usr/bin/dbus-run-session low pc 1020 high pc 1c46 +- current chunk size 26 +- rest of chunk size 0 +- lowindex [ 21119 : 21145 ] highIndex +- executable 354 mapping /usr/bin/dbus-run-session shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 355 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.524859741Z caller=cpu.go:495 msg="adding unwind tables" pid=1603 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2521145 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d9812d8000, StartAddr: 0x55d9812e1000, EndAddr: 0x55d981302000, Executable:/usr/bin/dbus-daemon} +[info] adding memory mappings in for executable with ID 355 buildId 209a3832a50d45d35aeae2ce9490047bce766a77 exec /usr/bin/dbus-daemon +-> caching - new mapping +=> found 2922 unwind entries for /usr/bin/dbus-daemon low pc 9020 high pc 29654 +- current chunk size 2922 +- rest of chunk size 0 +- lowindex [ 21145 : 24067 ] highIndex +- executable 355 mapping /usr/bin/dbus-daemon shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 356 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.528209361Z caller=cpu.go:495 msg="adding unwind tables" pid=1604 +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2524067 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558930746000, StartAddr: 0x558930752000, EndAddr: 0x558930775000, Executable:/usr/libexec/gnome-session-binary} +[info] adding memory mappings in for executable with ID 356 buildId a89fd2e90b9ae28c4334060b7f96dae21b65abd4 exec /usr/libexec/gnome-session-binary +-> caching - new mapping +=> found 5771 unwind entries for /usr/libexec/gnome-session-binary low pc c020 high pc 2ee4d +- current chunk size 5771 +- rest of chunk size 0 +- lowindex [ 24067 : 29838 ] highIndex +- executable 356 mapping /usr/libexec/gnome-session-binary shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2529838 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 357 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2529838 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 357 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2529838 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 357 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - new mapping +=> found 840 unwind entries for /usr/lib64/gio/modules/libdconfsettings.so low pc 4020 high pc a859 +- current chunk size 840 +- rest of chunk size 0 +- lowindex [ 29838 : 30678 ] highIndex +- executable 357 mapping /usr/lib64/gio/modules/libdconfsettings.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2530678 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 358 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - new mapping +=> found 7196 unwind entries for /usr/lib64/gvfs/libgvfscommon.so low pc 13020 high pc 2eed5 +- current chunk size 7196 +- rest of chunk size 0 +- lowindex [ 30678 : 37874 ] highIndex +- executable 358 mapping /usr/lib64/gvfs/libgvfscommon.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2537874 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 359 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2537874 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 359 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2537874 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 359 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - new mapping +=> found 4420 unwind entries for /usr/lib64/gio/modules/libgvfsdbus.so low pc a020 high pc 27b4d +- current chunk size 4420 +- rest of chunk size 0 +- lowindex [ 37874 : 42294 ] highIndex +- executable 359 mapping /usr/lib64/gio/modules/libgvfsdbus.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2542294 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 360 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2542294 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 360 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - new mapping +=> found 439 unwind entries for /usr/lib64/libdatrie.so.1.4.0 low pc 2020 high pc 5681 +- current chunk size 439 +- rest of chunk size 0 +- lowindex [ 42294 : 42733 ] highIndex +- executable 360 mapping /usr/lib64/libdatrie.so.1.4.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2542733 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 361 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2542733 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 361 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2542733 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 361 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2542733 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 361 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2542733 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 361 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - new mapping +=> found 1135 unwind entries for /usr/lib64/libstemmer.so.0.0.0 low pc 1a020 high pc 2e90c +- current chunk size 1135 +- rest of chunk size 0 +- lowindex [ 42733 : 43868 ] highIndex +- executable 361 mapping /usr/lib64/libstemmer.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2543868 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 362 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - new mapping +=> found 4051 unwind entries for /usr/lib64/libatspi.so.0.0.1 low pc 10020 high pc 2994d +- current chunk size 4051 +- rest of chunk size 0 +- lowindex [ 43868 : 47919 ] highIndex +- executable 362 mapping /usr/lib64/libatspi.so.0.0.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2547919 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 363 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2547919 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 363 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2547919 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 363 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - new mapping +=> found 434 unwind entries for /usr/lib64/libthai.so.0.3.1 low pc 2020 high pc 5ec7 +- current chunk size 434 +- rest of chunk size 0 +- lowindex [ 47919 : 48353 ] highIndex +- executable 363 mapping /usr/lib64/libthai.so.0.3.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548353 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 364 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - new mapping +=> found 99 unwind entries for /usr/lib64/libXinerama.so.1.0.0 low pc 1020 high pc 1b5e +- current chunk size 99 +- rest of chunk size 0 +- lowindex [ 48353 : 48452 ] highIndex +- executable 364 mapping /usr/lib64/libXinerama.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2548452 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 365 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - new mapping +=> found 999 unwind entries for /usr/lib64/libXrandr.so.2.2.0 low pc 2020 high pc 8f79 +- current chunk size 999 +- rest of chunk size 0 +- lowindex [ 48452 : 49451 ] highIndex +- executable 365 mapping /usr/lib64/libXrandr.so.2.2.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2549451 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 366 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - new mapping +=> found 175 unwind entries for /usr/lib64/libXcomposite.so.1.0.0 low pc 1020 high pc 1b95 +- current chunk size 175 +- rest of chunk size 0 +- lowindex [ 49451 : 49626 ] highIndex +- executable 366 mapping /usr/lib64/libXcomposite.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2549626 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 367 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - new mapping +=> found 145 unwind entries for /usr/lib64/libXdamage.so.1.1.0 low pc 1020 high pc 1b6b +- current chunk size 145 +- rest of chunk size 0 +- lowindex [ 49626 : 49771 ] highIndex +- executable 367 mapping /usr/lib64/libXdamage.so.1.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2549771 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 368 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - new mapping +=> found 769 unwind entries for /usr/lib64/libXcursor.so.1.0.2 low pc 3020 high pc 872c +- current chunk size 769 +- rest of chunk size 0 +- lowindex [ 49771 : 50540 ] highIndex +- executable 368 mapping /usr/lib64/libXcursor.so.1.0.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2550540 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 369 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2550540 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 369 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - new mapping +=> found 18 unwind entries for /usr/lib64/libwayland-egl.so.1.21.0 low pc 1020 high pc 1229 +- current chunk size 18 +- rest of chunk size 0 +- lowindex [ 50540 : 50558 ] highIndex +- executable 369 mapping /usr/lib64/libwayland-egl.so.1.21.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2550558 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 370 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - new mapping +=> found 2754 unwind entries for /usr/lib64/libxkbcommon.so.0.0.0 low pc 5020 high pc 232b9 +- current chunk size 2754 +- rest of chunk size 0 +- lowindex [ 50558 : 53312 ] highIndex +- executable 370 mapping /usr/lib64/libxkbcommon.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2553312 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 371 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - new mapping +=> found 643 unwind entries for /usr/lib64/libXfixes.so.3.1.0 low pc 2020 high pc 49ba +- current chunk size 643 +- rest of chunk size 0 +- lowindex [ 53312 : 53955 ] highIndex +- executable 371 mapping /usr/lib64/libXfixes.so.3.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2553955 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 372 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - new mapping +=> found 600 unwind entries for /usr/lib64/libwayland-client.so.0.21.0 low pc 6020 high pc b944 +- current chunk size 600 +- rest of chunk size 0 +- lowindex [ 53955 : 54555 ] highIndex +- executable 372 mapping /usr/lib64/libwayland-client.so.0.21.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2554555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 373 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - new mapping +=> found 15033 unwind entries for /usr/lib64/libtracker-sparql-3.0.so.0.303.0 low pc 19020 high pc 87f9f +- current chunk size 15033 +- rest of chunk size 0 +- lowindex [ 54555 : 69588 ] highIndex +- executable 373 mapping /usr/lib64/libtracker-sparql-3.0.so.0.303.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2569588 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 374 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - new mapping +=> found 2040 unwind entries for /usr/lib64/libcloudproviders.so.0.3.1 low pc 7020 high pc 117e5 +- current chunk size 2040 +- rest of chunk size 0 +- lowindex [ 69588 : 71628 ] highIndex +- executable 374 mapping /usr/lib64/libcloudproviders.so.0.3.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2571628 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 375 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - new mapping +=> found 3955 unwind entries for /usr/lib64/libatk-bridge-2.0.so.0.0.0 low pc c020 high pc 252b2 +- current chunk size 3955 +- rest of chunk size 0 +- lowindex [ 71628 : 75583 ] highIndex +- executable 375 mapping /usr/lib64/libatk-bridge-2.0.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2575583 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 376 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2575583 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 376 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - new mapping +=> found 1340 unwind entries for /usr/lib64/libXi.so.6.1.0 low pc 3020 high pc e61b +- current chunk size 1340 +- rest of chunk size 0 +- lowindex [ 75583 : 76923 ] highIndex +- executable 376 mapping /usr/lib64/libXi.so.6.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2576923 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 377 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - new mapping +=> found 46246 unwind entries for /usr/lib64/libepoxy.so.0.0.0 low pc 60020 high pc c5b21 +- current chunk size 46246 +- rest of chunk size 0 +- lowindex [ 76923 : 123169 ] highIndex +- executable 377 mapping /usr/lib64/libepoxy.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2623169 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 378 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - new mapping +=> found 3654 unwind entries for /usr/lib64/libatk-1.0.so.0.23809.1 low pc b020 high pc 19854 +- current chunk size 3654 +- rest of chunk size 0 +- lowindex [ 123169 : 126823 ] highIndex +- executable 378 mapping /usr/lib64/libatk-1.0.so.0.23809.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2626823 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 379 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - new mapping +=> found 354 unwind entries for /usr/lib64/libfribidi.so.0.4.0 low pc 2020 high pc 6506 +- current chunk size 354 +- rest of chunk size 0 +- lowindex [ 126823 : 127177 ] highIndex +- executable 379 mapping /usr/lib64/libfribidi.so.0.4.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2627177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 380 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2627177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 380 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - new mapping +=> found 1743 unwind entries for /usr/lib64/libpangoft2-1.0.so.0.5000.9 low pc 7020 high pc 135ea +- current chunk size 1743 +- rest of chunk size 0 +- lowindex [ 127177 : 128920 ] highIndex +- executable 380 mapping /usr/lib64/libpangoft2-1.0.so.0.5000.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2628920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 381 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2628920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 381 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - new mapping +=> found 6204 unwind entries for /usr/lib64/libpango-1.0.so.0.5000.9 low pc 12020 high pc 48113 +- current chunk size 6204 +- rest of chunk size 0 +- lowindex [ 128920 : 135124 ] highIndex +- executable 381 mapping /usr/lib64/libpango-1.0.so.0.5000.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2635124 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 382 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - new mapping +=> found 3870 unwind entries for /usr/lib64/libjpeg.so.62.3.0 low pc 4020 high pc 3c2a0 +- current chunk size 3870 +- rest of chunk size 0 +- lowindex [ 135124 : 138994 ] highIndex +- executable 382 mapping /usr/lib64/libjpeg.so.62.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2638994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 383 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2638994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 383 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2638994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 383 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2638994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 383 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2638994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 383 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2638994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 383 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 10 , total entries: 2638994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 383 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - new mapping +=> found 176734 unwind entries for /usr/lib64/libgtk-3.so.0.2404.31 low pc 87020 high pc 451acb +- current chunk size 111006 +- rest of chunk size 65728 +- lowindex [ 138994 : 250000 ] highIndex +- executable 383 mapping /usr/lib64/libgtk-3.so.0.2404.31 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 65728 +- rest of chunk size 0 +- lowindex [ 0 : 65728 ] highIndex +- executable 383 mapping /usr/lib64/libgtk-3.so.0.2404.31 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2815728 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 384 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2815728 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 384 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - new mapping +=> found 835 unwind entries for /usr/lib64/libpangocairo-1.0.so.0.5000.9 low pc 5020 high pc c73c +- current chunk size 835 +- rest of chunk size 0 +- lowindex [ 65728 : 66563 ] highIndex +- executable 384 mapping /usr/lib64/libpangocairo-1.0.so.0.5000.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2816563 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 385 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2816563 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 385 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2816563 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 385 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2816563 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 385 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2816563 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 385 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2816563 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 385 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - new mapping +=> found 23687 unwind entries for /usr/lib64/libgdk-3.so.0.2404.31 low pc 2a020 high pc b3b68 +- current chunk size 23687 +- rest of chunk size 0 +- lowindex [ 66563 : 90250 ] highIndex +- executable 385 mapping /usr/lib64/libgdk-3.so.0.2404.31 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2840250 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 386 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2840250 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 386 buildId a5009041f85b1ec5b58f06105aeb0319524ef526 exec /usr/lib64/libuuid.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2840250 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 386 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2840250 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 386 buildId 1532b1808d5b274f11f88113949be033011ff02b exec /usr/lib64/libxkbregistry.so.0.0.0 +-> caching - new mapping +=> found 272 unwind entries for /usr/lib64/libxkbregistry.so.0.0.0 low pc 2020 high pc 521c +- current chunk size 272 +- rest of chunk size 0 +- lowindex [ 90250 : 90522 ] highIndex +- executable 386 mapping /usr/lib64/libxkbregistry.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2840522 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 387 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - new mapping +=> found 3321 unwind entries for /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 low pc 8020 high pc 22260 +- current chunk size 3321 +- rest of chunk size 0 +- lowindex [ 90522 : 93843 ] highIndex +- executable 387 mapping /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2843843 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 388 buildId 1bea7bf939ad0327c4701659b5cea3825b3c0ec4 exec /usr/lib64/libSM.so.6.0.1 +-> caching - new mapping +=> found 517 unwind entries for /usr/lib64/libSM.so.6.0.1 low pc 2020 high pc 66c9 +- current chunk size 517 +- rest of chunk size 0 +- lowindex [ 93843 : 94360 ] highIndex +- executable 388 mapping /usr/lib64/libSM.so.6.0.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2844360 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 389 buildId a7612bd9872fadde51b7d00281e4d3a0e0e12561 exec /usr/lib64/libICE.so.6.3.0 +-> caching - new mapping +=> found 1502 unwind entries for /usr/lib64/libICE.so.6.3.0 low pc 5020 high pc 137a5 +- current chunk size 1502 +- rest of chunk size 0 +- lowindex [ 94360 : 95862 ] highIndex +- executable 389 mapping /usr/lib64/libICE.so.6.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2845862 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 390 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - new mapping +=> found 3419 unwind entries for /usr/lib64/libjson-glib-1.0.so.0.600.6 low pc 9020 high pc 1f45e +- current chunk size 3419 +- rest of chunk size 0 +- lowindex [ 95862 : 99281 ] highIndex +- executable 390 mapping /usr/lib64/libjson-glib-1.0.so.0.600.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2849281 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 391 buildId f16ca87c7fc78a91cb0a0c517144cae855d9cdde exec /usr/lib64/libgnome-desktop-3.so.19.3.0 +-> caching - new mapping +=> found 4385 unwind entries for /usr/lib64/libgnome-desktop-3.so.19.3.0 low pc f020 high pc 2d151 +- current chunk size 4385 +- rest of chunk size 0 +- lowindex [ 99281 : 103666 ] highIndex +- executable 391 mapping /usr/lib64/libgnome-desktop-3.so.19.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 392 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 392 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 392 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 392 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:49.675967075Z caller=cpu.go:495 msg="adding unwind tables" pid=1612 +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853666 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 392 buildId dc2ea13c00ab061f07ca4be6646d0684b39579b6 exec /usr/bin/gnome-shell +-> caching - new mapping +=> found 90 unwind entries for /usr/bin/gnome-shell low pc 2020 high pc 36fd +- current chunk size 90 +- rest of chunk size 0 +- lowindex [ 103666 : 103756 ] highIndex +- executable 392 mapping /usr/bin/gnome-shell shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 11 , total entries: 2853756 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 393 buildId 09866755cf0d92d8b5a785d9283d0fba51b98b90 exec /usr/lib64/librsvg-2.so.2.48.0 +-> caching - new mapping +=> found 186407 unwind entries for /usr/lib64/librsvg-2.so.2.48.0 low pc f4020 high pc 6a5a67 +- current chunk size 146244 +- rest of chunk size 40163 +- lowindex [ 103756 : 250000 ] highIndex +- executable 393 mapping /usr/lib64/librsvg-2.so.2.48.0 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 40163 +- rest of chunk size 0 +- lowindex [ 0 : 40163 ] highIndex +- executable 393 mapping /usr/lib64/librsvg-2.so.2.48.0 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3040163 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 394 buildId 387555eabd79cb04f7f0fe5f8ab501072c2c3dcc exec /usr/lib64/gconv/ISO8859-1.so +-> caching - new mapping +=> found 53 unwind entries for /usr/lib64/gconv/ISO8859-1.so low pc 1020 high pc 2018 +- current chunk size 53 +- rest of chunk size 0 +- lowindex [ 40163 : 40216 ] highIndex +- executable 394 mapping /usr/lib64/gconv/ISO8859-1.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3040216 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 395 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3040216 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 395 buildId 09ba7cbbc9ca38f147f330fc602a9cb243deb68a exec /usr/lib64/libaccountsservice.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3040216 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 395 buildId f4536b39fb2f8753c0db45928882de403544d065 exec /usr/lib64/libmp3lame.so.0.0.0 +-> caching - new mapping +=> found 2145 unwind entries for /usr/lib64/libmp3lame.so.0.0.0 low pc 7020 high pc 36f6f +- current chunk size 2145 +- rest of chunk size 0 +- lowindex [ 40216 : 42361 ] highIndex +- executable 395 mapping /usr/lib64/libmp3lame.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3042361 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 396 buildId b598cda2eaa2c2fb17354412c79cdb44f0ccb3ab exec /usr/lib64/libmpg123.so.0.47.0 +-> caching - new mapping +=> found 2384 unwind entries for /usr/lib64/libmpg123.so.0.47.0 low pc 6020 high pc 3cb69 +- current chunk size 2384 +- rest of chunk size 0 +- lowindex [ 42361 : 44745 ] highIndex +- executable 396 mapping /usr/lib64/libmpg123.so.0.47.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3044745 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 397 buildId d922cd73905353a5356f2aea7f43d7882b8b9725 exec /usr/lib64/libopus.so.0.8.0 +-> caching - new mapping +=> found 2087 unwind entries for /usr/lib64/libopus.so.0.8.0 low pc 3020 high pc 48269 +- current chunk size 2087 +- rest of chunk size 0 +- lowindex [ 44745 : 46832 ] highIndex +- executable 397 mapping /usr/lib64/libopus.so.0.8.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3046832 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 398 buildId f73c5115cbf4ec03fd51199035e70105c452c9c9 exec /usr/lib64/libvorbisenc.so.2.0.12 +-> caching - new mapping +=> found 115 unwind entries for /usr/lib64/libvorbisenc.so.2.0.12 low pc 14020 high pc 1676c +- current chunk size 115 +- rest of chunk size 0 +- lowindex [ 46832 : 46947 ] highIndex +- executable 398 mapping /usr/lib64/libvorbisenc.so.2.0.12 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3046947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 399 buildId b07e698f25b5c96b858a4224a09db7009edfd296 exec /usr/lib64/libFLAC.so.8.3.0 +-> caching - new mapping +=> found 2963 unwind entries for /usr/lib64/libFLAC.so.8.3.0 low pc 9020 high pc 4f172 +- current chunk size 2963 +- rest of chunk size 0 +- lowindex [ 46947 : 49910 ] highIndex +- executable 399 mapping /usr/lib64/libFLAC.so.8.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3049910 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 400 buildId d678af207bf09791e59e87ef5745fa3654b54d3f exec /usr/lib64/libsndfile.so.1.0.34 +-> caching - new mapping +=> found 8785 unwind entries for /usr/lib64/libsndfile.so.1.0.34 low pc 8020 high pc 59948 +- current chunk size 8785 +- rest of chunk size 0 +- lowindex [ 49910 : 58695 ] highIndex +- executable 400 mapping /usr/lib64/libsndfile.so.1.0.34 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3058695 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 401 buildId 1b44db205944eb0f35256db3a2affc0c08a6ddf7 exec /usr/lib64/pulseaudio/libpulsecommon-15.0.so +-> caching - new mapping +=> found 16162 unwind entries for /usr/lib64/pulseaudio/libpulsecommon-15.0.so low pc 15020 high pc 61452 +- current chunk size 16162 +- rest of chunk size 0 +- lowindex [ 58695 : 74857 ] highIndex +- executable 401 mapping /usr/lib64/pulseaudio/libpulsecommon-15.0.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3074857 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 402 buildId 47a56fe79c3265aad602438e6ea27960ae796f69 exec /usr/lib64/libpulse.so.0.24.0 +-> caching - new mapping +=> found 9667 unwind entries for /usr/lib64/libpulse.so.0.24.0 low pc c020 high pc 3c94a +- current chunk size 9667 +- rest of chunk size 0 +- lowindex [ 74857 : 84524 ] highIndex +- executable 402 mapping /usr/lib64/libpulse.so.0.24.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3084524 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 403 buildId ca2dba5500f9921262ca172dbdc1130fee77eea5 exec /usr/lib64/gnome-shell/libgvc.so +-> caching - new mapping +=> found 2972 unwind entries for /usr/lib64/gnome-shell/libgvc.so low pc 7020 high pc 17419 +- current chunk size 2972 +- rest of chunk size 0 +- lowindex [ 84524 : 87496 ] highIndex +- executable 403 mapping /usr/lib64/gnome-shell/libgvc.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3087496 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 404 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3087496 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3087496 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 404 buildId cfab038618d8b0517a9ea4cd9f61e8216ffbcbad exec /usr/lib64/libgsm.so.1.0.19 +-> caching - new mapping +=> found 352 unwind entries for /usr/lib64/libgsm.so.1.0.19 low pc 2020 high pc bbef +- current chunk size 352 +- rest of chunk size 0 +- lowindex [ 87496 : 87848 ] highIndex +- executable 404 mapping /usr/lib64/libgsm.so.1.0.19 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3087848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 405 buildId 3c4a279d030ea72be9a41649f31114395d89ea02 exec /usr/lib64/libupower-glib.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3087848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 405 buildId c48020eaa2251f353e7001f5941ec45b93a07441 exec /usr/lib64/libgnome-bluetooth-3.0.so.13.2.0 +-> caching - new mapping +=> found 1839 unwind entries for /usr/lib64/libgnome-bluetooth-3.0.so.13.2.0 low pc 7020 high pc 144a3 +- current chunk size 1839 +- rest of chunk size 0 +- lowindex [ 87848 : 89687 ] highIndex +- executable 405 mapping /usr/lib64/libgnome-bluetooth-3.0.so.13.2.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3089687 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 406 buildId ea4a8e0748910e18c1f1da95fb8d1d8e29eea0ee exec /usr/lib64/libgweather-4.so.0.0.0 +-> caching - new mapping +=> found 1991 unwind entries for /usr/lib64/libgweather-4.so.0.0.0 low pc b020 high pc 1d038 +- current chunk size 1991 +- rest of chunk size 0 +- lowindex [ 89687 : 91678 ] highIndex +- executable 406 mapping /usr/lib64/libgweather-4.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 12 , total entries: 3091678 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 407 buildId 9a679d77a74238925c05781c6f7c114fa413d371 exec /usr/lib64/libnvidia-eglcore.so.525.78.01 +-> caching - new mapping +=> found 614177 unwind entries for /usr/lib64/libnvidia-eglcore.so.525.78.01 low pc 2bd020 high pc 17911da +- current chunk size 158322 +- rest of chunk size 455855 +- lowindex [ 91678 : 250000 ] highIndex +- executable 407 mapping /usr/lib64/libnvidia-eglcore.so.525.78.01 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 250000 +- rest of chunk size 205855 +- lowindex [ 0 : 250000 ] highIndex +- executable 407 mapping /usr/lib64/libnvidia-eglcore.so.525.78.01 shard 1 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 205855 +- rest of chunk size 0 +- lowindex [ 0 : 205855 ] highIndex +- executable 407 mapping /usr/lib64/libnvidia-eglcore.so.525.78.01 shard 2 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3705855 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 408 buildId 4e12c4bfd3608b4e4b69679dbd61bed6e7fd1ab4 exec /usr/lib64/libasyncns.so.0.3.1 +-> caching - new mapping +=> found 229 unwind entries for /usr/lib64/libasyncns.so.0.3.1 low pc 2020 high pc 4a4c +- current chunk size 229 +- rest of chunk size 0 +- lowindex [ 205855 : 206084 ] highIndex +- executable 408 mapping /usr/lib64/libasyncns.so.0.3.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3706084 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 409 buildId 515d824ffa4c467cb843168c82597fbc17edf093 exec /usr/lib64/libgeocode-glib.so.0.0.0 +-> caching - new mapping +=> found 2150 unwind entries for /usr/lib64/libgeocode-glib.so.0.0.0 low pc 7020 high pc 13990 +- current chunk size 2150 +- rest of chunk size 0 +- lowindex [ 206084 : 208234 ] highIndex +- executable 409 mapping /usr/lib64/libgeocode-glib.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3708234 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 410 buildId 376817f9b919923a3730a00e55d5f04c6b5e752a exec /usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so +-> caching - new mapping +=> found 53 unwind entries for /usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so low pc 1020 high pc 1691 +- current chunk size 53 +- rest of chunk size 0 +- lowindex [ 208234 : 208287 ] highIndex +- executable 410 mapping /usr/lib64/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3708287 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 411 buildId 38a393ce1f7d532dcfdc3a06a8b5457876ff2ee1 exec /usr/lib64/libgdm.so.1.0.0 +-> caching - new mapping +=> found 4845 unwind entries for /usr/lib64/libgdm.so.1.0.0 low pc c020 high pc 22be0 +- current chunk size 4845 +- rest of chunk size 0 +- lowindex [ 208287 : 213132 ] highIndex +- executable 411 mapping /usr/lib64/libgdm.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3713132 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 412 buildId dd681a0c8deafb5b74b4db22f1660bfe9a335bf7 exec /usr/lib64/libgeoclue-2.so.0.0.0 +-> caching - new mapping +=> found 3129 unwind entries for /usr/lib64/libgeoclue-2.so.0.0.0 low pc 8020 high pc 16d3b +- current chunk size 3129 +- rest of chunk size 0 +- lowindex [ 213132 : 216261 ] highIndex +- executable 412 mapping /usr/lib64/libgeoclue-2.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3716261 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 413 buildId 318a00a117864007db35ca4d21e1e0fd498068c7 exec /usr/lib64/libibus-1.0.so.5.0.526 +-> caching - new mapping +=> found 8686 unwind entries for /usr/lib64/libibus-1.0.so.5.0.526 low pc 11020 high pc 47277 +- current chunk size 8686 +- rest of chunk size 0 +- lowindex [ 216261 : 224947 ] highIndex +- executable 413 mapping /usr/lib64/libibus-1.0.so.5.0.526 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3724947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 414 buildId beaaa27fe0fd81efbebebcb4f685bf0191b3ccd6 exec /usr/lib64/libpulse-mainloop-glib.so.0.0.6 +-> caching - new mapping +=> found 210 unwind entries for /usr/lib64/libpulse-mainloop-glib.so.0.0.6 low pc 1020 high pc 2bf3 +- current chunk size 210 +- rest of chunk size 0 +- lowindex [ 224947 : 225157 ] highIndex +- executable 414 mapping /usr/lib64/libpulse-mainloop-glib.so.0.0.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3725157 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3725157 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3725157 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3725157 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 415 buildId 878a309c94f8281cf7db4841f94d5007a70d901d exec /usr/lib64/libmalcontent-0.so.0.10.3 +-> caching - new mapping +=> found 993 unwind entries for /usr/lib64/libmalcontent-0.so.0.10.3 low pc 4020 high pc b65d +- current chunk size 993 +- rest of chunk size 0 +- lowindex [ 225157 : 226150 ] highIndex +- executable 415 mapping /usr/lib64/libmalcontent-0.so.0.10.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3726150 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3726150 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3726150 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3726150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 416 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3726150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 416 buildId cca2849f9a9455b56a137dec9e8accc8a5961c54 exec /usr/lib64/libsoup-2.4.so.1.11.2 +-> caching - new mapping +=> found 15770 unwind entries for /usr/lib64/libsoup-2.4.so.1.11.2 low pc 1d020 high pc 78894 +- current chunk size 15770 +- rest of chunk size 0 +- lowindex [ 226150 : 241920 ] highIndex +- executable 416 mapping /usr/lib64/libsoup-2.4.so.1.11.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 417 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 417 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 417 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 417 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 417 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 417 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 417 buildId 6c0cf7ed0ae68dfd766f9b51f0fafec148f26f48 exec /usr/lib64/libpsl.so.5.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3741920 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 417 buildId 1598983e2698ad24634fab9b3ec527942f9da036 exec /usr/lib64/libnvidia-allocator.so.525.78.01 +-> caching - new mapping +=> found 3018 unwind entries for /usr/lib64/libnvidia-allocator.so.525.78.01 low pc 2910 high pc 17ebf +- current chunk size 3018 +- rest of chunk size 0 +- lowindex [ 241920 : 244938 ] highIndex +- executable 417 mapping /usr/lib64/libnvidia-allocator.so.525.78.01 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3744938 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 418 buildId 3f879bc63883d2539a6ee04779c6b524d0667478 exec /usr/lib64/spa-0.2/support/libspa-journal.so +-> caching - new mapping +=> found 182 unwind entries for /usr/lib64/spa-0.2/support/libspa-journal.so low pc 1020 high pc 2a1c +- current chunk size 182 +- rest of chunk size 0 +- lowindex [ 244938 : 245120 ] highIndex +- executable 418 mapping /usr/lib64/spa-0.2/support/libspa-journal.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3745120 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 419 buildId a825e50a0a36ad9cc5697d5314b15b48a41b815d exec /usr/lib64/spa-0.2/support/libspa-support.so +-> caching - new mapping +=> found 1968 unwind entries for /usr/lib64/spa-0.2/support/libspa-support.so low pc 3020 high pc 16c9e +- current chunk size 1968 +- rest of chunk size 0 +- lowindex [ 245120 : 247088 ] highIndex +- executable 419 mapping /usr/lib64/spa-0.2/support/libspa-support.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3747088 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 420 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3747088 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 420 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 14 , total entries: 3747088 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 420 buildId 4cb255019d26890bf60a248a1c4a4f552959b57e exec /usr/lib64/libnvidia-glsi.so.525.78.01 +-> caching - new mapping +=> found 16817 unwind entries for /usr/lib64/libnvidia-glsi.so.525.78.01 low pc ffd0 high pc 6d05a +- current chunk size 2912 +- rest of chunk size 13905 +- lowindex [ 247088 : 250000 ] highIndex +- executable 420 mapping /usr/lib64/libnvidia-glsi.so.525.78.01 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 13905 +- rest of chunk size 0 +- lowindex [ 0 : 13905 ] highIndex +- executable 420 mapping /usr/lib64/libnvidia-glsi.so.525.78.01 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3763905 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 421 buildId 7696801e86c9ef71487792958a46999f189b6ab6 exec /usr/lib64/libEGL_nvidia.so.525.78.01 +-> caching - new mapping +=> found 30085 unwind entries for /usr/lib64/libEGL_nvidia.so.525.78.01 low pc 32b10 high pc c11e9 +- current chunk size 30085 +- rest of chunk size 0 +- lowindex [ 13905 : 43990 ] highIndex +- executable 421 mapping /usr/lib64/libEGL_nvidia.so.525.78.01 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3793990 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 422 buildId 930360dde486956810e2a4ab67efae781f463ced exec /usr/lib64/libxshmfence.so.1.0.0 +-> caching - new mapping +=> found 39 unwind entries for /usr/lib64/libxshmfence.so.1.0.0 low pc 1020 high pc 1440 +- current chunk size 39 +- rest of chunk size 0 +- lowindex [ 43990 : 44029 ] highIndex +- executable 422 mapping /usr/lib64/libxshmfence.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3794029 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 423 buildId e9f20bf38edb68991a8672dcbfe694bad0309126 exec /usr/lib64/libxcb-sync.so.1.0.0 +-> caching - new mapping +=> found 298 unwind entries for /usr/lib64/libxcb-sync.so.1.0.0 low pc 3020 high pc 55a6 +- current chunk size 298 +- rest of chunk size 0 +- lowindex [ 44029 : 44327 ] highIndex +- executable 423 mapping /usr/lib64/libxcb-sync.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3794327 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 424 buildId d0c4181fb8966d4bebc5b0bd27182a6fba6709b4 exec /usr/lib64/libxcb-dri3.so.0.0.0 +-> caching - new mapping +=> found 119 unwind entries for /usr/lib64/libxcb-dri3.so.0.0.0 low pc 2020 high pc 31f7 +- current chunk size 119 +- rest of chunk size 0 +- lowindex [ 44327 : 44446 ] highIndex +- executable 424 mapping /usr/lib64/libxcb-dri3.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3794446 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 425 buildId b54318cb38eca053e3365fe9797ab9c05834878e exec /usr/lib64/libxcb-xfixes.so.0.0.0 +-> caching - new mapping +=> found 320 unwind entries for /usr/lib64/libxcb-xfixes.so.0.0.0 low pc 3020 high pc 5a3e +- current chunk size 320 +- rest of chunk size 0 +- lowindex [ 44446 : 44766 ] highIndex +- executable 425 mapping /usr/lib64/libxcb-xfixes.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3794766 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 426 buildId b557629bc47fea6de9edb4534378f26906bc5d80 exec /usr/lib64/libxcb-dri2.so.0.0.0 +-> caching - new mapping +=> found 157 unwind entries for /usr/lib64/libxcb-dri2.so.0.0.0 low pc 2020 high pc 3429 +- current chunk size 157 +- rest of chunk size 0 +- lowindex [ 44766 : 44923 ] highIndex +- executable 426 mapping /usr/lib64/libxcb-dri2.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3794923 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 427 buildId a36e739193712f8d050fb716956c15ed76c68426 exec /usr/lib64/libglapi.so.0.0.0 +-> caching - new mapping +=> found 144 unwind entries for /usr/lib64/libglapi.so.0.0.0 low pc d020 high pc 1ab3b +- current chunk size 144 +- rest of chunk size 0 +- lowindex [ 44923 : 45067 ] highIndex +- executable 427 mapping /usr/lib64/libglapi.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3795067 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 428 buildId 996057eb24d45053568e1bfd33d91b25e279be42 exec /usr/lib64/libEGL_mesa.so.0.0.0 +-> caching - new mapping +=> found 6183 unwind entries for /usr/lib64/libEGL_mesa.so.0.0.0 low pc a020 high pc 30e82 +- current chunk size 6183 +- rest of chunk size 0 +- lowindex [ 45067 : 51250 ] highIndex +- executable 428 mapping /usr/lib64/libEGL_mesa.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3801250 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 429 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3801250 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 429 buildId e55a074882c4c9357934efcf295654ea5badcce1 exec /usr/lib64/libxcb-present.so.0.0.0 +-> caching - new mapping +=> found 58 unwind entries for /usr/lib64/libxcb-present.so.0.0.0 low pc 1020 high pc 1a1a +- current chunk size 58 +- rest of chunk size 0 +- lowindex [ 51250 : 51308 ] highIndex +- executable 429 mapping /usr/lib64/libxcb-present.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3801308 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 430 buildId ff26a4ec5e8f78f0597ebf36c07901e6de2e0d65 exec /usr/lib64/libnvidia-egl-gbm.so.1.1.0 +-> caching - new mapping +=> found 335 unwind entries for /usr/lib64/libnvidia-egl-gbm.so.1.1.0 low pc 2020 high pc 471b +- current chunk size 335 +- rest of chunk size 0 +- lowindex [ 51308 : 51643 ] highIndex +- executable 430 mapping /usr/lib64/libnvidia-egl-gbm.so.1.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3801643 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 431 buildId 7b6ac05a0be985d9557e8d0273c4b3edeb6dbce7 exec /usr/lib64/libnvidia-egl-wayland.so.1.1.11 +-> caching - new mapping +=> found 1051 unwind entries for /usr/lib64/libnvidia-egl-wayland.so.1.1.11 low pc 4020 high pc b8e2 +- current chunk size 1051 +- rest of chunk size 0 +- lowindex [ 51643 : 52694 ] highIndex +- executable 431 mapping /usr/lib64/libnvidia-egl-wayland.so.1.1.11 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3802694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 432 buildId b03d994f5b8bd7fafb69ecd69d1ba57f898cf085 exec /usr/lib64/libdl.so.2 +-> caching - new mapping +=> found 5 unwind entries for /usr/lib64/libdl.so.2 low pc 1020 high pc 1115 +- current chunk size 5 +- rest of chunk size 0 +- lowindex [ 52694 : 52699 ] highIndex +- executable 432 mapping /usr/lib64/libdl.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3802699 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 433 buildId 53b0d3795a292fc05056188a8b579ac30570b1ec exec /usr/lib64/librt.so.1 +-> caching - new mapping +=> found 33 unwind entries for /usr/lib64/librt.so.1 low pc 1020 high pc 1285 +- current chunk size 33 +- rest of chunk size 0 +- lowindex [ 52699 : 52732 ] highIndex +- executable 433 mapping /usr/lib64/librt.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3802732 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 434 buildId 137cc354b88e1106292b5c35ae6a93ad1cca530b exec /usr/lib64/libpthread.so.0 +-> caching - new mapping +=> found 5 unwind entries for /usr/lib64/libpthread.so.0 low pc 1020 high pc 1115 +- current chunk size 5 +- rest of chunk size 0 +- lowindex [ 52732 : 52737 ] highIndex +- executable 434 mapping /usr/lib64/libpthread.so.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3802737 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 435 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3802737 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 435 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3802737 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 435 buildId 51b01a31c9c7cf0432f1ab32da1b3a324c6e75b6 exec /usr/lib64/libogg.so.0.8.5 +-> caching - new mapping +=> found 353 unwind entries for /usr/lib64/libogg.so.0.8.5 low pc 2020 high pc 48b9 +- current chunk size 353 +- rest of chunk size 0 +- lowindex [ 52737 : 53090 ] highIndex +- executable 435 mapping /usr/lib64/libogg.so.0.8.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3803090 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 436 buildId 54cf4100a162e93bf55de9202edd4e8ff274525f exec /usr/lib64/libvorbis.so.0.4.9 +-> caching - new mapping +=> found 1541 unwind entries for /usr/lib64/libvorbis.so.0.4.9 low pc 4020 high pc 1bc9f +- current chunk size 1541 +- rest of chunk size 0 +- lowindex [ 53090 : 54631 ] highIndex +- executable 436 mapping /usr/lib64/libvorbis.so.0.4.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 345872e1fd9fc345eccc8344049d028164796f36 exec /usr/lib64/libhogweed.so.6.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 15554c81e3ea5792d76ebfe663a5354944e3a0ab exec /usr/lib64/libnettle.so.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 4407f7333e5bcb96a54db0c939dd19a770c73096 exec /usr/lib64/libtasn1.so.6.6.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId d13c41b5c9134427a05badbfeb99349c994802fe exec /usr/lib64/libevdev.so.2.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804631 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 437 buildId 69e850b5b82eaa9fcb658d26ec1e07a570b95578 exec /usr/lib64/libmtdev.so.1.0.0 +-> caching - new mapping +=> found 248 unwind entries for /usr/lib64/libmtdev.so.1.0.0 low pc 1020 high pc 381b +- current chunk size 248 +- rest of chunk size 0 +- lowindex [ 54631 : 54879 ] highIndex +- executable 437 mapping /usr/lib64/libmtdev.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804879 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 438 buildId a5009041f85b1ec5b58f06105aeb0319524ef526 exec /usr/lib64/libuuid.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3804879 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 438 buildId 2ef6238234379420d2ff245f6d64c596ed7c7dad exec /usr/lib64/libxcb-xkb.so.1.0.0 +-> caching - new mapping +=> found 1482 unwind entries for /usr/lib64/libxcb-xkb.so.1.0.0 low pc a020 high pc 16d49 +- current chunk size 1482 +- rest of chunk size 0 +- lowindex [ 54879 : 56361 ] highIndex +- executable 438 mapping /usr/lib64/libxcb-xkb.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3806361 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 439 buildId f780db1b3e9dbfc97c4624e09a998a7eb41939a0 exec /usr/lib64/libGLX.so.0.0.0 +-> caching - new mapping +=> found 1089 unwind entries for /usr/lib64/libGLX.so.0.0.0 low pc 3020 high pc 1cc41 +- current chunk size 1089 +- rest of chunk size 0 +- lowindex [ 56361 : 57450 ] highIndex +- executable 439 mapping /usr/lib64/libGLX.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3807450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 440 buildId 6ed08e90d0b6793be5e3141922608afe260c340d exec /usr/lib64/libGLdispatch.so.0.0.0 +-> caching - new mapping +=> found 347 unwind entries for /usr/lib64/libGLdispatch.so.0.0.0 low pc 41020 high pc 43057 +- current chunk size 347 +- rest of chunk size 0 +- lowindex [ 57450 : 57797 ] highIndex +- executable 440 mapping /usr/lib64/libGLdispatch.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3807797 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 441 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3807797 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 441 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3807797 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 441 buildId 523c7e4d96f31a695088db2678bc09ed5e02cc6e exec /usr/lib64/libxcb-util.so.1.0.0 +-> caching - new mapping +=> found 176 unwind entries for /usr/lib64/libxcb-util.so.1.0.0 low pc 3020 high pc 4170 +- current chunk size 176 +- rest of chunk size 0 +- lowindex [ 57797 : 57973 ] highIndex +- executable 441 mapping /usr/lib64/libxcb-util.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3807973 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 442 buildId 7ebf2a59a950b8d7a761e390ac5797777522309c exec /usr/lib64/libtdb.so.1.4.7 +-> caching - new mapping +=> found 1426 unwind entries for /usr/lib64/libtdb.so.1.4.7 low pc 4020 high pc 10dad +- current chunk size 1426 +- rest of chunk size 0 +- lowindex [ 57973 : 59399 ] highIndex +- executable 442 mapping /usr/lib64/libtdb.so.1.4.7 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3809399 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 443 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3809399 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 443 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3809399 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 443 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3809399 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 443 buildId 8e40305f04041f14ebbb123182f15f67c4cec0af exec /usr/lib64/libgnutls.so.30.34.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3809399 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 443 buildId 9edcbed4921b56b70cc85d0de957223ffb025f62 exec /usr/lib64/libltdl.so.7.3.2 +-> caching - new mapping +=> found 652 unwind entries for /usr/lib64/libltdl.so.7.3.2 low pc 2020 high pc 6b99 +- current chunk size 652 +- rest of chunk size 0 +- lowindex [ 59399 : 60051 ] highIndex +- executable 443 mapping /usr/lib64/libltdl.so.7.3.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810051 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 444 buildId 10808b8db3841e5245e38230e4b71ed26ec12929 exec /usr/lib64/libvorbisfile.so.3.3.8 +-> caching - new mapping +=> found 493 unwind entries for /usr/lib64/libvorbisfile.so.3.3.8 low pc 2020 high pc 6d70 +- current chunk size 493 +- rest of chunk size 0 +- lowindex [ 60051 : 60544 ] highIndex +- executable 444 mapping /usr/lib64/libvorbisfile.so.3.3.8 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 1532b1808d5b274f11f88113949be033011ff02b exec /usr/lib64/libxkbregistry.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3810544 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 445 buildId 44ea3219dc031d2bf0d71313b0e3361933160dbc exec /usr/lib64/libgck-1.so.0.0.0 +-> caching - new mapping +=> found 4826 unwind entries for /usr/lib64/libgck-1.so.0.0.0 low pc 9020 high pc 2517e +- current chunk size 4826 +- rest of chunk size 0 +- lowindex [ 60544 : 65370 ] highIndex +- executable 445 mapping /usr/lib64/libgck-1.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815370 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 446 buildId ad59d166d3786e9925238084221abef1a9ec2d99 exec /usr/lib64/libGLESv2.so.2.1.0 +-> caching - new mapping +=> found 76 unwind entries for /usr/lib64/libGLESv2.so.2.1.0 low pc 8020 high pc 8663 +- current chunk size 76 +- rest of chunk size 0 +- lowindex [ 65370 : 65446 ] highIndex +- executable 446 mapping /usr/lib64/libGLESv2.so.2.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3815446 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 447 buildId 30ded7af3a15a9e35529e1e113083d5d5f0c601a exec /usr/lib64/libgbm.so.1.0.0 +-> caching - new mapping +=> found 910 unwind entries for /usr/lib64/libgbm.so.1.0.0 low pc 3020 high pc a732 +- current chunk size 910 +- rest of chunk size 0 +- lowindex [ 65446 : 66356 ] highIndex +- executable 447 mapping /usr/lib64/libgbm.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3816356 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 448 buildId 69f99cbdbe10ca273aded1f1e0687fda61681176 exec /usr/lib64/libinput.so.10.13.0 +-> caching - new mapping +=> found 5328 unwind entries for /usr/lib64/libinput.so.10.13.0 low pc a020 high pc 3dffd +- current chunk size 5328 +- rest of chunk size 0 +- lowindex [ 66356 : 71684 ] highIndex +- executable 448 mapping /usr/lib64/libinput.so.10.13.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3821684 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 449 buildId 3f06f006264aa930fb6d7f3fa4e2ebd3ddb4544e exec /usr/lib64/libdrm.so.2.4.0 +-> caching - new mapping +=> found 1613 unwind entries for /usr/lib64/libdrm.so.2.4.0 low pc 5020 high pc 10381 +- current chunk size 1613 +- rest of chunk size 0 +- lowindex [ 71684 : 73297 ] highIndex +- executable 449 mapping /usr/lib64/libdrm.so.2.4.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3823297 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 450 buildId 1bea7bf939ad0327c4701659b5cea3825b3c0ec4 exec /usr/lib64/libSM.so.6.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3823297 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 450 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3823297 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 450 buildId d063787b0fc1c22d4e07ae2948df4a615b5acecb exec /usr/lib64/libxcb-res.so.0.0.0 +-> caching - new mapping +=> found 114 unwind entries for /usr/lib64/libxcb-res.so.0.0.0 low pc 2020 high pc 2d49 +- current chunk size 114 +- rest of chunk size 0 +- lowindex [ 73297 : 73411 ] highIndex +- executable 450 mapping /usr/lib64/libxcb-res.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3823411 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 451 buildId 3e94728465183f7751e6a1d53ea393cc11cb8004 exec /usr/lib64/libxcb-randr.so.0.1.0 +-> caching - new mapping +=> found 740 unwind entries for /usr/lib64/libxcb-randr.so.0.1.0 low pc 7020 high pc c727 +- current chunk size 740 +- rest of chunk size 0 +- lowindex [ 73411 : 74151 ] highIndex +- executable 451 mapping /usr/lib64/libxcb-randr.so.0.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3824151 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 452 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3824151 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 452 buildId 5e7722f04c94b190d576f123d2e078c4be4247da exec /usr/lib64/libX11-xcb.so.1.0.0 +-> caching - new mapping +=> found 6 unwind entries for /usr/lib64/libX11-xcb.so.1.0.0 low pc 1020 high pc 112f +- current chunk size 6 +- rest of chunk size 0 +- lowindex [ 74151 : 74157 ] highIndex +- executable 452 mapping /usr/lib64/libX11-xcb.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3824157 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 453 buildId e9e99444598d67ff8514b6adfb390156611311d6 exec /usr/lib64/libxkbfile.so.1.0.2 +-> caching - new mapping +=> found 2123 unwind entries for /usr/lib64/libxkbfile.so.1.0.2 low pc 5020 high pc 1f303 +- current chunk size 2123 +- rest of chunk size 0 +- lowindex [ 74157 : 76280 ] highIndex +- executable 453 mapping /usr/lib64/libxkbfile.so.1.0.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3826280 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 454 buildId 383ecd23693dfee098bd892eb64bf7c33c07f7e2 exec /usr/lib64/libpipewire-0.3.so.0.363.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3826280 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 454 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3826280 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 454 buildId db067425426dbac492af277b7f1ce4b049182f87 exec /usr/lib64/libxkbcommon-x11.so.0.0.0 +-> caching - new mapping +=> found 155 unwind entries for /usr/lib64/libxkbcommon-x11.so.0.0.0 low pc 3020 high pc 665a +- current chunk size 155 +- rest of chunk size 0 +- lowindex [ 76280 : 76435 ] highIndex +- executable 454 mapping /usr/lib64/libxkbcommon-x11.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3826435 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 455 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3826435 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 455 buildId a7612bd9872fadde51b7d00281e4d3a0e0e12561 exec /usr/lib64/libICE.so.6.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3826435 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 455 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3826435 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 455 buildId 9d32c9d0a843f8da507e226f48f211b4191df9c3 exec /usr/lib64/libstartup-notification-1.so.0.0.0 +-> caching - new mapping +=> found 659 unwind entries for /usr/lib64/libstartup-notification-1.so.0.0.0 low pc 3020 high pc 6f7f +- current chunk size 659 +- rest of chunk size 0 +- lowindex [ 76435 : 77094 ] highIndex +- executable 455 mapping /usr/lib64/libstartup-notification-1.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3827094 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 456 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3827094 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 456 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3827094 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 456 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3827094 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 456 buildId c63b1bf26abe8dc5021d958a0aadeaaa0317a934 exec /usr/lib64/libcanberra.so.0.2.5 +-> caching - new mapping +=> found 1701 unwind entries for /usr/lib64/libcanberra.so.0.2.5 low pc 3020 high pc d4cf +- current chunk size 1701 +- rest of chunk size 0 +- lowindex [ 77094 : 78795 ] highIndex +- executable 456 mapping /usr/lib64/libcanberra.so.0.2.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3828795 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 457 buildId 29d1f75aa6f0307edfe54a7156a8877ce736618c exec /usr/lib64/libwacom.so.9.0.0 +-> caching - new mapping +=> found 419 unwind entries for /usr/lib64/libwacom.so.9.0.0 low pc 4020 high pc 9f99 +- current chunk size 419 +- rest of chunk size 0 +- lowindex [ 78795 : 79214 ] highIndex +- executable 457 mapping /usr/lib64/libwacom.so.9.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3829214 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 458 buildId 7bca328e00084e667048cc7844d7a355c2840c2f exec /usr/lib64/libXtst.so.6.1.0 +-> caching - new mapping +=> found 544 unwind entries for /usr/lib64/libXtst.so.6.1.0 low pc 2020 high pc 4cfb +- current chunk size 544 +- rest of chunk size 0 +- lowindex [ 79214 : 79758 ] highIndex +- executable 458 mapping /usr/lib64/libXtst.so.6.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3829758 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 459 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3829758 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 459 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3829758 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 459 buildId 1cbc6f811d3526c7bc521b126de8a2fba8e7c57e exec /usr/lib64/libGL.so.1.7.0 +-> caching - new mapping +=> found 1386 unwind entries for /usr/lib64/libGL.so.1.7.0 low pc 43020 high pc 45ea1 +- current chunk size 1386 +- rest of chunk size 0 +- lowindex [ 79758 : 81144 ] highIndex +- executable 459 mapping /usr/lib64/libGL.so.1.7.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3831144 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 460 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3831144 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 460 buildId 8d3773b4ff0382951bd3c72ac05aaacf988f8663 exec /usr/lib64/libmozjs-91.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3831144 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 460 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3831144 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 460 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3831144 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 460 buildId ee16729875b0c8a80da63541838048a92e489705 exec /usr/lib64/libEGL.so.1.1.0 +-> caching - new mapping +=> found 1278 unwind entries for /usr/lib64/libEGL.so.1.1.0 low pc 3020 high pc bf45 +- current chunk size 1278 +- rest of chunk size 0 +- lowindex [ 81144 : 82422 ] highIndex +- executable 460 mapping /usr/lib64/libEGL.so.1.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3832422 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 461 buildId 6400a9ff5aacf24bd96e2ae96b028f60a8ac91f7 exec /usr/lib64/libreadline.so.8.2 +-> caching - new mapping +=> found 4787 unwind entries for /usr/lib64/libreadline.so.8.2 low pc 17020 high pc 45638 +- current chunk size 4787 +- rest of chunk size 0 +- lowindex [ 82422 : 87209 ] highIndex +- executable 461 mapping /usr/lib64/libreadline.so.8.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3837209 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 462 buildId 7ec83141645bfde8b4595371e01d67265136cc28 exec /usr/lib64/libsecret-1.so.0.0.0 +-> caching - new mapping +=> found 11066 unwind entries for /usr/lib64/libsecret-1.so.0.0.0 low pc 13020 high pc 47a14 +- current chunk size 11066 +- rest of chunk size 0 +- lowindex [ 87209 : 98275 ] highIndex +- executable 462 mapping /usr/lib64/libsecret-1.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3848275 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 463 buildId a30b9d80583bc9b082ed0748c60f9e870b567cd6 exec /usr/lib64/libnm.so.0.1.0 +-> caching - new mapping +=> found 29294 unwind entries for /usr/lib64/libnm.so.0.1.0 low pc 44020 high pc 106160 +- current chunk size 29294 +- rest of chunk size 0 +- lowindex [ 98275 : 127569 ] highIndex +- executable 463 mapping /usr/lib64/libnm.so.0.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3877569 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 464 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3877569 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 464 buildId dfabc79f8dd0d0bb993e8b4dc2b597a41443b7f3 exec /usr/lib64/libgcr-base-3.so.1.0.0 +-> caching - new mapping +=> found 11145 unwind entries for /usr/lib64/libgcr-base-3.so.1.0.0 low pc 23020 high pc 6cbae +- current chunk size 11145 +- rest of chunk size 0 +- lowindex [ 127569 : 138714 ] highIndex +- executable 464 mapping /usr/lib64/libgcr-base-3.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3888714 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 465 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3888714 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 465 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3888714 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 465 buildId f16ca87c7fc78a91cb0a0c517144cae855d9cdde exec /usr/lib64/libgnome-desktop-3.so.19.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3888714 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 465 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3888714 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 465 buildId 7684c60922f0501af04947c256b39fd14863af4c exec /usr/lib64/mutter-10/libmutter-cogl-10.so.0.0.0 +-> caching - new mapping +=> found 11501 unwind entries for /usr/lib64/mutter-10/libmutter-cogl-10.so.0.0.0 low pc 15020 high pc 66dce +- current chunk size 11501 +- rest of chunk size 0 +- lowindex [ 138714 : 150215 ] highIndex +- executable 465 mapping /usr/lib64/mutter-10/libmutter-cogl-10.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3900215 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 466 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3900215 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 466 buildId cbcf35e0e7b9d7cdd603607bbebb8e64fc2febf1 exec /usr/lib64/libmutter-10.so.0.0.0 +-> caching - new mapping +=> found 46661 unwind entries for /usr/lib64/libmutter-10.so.0.0.0 low pc 4c020 high pc 19a9ce +- current chunk size 46661 +- rest of chunk size 0 +- lowindex [ 150215 : 196876 ] highIndex +- executable 466 mapping /usr/lib64/libmutter-10.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3946876 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 467 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3946876 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 467 buildId 29f412aeaea5147409bacd5dc113f45e81bff8cb exec /usr/lib64/libwayland-server.so.0.21.0 +-> caching - new mapping +=> found 1147 unwind entries for /usr/lib64/libwayland-server.so.0.21.0 low pc 7020 high pc edb4 +- current chunk size 1147 +- rest of chunk size 0 +- lowindex [ 196876 : 198023 ] highIndex +- executable 467 mapping /usr/lib64/libwayland-server.so.0.21.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3948023 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 468 buildId 293fb939e48da15235b4f5edd45e0c495015db97 exec /usr/lib64/libgraphene-1.0.so.0.1000.6 +-> caching - new mapping +=> found 1957 unwind entries for /usr/lib64/libgraphene-1.0.so.0.1000.6 low pc 8020 high pc 16403 +- current chunk size 1957 +- rest of chunk size 0 +- lowindex [ 198023 : 199980 ] highIndex +- executable 468 mapping /usr/lib64/libgraphene-1.0.so.0.1000.6 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3949980 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 469 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3949980 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 469 buildId ac13ce4da675d0bb5cf38949a474d11ded51c54a exec /usr/lib64/mutter-10/libmutter-clutter-10.so.0.0.0 +-> caching - new mapping +=> found 26075 unwind entries for /usr/lib64/mutter-10/libmutter-clutter-10.so.0.0.0 low pc 2e020 high pc c4fe1 +- current chunk size 26075 +- rest of chunk size 0 +- lowindex [ 199980 : 226055 ] highIndex +- executable 469 mapping /usr/lib64/mutter-10/libmutter-clutter-10.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3976055 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 470 buildId 4a42afc965a321b44209671264a8087ca580e065 exec /usr/lib64/libgjs.so.0.0.0 +-> caching - new mapping +=> found 11550 unwind entries for /usr/lib64/libgjs.so.0.0.0 low pc 1d020 high pc c5d7d +- current chunk size 11550 +- rest of chunk size 0 +- lowindex [ 226055 : 237605 ] highIndex +- executable 470 mapping /usr/lib64/libgjs.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3987605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 471 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3987605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 471 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3987605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 471 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3987605 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 471 buildId 958567ad2c59dc9dedf49681a130232e58a8c9b7 exec /usr/lib64/gnome-shell/libst-1.0.so +-> caching - new mapping +=> found 11825 unwind entries for /usr/lib64/gnome-shell/libst-1.0.so low pc 1a020 high pc 6a576 +- current chunk size 11825 +- rest of chunk size 0 +- lowindex [ 237605 : 249430 ] highIndex +- executable 471 mapping /usr/lib64/gnome-shell/libst-1.0.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3999430 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 472 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3999430 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 472 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 15 , total entries: 3999430 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 472 buildId 682eec324c31ba8a7e317163813b2301dd458053 exec /usr/lib64/gnome-shell/libgnome-shell.so +-> caching - new mapping +=> found 6727 unwind entries for /usr/lib64/gnome-shell/libgnome-shell.so low pc 17020 high pc 3f2c9 +- current chunk size 570 +- rest of chunk size 6157 +- lowindex [ 249430 : 250000 ] highIndex +- executable 472 mapping /usr/lib64/gnome-shell/libgnome-shell.so shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 6157 +- rest of chunk size 0 +- lowindex [ 0 : 6157 ] highIndex +- executable 472 mapping /usr/lib64/gnome-shell/libgnome-shell.so shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4006157 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 473 buildId 38f3b91b67f218894a5e74ca6329a0412abe3df7 exec /usr/lib64/libpolkit-agent-1.so.0.0.0 +-> caching - new mapping +=> found 580 unwind entries for /usr/lib64/libpolkit-agent-1.so.0.0.0 low pc 4020 high pc 87bc +- current chunk size 580 +- rest of chunk size 0 +- lowindex [ 6157 : 6737 ] highIndex +- executable 473 mapping /usr/lib64/libpolkit-agent-1.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4006737 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 474 buildId 83353a1c5afce1b59c97de8b1fc596169f06ddb6 exec /usr/lib64/gnome-shell/libgnome-shell-menu.so +-> caching - new mapping +=> found 647 unwind entries for /usr/lib64/gnome-shell/libgnome-shell-menu.so low pc 3020 high pc 5e33 +- current chunk size 647 +- rest of chunk size 0 +- lowindex [ 6737 : 7384 ] highIndex +- executable 474 mapping /usr/lib64/gnome-shell/libgnome-shell-menu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007384 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 475 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007384 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 475 buildId 787ec16b76d1d533d95a328b5f368521fbd6ad8c exec /usr/lib64/libgirepository-1.0.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007384 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 475 buildId 0a1f6cfad91a79f91e9fdd12c410717e0fe67295 exec /usr/lib64/mutter-10/libmutter-cogl-pango-10.so.0.0.0 +-> caching - new mapping +=> found 479 unwind entries for /usr/lib64/mutter-10/libmutter-cogl-pango-10.so.0.0.0 low pc 4020 high pc 7bb0 +- current chunk size 479 +- rest of chunk size 0 +- lowindex [ 7384 : 7863 ] highIndex +- executable 475 mapping /usr/lib64/mutter-10/libmutter-cogl-pango-10.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 476 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 476 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 476 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007863 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 476 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007863 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007863 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.162959162Z caller=cpu.go:495 msg="adding unwind tables" pid=1659 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4007863 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563e7a3b4000, StartAddr: 0x563e7a3b6000, EndAddr: 0x563e7a3b9000, Executable:/usr/libexec/at-spi-bus-launcher} +[info] adding memory mappings in for executable with ID 476 buildId 0396673a4c32652009291dc3d8fd5f42634b9bef exec /usr/libexec/at-spi-bus-launcher +-> caching - new mapping +=> found 259 unwind entries for /usr/libexec/at-spi-bus-launcher low pc 2020 high pc 4669 +- current chunk size 259 +- rest of chunk size 0 +- lowindex [ 7863 : 8122 ] highIndex +- executable 476 mapping /usr/libexec/at-spi-bus-launcher shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.166364788Z caller=cpu.go:495 msg="adding unwind tables" pid=1666 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5583d9a08000, StartAddr: 0x5583d9a11000, EndAddr: 0x5583d9a32000, Executable:/usr/bin/dbus-daemon} +[info] adding memory mappings in for executable with ID 477 buildId 209a3832a50d45d35aeae2ce9490047bce766a77 exec /usr/bin/dbus-daemon +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.168868785Z caller=cpu.go:495 msg="adding unwind tables" pid=1676 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4008122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 477 buildId cded95851462c4aa41df636b43917db3474607d8 exec /usr/bin/Xwayland +-> caching - new mapping +=> found 40777 unwind entries for /usr/bin/Xwayland low pc 29020 high pc 1bdd10 +- current chunk size 40777 +- rest of chunk size 0 +- lowindex [ 8122 : 48899 ] highIndex +- executable 477 mapping /usr/bin/Xwayland shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 1598983e2698ad24634fab9b3ec527942f9da036 exec /usr/lib64/libnvidia-allocator.so.525.78.01 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 9a679d77a74238925c05781c6f7c114fa413d371 exec /usr/lib64/libnvidia-eglcore.so.525.78.01 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 4cb255019d26890bf60a248a1c4a4f552959b57e exec /usr/lib64/libnvidia-glsi.so.525.78.01 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId e9f20bf38edb68991a8672dcbfe694bad0309126 exec /usr/lib64/libxcb-sync.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId a36e739193712f8d050fb716956c15ed76c68426 exec /usr/lib64/libglapi.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 996057eb24d45053568e1bfd33d91b25e279be42 exec /usr/lib64/libEGL_mesa.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 7696801e86c9ef71487792958a46999f189b6ab6 exec /usr/lib64/libEGL_nvidia.so.525.78.01 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId e55a074882c4c9357934efcf295654ea5badcce1 exec /usr/lib64/libxcb-present.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId d0c4181fb8966d4bebc5b0bd27182a6fba6709b4 exec /usr/lib64/libxcb-dri3.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId b54318cb38eca053e3365fe9797ab9c05834878e exec /usr/lib64/libxcb-xfixes.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId b557629bc47fea6de9edb4534378f26906bc5d80 exec /usr/lib64/libxcb-dri2.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 5e7722f04c94b190d576f123d2e078c4be4247da exec /usr/lib64/libX11-xcb.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId ff26a4ec5e8f78f0597ebf36c07901e6de2e0d65 exec /usr/lib64/libnvidia-egl-gbm.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 7b6ac05a0be985d9557e8d0273c4b3edeb6dbce7 exec /usr/lib64/libnvidia-egl-wayland.so.1.1.11 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId b03d994f5b8bd7fafb69ecd69d1ba57f898cf085 exec /usr/lib64/libdl.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 53b0d3795a292fc05056188a8b579ac30570b1ec exec /usr/lib64/librt.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 137cc354b88e1106292b5c35ae6a93ad1cca530b exec /usr/lib64/libpthread.so.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId ee16729875b0c8a80da63541838048a92e489705 exec /usr/lib64/libEGL.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 6ed08e90d0b6793be5e3141922608afe260c340d exec /usr/lib64/libGLdispatch.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId f780db1b3e9dbfc97c4624e09a998a7eb41939a0 exec /usr/lib64/libGLX.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 29f412aeaea5147409bacd5dc113f45e81bff8cb exec /usr/lib64/libwayland-server.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 1cbc6f811d3526c7bc521b126de8a2fba8e7c57e exec /usr/lib64/libGL.so.1.7.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4048899 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 478 buildId 66346a34fd1118cb0f28724f689da57505e31765 exec /usr/lib64/libfontenc.so.1.0.0 +-> caching - new mapping +=> found 210 unwind entries for /usr/lib64/libfontenc.so.1.0.0 low pc 2020 high pc 429f +- current chunk size 210 +- rest of chunk size 0 +- lowindex [ 48899 : 49109 ] highIndex +- executable 478 mapping /usr/lib64/libfontenc.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 479 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 479 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 479 buildId 930360dde486956810e2a4ab67efae781f463ced exec /usr/lib64/libxshmfence.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 479 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 479 buildId 30ded7af3a15a9e35529e1e113083d5d5f0c601a exec /usr/lib64/libgbm.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 479 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 479 buildId 3f06f006264aa930fb6d7f3fa4e2ebd3ddb4544e exec /usr/lib64/libdrm.so.2.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 479 buildId 70a45862d448969ec35c01b360d02c629146e3d7 exec /usr/lib64/libxcvt.so.0.1.2 +-> caching - new mapping +=> found 16 unwind entries for /usr/lib64/libxcvt.so.0.1.2 low pc 1020 high pc 16df +- current chunk size 16 +- rest of chunk size 0 +- lowindex [ 49109 : 49125 ] highIndex +- executable 479 mapping /usr/lib64/libxcvt.so.0.1.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049125 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 480 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049125 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 480 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049125 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 480 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049125 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 480 buildId d999c865b5d7a3abdd88ce5bcf338b1e19bea9f6 exec /usr/lib64/libXdmcp.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4049125 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 480 buildId 5dc86f920d3144556bdbaf6cc79b4a07ebb8af05 exec /usr/lib64/libXfont2.so.2.0.0 +-> caching - new mapping +=> found 2449 unwind entries for /usr/lib64/libXfont2.so.2.0.0 low pc 5020 high pc 21c43 +- current chunk size 2449 +- rest of chunk size 0 +- lowindex [ 49125 : 51574 ] highIndex +- executable 480 mapping /usr/lib64/libXfont2.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4051574 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 481 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4051574 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 481 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4051574 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4051574 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:50.194460802Z caller=cpu.go:495 msg="adding unwind tables" pid=1677 +level=info name=parca-agent ts=2023-01-25T11:15:50.194640297Z caller=cpu.go:495 msg="adding unwind tables" pid=1680 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4051574 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556a9afd3000, StartAddr: 0x556a9afd9000, EndAddr: 0x556a9afe2000, Executable:/usr/libexec/xdg-permission-store} +[info] adding memory mappings in for executable with ID 481 buildId 8d6f835389b5f5a0ce005d0de0414225bf9ea57c exec /usr/libexec/xdg-permission-store +-> caching - new mapping +=> found 1028 unwind entries for /usr/libexec/xdg-permission-store low pc 6020 high pc e1e5 +- current chunk size 1028 +- rest of chunk size 0 +- lowindex [ 51574 : 52602 ] highIndex +- executable 481 mapping /usr/libexec/xdg-permission-store shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 482 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.196634594Z caller=cpu.go:495 msg="adding unwind tables" pid=1685 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052602 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555888a53000, StartAddr: 0x555888a54000, EndAddr: 0x555888a55000, Executable:/usr/bin/pipewire} +[info] adding memory mappings in for executable with ID 482 buildId 166529d82976556929d705ba38da0006c54a0bb4 exec /usr/bin/pipewire +-> caching - new mapping +=> found 20 unwind entries for /usr/bin/pipewire low pc 1020 high pc 1859 +- current chunk size 20 +- rest of chunk size 0 +- lowindex [ 52602 : 52622 ] highIndex +- executable 482 mapping /usr/bin/pipewire shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052622 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 483 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052622 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 483 buildId d2900f143d90bfa10dbf7689bd5e10544cb46c6a exec /usr/lib64/libasound.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4052622 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 483 buildId cde9b6236c30c2621132edabeef78ea1dd73a592 exec /usr/lib64/spa-0.2/alsa/libspa-alsa.so +-> caching - new mapping +=> found 7673 unwind entries for /usr/lib64/spa-0.2/alsa/libspa-alsa.so low pc 16020 high pc 7d45b +- current chunk size 7673 +- rest of chunk size 0 +- lowindex [ 52622 : 60295 ] highIndex +- executable 483 mapping /usr/lib64/spa-0.2/alsa/libspa-alsa.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4060295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 484 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4060295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 484 buildId 9dd244d1d163580bdaa9e29547fde1605290a16b exec /usr/lib64/spa-0.2/audioconvert/libspa-audioconvert.so +-> caching - new mapping +=> found 5613 unwind entries for /usr/lib64/spa-0.2/audioconvert/libspa-audioconvert.so low pc 10020 high pc 4e645 +- current chunk size 5613 +- rest of chunk size 0 +- lowindex [ 60295 : 65908 ] highIndex +- executable 484 mapping /usr/lib64/spa-0.2/audioconvert/libspa-audioconvert.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4065908 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 485 buildId bd95f03fd692eda202c3ef09bd69ddf11bca3ee9 exec /usr/lib64/pipewire-0.3/libpipewire-module-session-manager.so +-> caching - new mapping +=> found 2435 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-session-manager.so low pc 4020 high pc 1e5eb +- current chunk size 2435 +- rest of chunk size 0 +- lowindex [ 65908 : 68343 ] highIndex +- executable 485 mapping /usr/lib64/pipewire-0.3/libpipewire-module-session-manager.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4068343 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 486 buildId 08a56bd47b97888aec7fde30df2c766688278d78 exec /usr/lib64/pipewire-0.3/libpipewire-module-adapter.so +-> caching - new mapping +=> found 488 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-adapter.so low pc a020 high pc 13fc0 +- current chunk size 488 +- rest of chunk size 0 +- lowindex [ 68343 : 68831 ] highIndex +- executable 486 mapping /usr/lib64/pipewire-0.3/libpipewire-module-adapter.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4068831 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 487 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4068831 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 487 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4068831 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 487 buildId a26fbdb60daf6510439674c7fb9cadb20952ca20 exec /usr/lib64/pipewire-0.3/libpipewire-module-link-factory.so +-> caching - new mapping +=> found 166 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-link-factory.so low pc 2020 high pc 39b0 +- current chunk size 166 +- rest of chunk size 0 +- lowindex [ 68831 : 68997 ] highIndex +- executable 487 mapping /usr/lib64/pipewire-0.3/libpipewire-module-link-factory.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4068997 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 488 buildId ffaa067b127df71d93ea492b1df89f022db3d0c1 exec /usr/lib64/pipewire-0.3/libpipewire-module-access.so +-> caching - new mapping +=> found 153 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-access.so low pc 2020 high pc 3eab +- current chunk size 153 +- rest of chunk size 0 +- lowindex [ 68997 : 69150 ] highIndex +- executable 488 mapping /usr/lib64/pipewire-0.3/libpipewire-module-access.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4069150 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 489 buildId 4305d6a9e5bdcc886318aa433df3db41405fda98 exec /usr/lib64/pipewire-0.3/libpipewire-module-portal.so +-> caching - new mapping +=> found 90 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-portal.so low pc 2020 high pc 311e +- current chunk size 90 +- rest of chunk size 0 +- lowindex [ 69150 : 69240 ] highIndex +- executable 489 mapping /usr/lib64/pipewire-0.3/libpipewire-module-portal.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4069240 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 490 buildId 3a9ed7c404084455d3ed4c5cb561d7c6f8aac005 exec /usr/lib64/pipewire-0.3/libpipewire-module-client-device.so +-> caching - new mapping +=> found 374 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-client-device.so low pc 2020 high pc a0ba +- current chunk size 374 +- rest of chunk size 0 +- lowindex [ 69240 : 69614 ] highIndex +- executable 490 mapping /usr/lib64/pipewire-0.3/libpipewire-module-client-device.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4069614 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 491 buildId adb7c01c2e0daf82a378b9ac9c1a8f7a801e46d8 exec /usr/lib64/pipewire-0.3/libpipewire-module-client-node.so +-> caching - new mapping +=> found 3432 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-client-node.so low pc b020 high pc 2a929 +- current chunk size 3432 +- rest of chunk size 0 +- lowindex [ 69614 : 73046 ] highIndex +- executable 491 mapping /usr/lib64/pipewire-0.3/libpipewire-module-client-node.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4073046 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 492 buildId 7006da6ead2038efc18c2a2bee49abbdb2f4fbce exec /usr/lib64/pipewire-0.3/libpipewire-module-spa-node-factory.so +-> caching - new mapping +=> found 191 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-spa-node-factory.so low pc 6020 high pc 8170 +- current chunk size 191 +- rest of chunk size 0 +- lowindex [ 73046 : 73237 ] highIndex +- executable 492 mapping /usr/lib64/pipewire-0.3/libpipewire-module-spa-node-factory.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4073237 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 493 buildId f76324214444042165a06e7180aab3e6facaf371 exec /usr/lib64/pipewire-0.3/libpipewire-module-spa-device-factory.so +-> caching - new mapping +=> found 97 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-spa-device-factory.so low pc 2020 high pc 30d0 +- current chunk size 97 +- rest of chunk size 0 +- lowindex [ 73237 : 73334 ] highIndex +- executable 493 mapping /usr/lib64/pipewire-0.3/libpipewire-module-spa-device-factory.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4073334 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 494 buildId 31bbf5fa3a4365d351c6c6d97223deea0f1d3cae exec /usr/lib64/pipewire-0.3/libpipewire-module-metadata.so +-> caching - new mapping +=> found 377 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-metadata.so low pc 2020 high pc 8755 +- current chunk size 377 +- rest of chunk size 0 +- lowindex [ 73334 : 73711 ] highIndex +- executable 494 mapping /usr/lib64/pipewire-0.3/libpipewire-module-metadata.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4073711 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 495 buildId 7aeafaf5fccace550032ea881d949d8933c85d2d exec /usr/lib64/pipewire-0.3/libpipewire-module-protocol-native.so +-> caching - new mapping +=> found 2879 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-protocol-native.so low pc 12020 high pc 2df8f +- current chunk size 2879 +- rest of chunk size 0 +- lowindex [ 73711 : 76590 ] highIndex +- executable 495 mapping /usr/lib64/pipewire-0.3/libpipewire-module-protocol-native.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076590 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 496 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076590 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 496 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076590 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 496 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076590 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 496 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076590 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 496 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076590 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 496 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076590 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 496 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076590 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 496 buildId 3d0f313d56bb37c8ba4f2278161085605b91e3e7 exec /usr/lib64/pipewire-0.3/libpipewire-module-profiler.so +-> caching - new mapping +=> found 248 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-profiler.so low pc 2020 high pc 7c7c +- current chunk size 248 +- rest of chunk size 0 +- lowindex [ 76590 : 76838 ] highIndex +- executable 496 mapping /usr/lib64/pipewire-0.3/libpipewire-module-profiler.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4076838 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 497 buildId 277441d45457f33a086aad89661e2c731f739853 exec /usr/lib64/pipewire-0.3/libpipewire-module-rt.so +-> caching - new mapping +=> found 227 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-rt.so low pc 2020 high pc 43a4 +- current chunk size 227 +- rest of chunk size 0 +- lowindex [ 76838 : 77065 ] highIndex +- executable 497 mapping /usr/lib64/pipewire-0.3/libpipewire-module-rt.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 498 buildId 8a1dc8086a0b92e430c21b77f8df373130863e0d exec /usr/lib64/spa-0.2/support/libspa-dbus.so +-> caching - new mapping +=> found 373 unwind entries for /usr/lib64/spa-0.2/support/libspa-dbus.so low pc 2020 high pc 447c +- current chunk size 373 +- rest of chunk size 0 +- lowindex [ 77065 : 77438 ] highIndex +- executable 498 mapping /usr/lib64/spa-0.2/support/libspa-dbus.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 499 buildId a825e50a0a36ad9cc5697d5314b15b48a41b815d exec /usr/lib64/spa-0.2/support/libspa-support.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 499 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 499 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 499 buildId 383ecd23693dfee098bd892eb64bf7c33c07f7e2 exec /usr/lib64/libpipewire-0.3.so.0.363.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 499 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 499 buildId 3f879bc63883d2539a6ee04779c6b524d0667478 exec /usr/lib64/spa-0.2/support/libspa-journal.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 499 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.211209787Z caller=cpu.go:495 msg="adding unwind tables" pid=1686 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077438 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55755a228000, StartAddr: 0x55755a22a000, EndAddr: 0x55755a22d000, Executable:/usr/bin/wireplumber} +[info] adding memory mappings in for executable with ID 499 buildId 4da9a1c4bcd64fc6dadb1687c190517331bd9106 exec /usr/bin/wireplumber +-> caching - new mapping +=> found 148 unwind entries for /usr/bin/wireplumber low pc 2020 high pc 4166 +- current chunk size 148 +- rest of chunk size 0 +- lowindex [ 77438 : 77586 ] highIndex +- executable 499 mapping /usr/bin/wireplumber shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 500 buildId d922cd73905353a5356f2aea7f43d7882b8b9725 exec /usr/lib64/libopus.so.0.8.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 500 buildId 567bbbcb65a4691bdd190d09be6fb41afbeec4fa exec /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-opus.so +-> caching - new mapping +=> found 382 unwind entries for /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-opus.so low pc 3020 high pc 996c +- current chunk size 382 +- rest of chunk size 0 +- lowindex [ 77586 : 77968 ] highIndex +- executable 500 mapping /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-opus.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4077968 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 501 buildId 3128134b1b030609d6511917f0ef9f44f653c27e exec /usr/lib64/libldacBT_enc.so.2.0.2.3 +-> caching - new mapping +=> found 329 unwind entries for /usr/lib64/libldacBT_enc.so.2.0.2.3 low pc 2020 high pc 7f9c +- current chunk size 329 +- rest of chunk size 0 +- lowindex [ 77968 : 78297 ] highIndex +- executable 501 mapping /usr/lib64/libldacBT_enc.so.2.0.2.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4078297 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 502 buildId 2a67f12c44d3d39308de8ad4d5a290944ff6d621 exec /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-sbc.so +-> caching - new mapping +=> found 240 unwind entries for /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-sbc.so low pc 1020 high pc 5dac +- current chunk size 240 +- rest of chunk size 0 +- lowindex [ 78297 : 78537 ] highIndex +- executable 502 mapping /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-sbc.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4078537 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 503 buildId 30f0ed7335e1919f739f2d733b8de4182e0ea1b0 exec /usr/lib64/libfdk-aac.so.2.0.0 +-> caching - new mapping +=> found 3404 unwind entries for /usr/lib64/libfdk-aac.so.2.0.0 low pc 3020 high pc 6dbda +- current chunk size 3404 +- rest of chunk size 0 +- lowindex [ 78537 : 81941 ] highIndex +- executable 503 mapping /usr/lib64/libfdk-aac.so.2.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4081941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 504 buildId a3402d780613b42e9195ae33f81d6afcf9243a31 exec /usr/lib64/libldacBT_abr.so.2.0.2.3 +-> caching - new mapping +=> found 34 unwind entries for /usr/lib64/libldacBT_abr.so.2.0.2.3 low pc 1020 high pc 1580 +- current chunk size 34 +- rest of chunk size 0 +- lowindex [ 81941 : 81975 ] highIndex +- executable 504 mapping /usr/lib64/libldacBT_abr.so.2.0.2.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4081975 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 505 buildId 3ef536777bde23b64e32c678799a23afaf3301a8 exec /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-ldac.so +-> caching - new mapping +=> found 276 unwind entries for /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-ldac.so low pc 1020 high pc 809c +- current chunk size 276 +- rest of chunk size 0 +- lowindex [ 81975 : 82251 ] highIndex +- executable 505 mapping /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-ldac.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4082251 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 506 buildId d2c387b3f8505ddfc3c28f3e495f5d633c179cb4 exec /usr/lib64/libusb-1.0.so.0.3.0 +-> caching - new mapping +=> found 1701 unwind entries for /usr/lib64/libusb-1.0.so.0.3.0 low pc 4020 high pc 132c8 +- current chunk size 1701 +- rest of chunk size 0 +- lowindex [ 82251 : 83952 ] highIndex +- executable 506 mapping /usr/lib64/libusb-1.0.so.0.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4083952 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 507 buildId 4540a00e8c355bfe5edcb32b2bad20368b4e4a7a exec /usr/lib64/libbluetooth.so.3.19.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4083952 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 507 buildId 83f348bb177ecc85a430da212e9898156de3b726 exec /usr/lib64/libsbc.so.1.3.0 +-> caching - new mapping +=> found 306 unwind entries for /usr/lib64/libsbc.so.1.3.0 low pc 1020 high pc eac3 +- current chunk size 306 +- rest of chunk size 0 +- lowindex [ 83952 : 84258 ] highIndex +- executable 507 mapping /usr/lib64/libsbc.so.1.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4084258 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 508 buildId e7484fc13afe2713f35858994da3a610b17cb9f7 exec /usr/lib64/spa-0.2/bluez5/libspa-bluez5.so +-> caching - new mapping +=> found 10241 unwind entries for /usr/lib64/spa-0.2/bluez5/libspa-bluez5.so low pc 8020 high pc 6da88 +- current chunk size 10241 +- rest of chunk size 0 +- lowindex [ 84258 : 94499 ] highIndex +- executable 508 mapping /usr/lib64/spa-0.2/bluez5/libspa-bluez5.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4094499 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 509 buildId 9286f114ad3ccf8243b7a069a2e922a498266e7e exec /usr/lib64/spa-0.2/v4l2/libspa-v4l2.so +-> caching - new mapping +=> found 1687 unwind entries for /usr/lib64/spa-0.2/v4l2/libspa-v4l2.so low pc 2020 high pc 1721a +- current chunk size 1687 +- rest of chunk size 0 +- lowindex [ 94499 : 96186 ] highIndex +- executable 509 mapping /usr/lib64/spa-0.2/v4l2/libspa-v4l2.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4096186 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 510 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4096186 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 510 buildId d2900f143d90bfa10dbf7689bd5e10544cb46c6a exec /usr/lib64/libasound.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4096186 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 510 buildId 315a61b706183dc172b8b60e5c78466ba3a67554 exec /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-faststream.so +-> caching - new mapping +=> found 250 unwind entries for /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-faststream.so low pc 1020 high pc 58bc +- current chunk size 250 +- rest of chunk size 0 +- lowindex [ 96186 : 96436 ] highIndex +- executable 510 mapping /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-faststream.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4096436 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 511 buildId 1854c17f2f7d7b4e1a32281f637ebcbb902cc285 exec /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-aac.so +-> caching - new mapping +=> found 267 unwind entries for /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-aac.so low pc 1020 high pc 632c +- current chunk size 267 +- rest of chunk size 0 +- lowindex [ 96436 : 96703 ] highIndex +- executable 511 mapping /usr/lib64/spa-0.2/bluez5/libspa-codec-bluez5-aac.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4096703 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 512 buildId cde9b6236c30c2621132edabeef78ea1dd73a592 exec /usr/lib64/spa-0.2/alsa/libspa-alsa.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4096703 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 512 buildId bd68d62f38e6f025e761a59677b4e85e77336ebb exec /usr/lib64/wireplumber-0.4/libwireplumber-module-logind.so +-> caching - new mapping +=> found 77 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-logind.so low pc 2020 high pc 2b21 +- current chunk size 77 +- rest of chunk size 0 +- lowindex [ 96703 : 96780 ] highIndex +- executable 512 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-logind.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4096780 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 513 buildId 6d2d25475e7afcbc22ed90e160be994da2996e88 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-default-nodes-api.so +-> caching - new mapping +=> found 177 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-default-nodes-api.so low pc 2020 high pc 3701 +- current chunk size 177 +- rest of chunk size 0 +- lowindex [ 96780 : 96957 ] highIndex +- executable 513 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-default-nodes-api.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4096957 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 514 buildId 2624309d4246c9c2945931d55f21f9e1067d8de8 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-si-audio-adapter.so +-> caching - new mapping +=> found 245 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-si-audio-adapter.so low pc 3020 high pc 749e +- current chunk size 245 +- rest of chunk size 0 +- lowindex [ 96957 : 97202 ] highIndex +- executable 514 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-si-audio-adapter.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4097202 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 515 buildId 8d77db91f245e99a52b8f79e3a0ffc82772be7ad exec /usr/lib64/wireplumber-0.4/libwireplumber-module-mixer-api.so +-> caching - new mapping +=> found 220 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-mixer-api.so low pc 3020 high pc 62d1 +- current chunk size 220 +- rest of chunk size 0 +- lowindex [ 97202 : 97422 ] highIndex +- executable 515 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-mixer-api.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4097422 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 516 buildId e00d81ff4022baad2b2eaec47342b5d9853a6441 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-si-node.so +-> caching - new mapping +=> found 107 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-si-node.so low pc 2020 high pc 326e +- current chunk size 107 +- rest of chunk size 0 +- lowindex [ 97422 : 97529 ] highIndex +- executable 516 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-si-node.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4097529 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 517 buildId 2e139b3f059ac8b1b87d02c62e204630a3887553 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-si-standard-link.so +-> caching - new mapping +=> found 263 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-si-standard-link.so low pc 6020 high pc 9a0e +- current chunk size 263 +- rest of chunk size 0 +- lowindex [ 97529 : 97792 ] highIndex +- executable 517 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-si-standard-link.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4097792 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 518 buildId 12ead174ca3020c090afbd2ba0f89b6a58a9da62 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-default-nodes.so +-> caching - new mapping +=> found 291 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-default-nodes.so low pc 2020 high pc 5001 +- current chunk size 291 +- rest of chunk size 0 +- lowindex [ 97792 : 98083 ] highIndex +- executable 518 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-default-nodes.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4098083 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 519 buildId 0d07e772054aa91b5847925da48f3544d53732d7 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-reserve-device.so +-> caching - new mapping +=> found 939 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-reserve-device.so low pc 4020 high pc a251 +- current chunk size 939 +- rest of chunk size 0 +- lowindex [ 98083 : 99022 ] highIndex +- executable 519 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-reserve-device.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4099022 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 520 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4099022 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 520 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4099022 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 520 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4099022 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 520 buildId 7db607745eb5f2634f9488a3699fad29b9b0b629 exec /usr/lib64/liblua-5.4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4099022 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 520 buildId e5e7bde249f7ad7c86c8bbad842db35d7405ed48 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-si-audio-endpoint.so +-> caching - new mapping +=> found 205 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-si-audio-endpoint.so low pc 2020 high pc 3c9e +- current chunk size 205 +- rest of chunk size 0 +- lowindex [ 99022 : 99227 ] highIndex +- executable 520 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-si-audio-endpoint.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4099227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 521 buildId e166e2bfb4b45bc4d7036063f77506adcdcac464 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-default-profile.so +-> caching - new mapping +=> found 98 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-default-profile.so low pc 2020 high pc 34c1 +- current chunk size 98 +- rest of chunk size 0 +- lowindex [ 99227 : 99325 ] highIndex +- executable 521 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-default-profile.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4099325 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 522 buildId c1b0dfe74cd9a698ed95649658c920c1f9a08169 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-portal-permissionstore.so +-> caching - new mapping +=> found 164 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-portal-permissionstore.so low pc 2020 high pc 32e1 +- current chunk size 164 +- rest of chunk size 0 +- lowindex [ 99325 : 99489 ] highIndex +- executable 522 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-portal-permissionstore.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4099489 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 523 buildId 81dced4f408bbe05672963d68579c1b90e47f572 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-lua-scripting.so +-> caching - new mapping +=> found 2093 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-lua-scripting.so low pc b020 high pc 1c208 +- current chunk size 2093 +- rest of chunk size 0 +- lowindex [ 99489 : 101582 ] highIndex +- executable 523 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-lua-scripting.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId bd95f03fd692eda202c3ef09bd69ddf11bca3ee9 exec /usr/lib64/pipewire-0.3/libpipewire-module-session-manager.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId 31bbf5fa3a4365d351c6c6d97223deea0f1d3cae exec /usr/lib64/pipewire-0.3/libpipewire-module-metadata.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId 08a56bd47b97888aec7fde30df2c766688278d78 exec /usr/lib64/pipewire-0.3/libpipewire-module-adapter.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId adb7c01c2e0daf82a378b9ac9c1a8f7a801e46d8 exec /usr/lib64/pipewire-0.3/libpipewire-module-client-node.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId 7aeafaf5fccace550032ea881d949d8933c85d2d exec /usr/lib64/pipewire-0.3/libpipewire-module-protocol-native.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101582 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 524 buildId 339177a16fd2de107c953fc00df0e2e0d24821f8 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-metadata.so +-> caching - new mapping +=> found 61 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-metadata.so low pc 1020 high pc 17f1 +- current chunk size 61 +- rest of chunk size 0 +- lowindex [ 101582 : 101643 ] highIndex +- executable 524 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-metadata.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101643 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 525 buildId 3a9ed7c404084455d3ed4c5cb561d7c6f8aac005 exec /usr/lib64/pipewire-0.3/libpipewire-module-client-device.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101643 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 525 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101643 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 525 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101643 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 525 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101643 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 525 buildId 873b918ccee830196a2c50af010461957e05fc50 exec /usr/lib64/wireplumber-0.4/libwireplumber-module-file-monitor-api.so +-> caching - new mapping +=> found 80 unwind entries for /usr/lib64/wireplumber-0.4/libwireplumber-module-file-monitor-api.so low pc 2020 high pc 2d91 +- current chunk size 80 +- rest of chunk size 0 +- lowindex [ 101643 : 101723 ] highIndex +- executable 525 mapping /usr/lib64/wireplumber-0.4/libwireplumber-module-file-monitor-api.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId 277441d45457f33a086aad89661e2c731f739853 exec /usr/lib64/pipewire-0.3/libpipewire-module-rt.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId a825e50a0a36ad9cc5697d5314b15b48a41b815d exec /usr/lib64/spa-0.2/support/libspa-support.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId 383ecd23693dfee098bd892eb64bf7c33c07f7e2 exec /usr/lib64/libpipewire-0.3.so.0.363.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4101723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 526 buildId c34294d675d81db44105d529fcff73fb124a8771 exec /usr/lib64/libwireplumber-0.4.so.0.4.13 +-> caching - new mapping +=> found 8863 unwind entries for /usr/lib64/libwireplumber-0.4.so.0.4.13 low pc 1a020 high pc 51bfe +- current chunk size 8863 +- rest of chunk size 0 +- lowindex [ 101723 : 110586 ] highIndex +- executable 526 mapping /usr/lib64/libwireplumber-0.4.so.0.4.13 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 8a1dc8086a0b92e430c21b77f8df373130863e0d exec /usr/lib64/spa-0.2/support/libspa-dbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.233293731Z caller=cpu.go:495 msg="adding unwind tables" pid=1688 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557dde34b000, StartAddr: 0x557dde34c000, EndAddr: 0x557dde34d000, Executable:/usr/bin/pipewire-pulse} +[info] adding memory mappings in for executable with ID 527 buildId 166529d82976556929d705ba38da0006c54a0bb4 exec /usr/bin/pipewire-pulse +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 2f8fd2316bdf9e504a0362be708e745e85e89050 exec /usr/lib64/libavahi-client.so.3.2.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4110586 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 527 buildId 66f5d989fbd1663096c24b186fedda74bc3752b3 exec /usr/lib64/pipewire-0.3/libpipewire-module-protocol-pulse.so +-> caching - new mapping +=> found 6123 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-protocol-pulse.so low pc b020 high pc 46e41 +- current chunk size 6123 +- rest of chunk size 0 +- lowindex [ 110586 : 116709 ] highIndex +- executable 527 mapping /usr/lib64/pipewire-0.3/libpipewire-module-protocol-pulse.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 08a56bd47b97888aec7fde30df2c766688278d78 exec /usr/lib64/pipewire-0.3/libpipewire-module-adapter.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId adb7c01c2e0daf82a378b9ac9c1a8f7a801e46d8 exec /usr/lib64/pipewire-0.3/libpipewire-module-client-node.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 7aeafaf5fccace550032ea881d949d8933c85d2d exec /usr/lib64/pipewire-0.3/libpipewire-module-protocol-native.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 73dc9fc24e164a6a81b597f4b2b6350837500dc5 exec /usr/lib64/libavahi-common.so.3.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 31bbf5fa3a4365d351c6c6d97223deea0f1d3cae exec /usr/lib64/pipewire-0.3/libpipewire-module-metadata.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 277441d45457f33a086aad89661e2c731f739853 exec /usr/lib64/pipewire-0.3/libpipewire-module-rt.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 8a1dc8086a0b92e430c21b77f8df373130863e0d exec /usr/lib64/spa-0.2/support/libspa-dbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId a825e50a0a36ad9cc5697d5314b15b48a41b815d exec /usr/lib64/spa-0.2/support/libspa-support.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 383ecd23693dfee098bd892eb64bf7c33c07f7e2 exec /usr/lib64/libpipewire-0.3.so.0.363.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 528 buildId 1c0f1b2eed7b787efc95e01d3ef5682ad466c1f9 exec /usr/lib64/pipewire-0.3/libpipewire-module-fallback-sink.so +-> caching - new mapping +=> found 135 unwind entries for /usr/lib64/pipewire-0.3/libpipewire-module-fallback-sink.so low pc 1020 high pc 22a1 +- current chunk size 135 +- rest of chunk size 0 +- lowindex [ 116709 : 116844 ] highIndex +- executable 528 mapping /usr/lib64/pipewire-0.3/libpipewire-module-fallback-sink.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116844 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 529 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116844 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 529 buildId 3f879bc63883d2539a6ee04779c6b524d0667478 exec /usr/lib64/spa-0.2/support/libspa-journal.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116844 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 529 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116844 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116844 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.23859713Z caller=cpu.go:495 msg="adding unwind tables" pid=1703 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4116844 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c3a406e000, StartAddr: 0x55c3a407a000, EndAddr: 0x55c3a40a5000, Executable:/usr/libexec/packagekitd} +[info] adding memory mappings in for executable with ID 529 buildId 8e486aeb118636e0187701ccd2e6e0296185c61e exec /usr/libexec/packagekitd +-> caching - new mapping +=> found 4936 unwind entries for /usr/libexec/packagekitd low pc c020 high pc 3652b +- current chunk size 4936 +- rest of chunk size 0 +- lowindex [ 116844 : 121780 ] highIndex +- executable 529 mapping /usr/libexec/packagekitd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4121780 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 530 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4121780 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 530 buildId 5b2c8eb0d401df874bb2e3fc7190150110488e8d exec /usr/lib64/gio/modules/libgioremote-volume-monitor.so +-> caching - new mapping +=> found 2234 unwind entries for /usr/lib64/gio/modules/libgioremote-volume-monitor.so low pc 7020 high pc 123a1 +- current chunk size 2234 +- rest of chunk size 0 +- lowindex [ 121780 : 124014 ] highIndex +- executable 530 mapping /usr/lib64/gio/modules/libgioremote-volume-monitor.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4124014 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 531 buildId ef2551acd6629d3145f932451bbc9dab01e245ba exec /usr/lib64/libgdbm.so.6.0.0 +-> caching - new mapping +=> found 1088 unwind entries for /usr/lib64/libgdbm.so.6.0.0 low pc 4020 high pc eba0 +- current chunk size 1088 +- rest of chunk size 0 +- lowindex [ 124014 : 125102 ] highIndex +- executable 531 mapping /usr/lib64/libgdbm.so.6.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4125102 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 532 buildId c188375f2772f952c3c50fd5da33911eec7589e4 exec /usr/lib64/sasl2/libsasldb.so.3.0.0 +-> caching - new mapping +=> found 448 unwind entries for /usr/lib64/sasl2/libsasldb.so.3.0.0 low pc 2020 high pc 50e9 +- current chunk size 448 +- rest of chunk size 0 +- lowindex [ 125102 : 125550 ] highIndex +- executable 532 mapping /usr/lib64/sasl2/libsasldb.so.3.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4125550 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 533 buildId 7e1e429469244ca272c0b3091b68f22f4f78b84c exec /usr/lib64/sasl2/libplain.so.3.0.0 +-> caching - new mapping +=> found 284 unwind entries for /usr/lib64/sasl2/libplain.so.3.0.0 low pc 2020 high pc 4199 +- current chunk size 284 +- rest of chunk size 0 +- lowindex [ 125550 : 125834 ] highIndex +- executable 533 mapping /usr/lib64/sasl2/libplain.so.3.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4125834 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 534 buildId 8331788b213debccc4a7b28d944cdaec782f4c44 exec /usr/lib64/sasl2/liblogin.so.3.0.0 +-> caching - new mapping +=> found 309 unwind entries for /usr/lib64/sasl2/liblogin.so.3.0.0 low pc 2020 high pc 4089 +- current chunk size 309 +- rest of chunk size 0 +- lowindex [ 125834 : 126143 ] highIndex +- executable 534 mapping /usr/lib64/sasl2/liblogin.so.3.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId dafdffba96104f365a8ea751c4c97282f3c46263 exec /usr/lib64/libnss_myhostname.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId 217fffd36034244556bb034169a29fb366e38575 exec /usr/lib64/libassuan.so.0.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4126143 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 535 buildId 51d5d6281ede8d5a0bf766e6785f3efe97bbabb2 exec /usr/lib64/libyaml-0.so.2.0.9 +-> caching - new mapping +=> found 1245 unwind entries for /usr/lib64/libyaml-0.so.2.0.9 low pc 2020 high pc 1aec7 +- current chunk size 1245 +- rest of chunk size 0 +- lowindex [ 126143 : 127388 ] highIndex +- executable 535 mapping /usr/lib64/libyaml-0.so.2.0.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4127388 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 536 buildId 3d0a1c5a47bca8928af1b696da6a969283d5d4d1 exec /usr/lib64/libmagic.so.1.0.0 +-> caching - new mapping +=> found 1445 unwind entries for /usr/lib64/libmagic.so.1.0.0 low pc 4020 high pc 1eea2 +- current chunk size 1445 +- rest of chunk size 0 +- lowindex [ 127388 : 128833 ] highIndex +- executable 536 mapping /usr/lib64/libmagic.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4128833 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 537 buildId 9c373ee5a75983478a9a0d143e98b38244ce9809 exec /usr/lib64/libzck.so.1.2.3 +-> caching - new mapping +=> found 1239 unwind entries for /usr/lib64/libzck.so.1.2.3 low pc 3020 high pc 1069c +- current chunk size 1239 +- rest of chunk size 0 +- lowindex [ 128833 : 130072 ] highIndex +- executable 537 mapping /usr/lib64/libzck.so.1.2.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 0a88dc8884357041dcd174412f2cc14ce0071289 exec /usr/lib64/libssh.so.4.8.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 6c0cf7ed0ae68dfd766f9b51f0fafec148f26f48 exec /usr/lib64/libpsl.so.5.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId c193404811a60b405cfd506cbbd74a296cf04b1b exec /usr/lib64/libnghttp2.so.14.24.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 7db607745eb5f2634f9488a3699fad29b9b0b629 exec /usr/lib64/liblua-5.4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId 45d6b9bf7051ee6e9b6e90c65d63f50d95eb69b1 exec /usr/lib64/libgpgme.so.11.26.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4130072 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 538 buildId a12ff0c301331fb49cdecb1593b2d116b935a5de exec /usr/lib64/libsmartcols.so.1.1.0 +-> caching - new mapping +=> found 1673 unwind entries for /usr/lib64/libsmartcols.so.1.1.0 low pc 5020 high pc 14102 +- current chunk size 1673 +- rest of chunk size 0 +- lowindex [ 130072 : 131745 ] highIndex +- executable 538 mapping /usr/lib64/libsmartcols.so.1.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4131745 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 539 buildId edb2d2b396426233902687038ee3325f027664b3 exec /usr/lib64/libmodulemd.so.2.14.0 +-> caching - new mapping +=> found 9581 unwind entries for /usr/lib64/libmodulemd.so.2.14.0 low pc 13020 high pc 6d0a3 +- current chunk size 9581 +- rest of chunk size 0 +- lowindex [ 131745 : 141326 ] highIndex +- executable 539 mapping /usr/lib64/libmodulemd.so.2.14.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4141326 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 540 buildId b9de0a847a43bd60485067346cb7228f5dc96002 exec /usr/lib64/librpm.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4141326 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 540 buildId dd6866dd3cfed4b4a4f24df09044b119c2bc9dc0 exec /usr/lib64/libsolvext.so.1 +-> caching - new mapping +=> found 3343 unwind entries for /usr/lib64/libsolvext.so.1 low pc 9020 high pc 3519e +- current chunk size 3343 +- rest of chunk size 0 +- lowindex [ 141326 : 144669 ] highIndex +- executable 540 mapping /usr/lib64/libsolvext.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4144669 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 541 buildId 7c1fd71ef93f98fecfa51e0480287e48f2502fd2 exec /usr/lib64/libsolv.so.1 +-> caching - new mapping +=> found 8067 unwind entries for /usr/lib64/libsolv.so.1 low pc b020 high pc 85aae +- current chunk size 8067 +- rest of chunk size 0 +- lowindex [ 144669 : 152736 ] highIndex +- executable 541 mapping /usr/lib64/libsolv.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4152736 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 542 buildId 6dba4bea35c0ba990795f2bb414047aa5bd5ffa5 exec /usr/lib64/librepo.so.0 +-> caching - new mapping +=> found 2036 unwind entries for /usr/lib64/librepo.so.0 low pc 9020 high pc 25c50 +- current chunk size 2036 +- rest of chunk size 0 +- lowindex [ 152736 : 154772 ] highIndex +- executable 542 mapping /usr/lib64/librepo.so.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4154772 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 543 buildId 1511f3df5a8d1ea63657c4b50cc7bb5de05d6edc exec /usr/lib64/libcurl.so.4.7.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4154772 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 543 buildId 595367e25f102be8f5a6149a9a237df3212c1dd5 exec /usr/lib64/libarchive.so.13.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4154772 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 543 buildId dd0e1143c0bf6537bb191fdfaf2b6cacd3a9919f exec /usr/lib64/libdnf.so.2 +-> caching - new mapping +=> found 21456 unwind entries for /usr/lib64/libdnf.so.2 low pc 47020 high pc 1369e5 +- current chunk size 21456 +- rest of chunk size 0 +- lowindex [ 154772 : 176228 ] highIndex +- executable 543 mapping /usr/lib64/libdnf.so.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4176228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 544 buildId c3f24c7ba050a70c1d297dfcf1cbbd82f1124643 exec /usr/lib64/libpopt.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4176228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 544 buildId cb5f89af81053c7c924c0394a19395dfa98ac32e exec /usr/lib64/libjson-c.so.5.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4176228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 544 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4176228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 544 buildId a5009041f85b1ec5b58f06105aeb0319524ef526 exec /usr/lib64/libuuid.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4176228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 544 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4176228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 544 buildId 894c2b0df11f94e5efd8212b1b56eac7a09b9c16 exec /usr/lib64/librpmio.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4176228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 544 buildId 78266f1305b9e3e13181e8a4685b2422c5777928 exec /usr/lib64/libappstream-glib.so.8.0.10 +-> caching - new mapping +=> found 8829 unwind entries for /usr/lib64/libappstream-glib.so.8.0.10 low pc 17020 high pc 564e7 +- current chunk size 8829 +- rest of chunk size 0 +- lowindex [ 176228 : 185057 ] highIndex +- executable 544 mapping /usr/lib64/libappstream-glib.so.8.0.10 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4185057 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 545 buildId e293adc6b8ede44d2ddf3a71397054cc128dc40d exec /usr/lib64/sasl2/libgssapiv2.so.3.0.0 +-> caching - new mapping +=> found 448 unwind entries for /usr/lib64/sasl2/libgssapiv2.so.3.0.0 low pc 2020 high pc 7049 +- current chunk size 448 +- rest of chunk size 0 +- lowindex [ 185057 : 185505 ] highIndex +- executable 545 mapping /usr/lib64/sasl2/libgssapiv2.so.3.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4185505 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 546 buildId 4d9e211d22eb5f98882031bd741bf8457a4b6508 exec /usr/lib64/sasl2/libanonymous.so.3.0.0 +-> caching - new mapping +=> found 286 unwind entries for /usr/lib64/sasl2/libanonymous.so.3.0.0 low pc 2020 high pc 3e99 +- current chunk size 286 +- rest of chunk size 0 +- lowindex [ 185505 : 185791 ] highIndex +- executable 546 mapping /usr/lib64/sasl2/libanonymous.so.3.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4185791 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 547 buildId d435177dadd20913244ab61c48a5bb64fcd2f634 exec /usr/lib64/packagekit-backend/libpk_backend_dnf.so +-> caching - new mapping +=> found 911 unwind entries for /usr/lib64/packagekit-backend/libpk_backend_dnf.so low pc 6020 high pc 13f87 +- current chunk size 911 +- rest of chunk size 0 +- lowindex [ 185791 : 186702 ] highIndex +- executable 547 mapping /usr/lib64/packagekit-backend/libpk_backend_dnf.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4186702 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 548 buildId fd2991fd2ee9f52c7e1f1dd3065b0f76609c751f exec /usr/lib64/libpackagekit-glib2.so.18.1.3 +-> caching - new mapping +=> found 9352 unwind entries for /usr/lib64/libpackagekit-glib2.so.18.1.3 low pc 16020 high pc 4da45 +- current chunk size 9352 +- rest of chunk size 0 +- lowindex [ 186702 : 196054 ] highIndex +- executable 548 mapping /usr/lib64/libpackagekit-glib2.so.18.1.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196054 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 549 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196054 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 549 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196054 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196054 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.27932156Z caller=cpu.go:495 msg="adding unwind tables" pid=1707 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196054 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196054 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196054 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196054 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 549 buildId 00fc6b73b50515dd6467f3f1319ac7d886f56134 exec /usr/bin/gjs-console +-> caching - new mapping +=> found 38 unwind entries for /usr/bin/gjs-console low pc 2020 high pc 3671 +- current chunk size 38 +- rest of chunk size 0 +- lowindex [ 196054 : 196092 ] highIndex +- executable 549 mapping /usr/bin/gjs-console shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 8d3773b4ff0382951bd3c72ac05aaacf988f8663 exec /usr/lib64/libmozjs-91.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 6400a9ff5aacf24bd96e2ae96b028f60a8ac91f7 exec /usr/lib64/libreadline.so.8.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 787ec16b76d1d533d95a328b5f368521fbd6ad8c exec /usr/lib64/libgirepository-1.0.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 4a42afc965a321b44209671264a8087ca580e065 exec /usr/lib64/libgjs.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 550 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.283635935Z caller=cpu.go:495 msg="adding unwind tables" pid=1709 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4196092 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56052cfb1000, StartAddr: 0x56052cfb5000, EndAddr: 0x56052cfbf000, Executable:/usr/libexec/at-spi2-registryd} +[info] adding memory mappings in for executable with ID 550 buildId be82159fe392586fd1eef4ba9def1d3b022243db exec /usr/libexec/at-spi2-registryd +-> caching - new mapping +=> found 973 unwind entries for /usr/libexec/at-spi2-registryd low pc 4020 high pc da7a +- current chunk size 973 +- rest of chunk size 0 +- lowindex [ 196092 : 197065 ] highIndex +- executable 550 mapping /usr/libexec/at-spi2-registryd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 7bca328e00084e667048cc7844d7a355c2840c2f exec /usr/lib64/libXtst.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 551 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.286357294Z caller=cpu.go:495 msg="adding unwind tables" pid=1728 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197065 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563a1b1e5000, StartAddr: 0x563a1b1e8000, EndAddr: 0x563a1b1eb000, Executable:/usr/libexec/gsd-sharing} +[info] adding memory mappings in for executable with ID 551 buildId 83a11503d0c2ffcb57b5fc1adb3c293258540a04 exec /usr/libexec/gsd-sharing +-> caching - new mapping +=> found 235 unwind entries for /usr/libexec/gsd-sharing low pc 3020 high pc 5a7a +- current chunk size 235 +- rest of chunk size 0 +- lowindex [ 197065 : 197300 ] highIndex +- executable 551 mapping /usr/libexec/gsd-sharing shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 345872e1fd9fc345eccc8344049d028164796f36 exec /usr/lib64/libhogweed.so.6.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 15554c81e3ea5792d76ebfe663a5354944e3a0ab exec /usr/lib64/libnettle.so.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 8e40305f04041f14ebbb123182f15f67c4cec0af exec /usr/lib64/libgnutls.so.30.34.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 4407f7333e5bcb96a54db0c939dd19a770c73096 exec /usr/lib64/libtasn1.so.6.6.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId a30b9d80583bc9b082ed0748c60f9e870b567cd6 exec /usr/lib64/libnm.so.0.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4197300 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 552 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - new mapping +=> found 2423 unwind entries for /usr/lib64/gnome-settings-daemon-42/libgsd.so low pc 8020 high pc 1165e +- current chunk size 2423 +- rest of chunk size 0 +- lowindex [ 197300 : 199723 ] highIndex +- executable 552 mapping /usr/lib64/gnome-settings-daemon-42/libgsd.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199723 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 553 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199723 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199723 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.28955473Z caller=cpu.go:495 msg="adding unwind tables" pid=1731 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199723 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563f05ec5000, StartAddr: 0x563f05ec9000, EndAddr: 0x563f05ecc000, Executable:/usr/libexec/gsd-wacom} +[info] adding memory mappings in for executable with ID 553 buildId c7eb6dc394ae5c5b21b2f927bb6f2faf32f82ae9 exec /usr/libexec/gsd-wacom +-> caching - new mapping +=> found 206 unwind entries for /usr/libexec/gsd-wacom low pc 4020 high pc 6c70 +- current chunk size 206 +- rest of chunk size 0 +- lowindex [ 199723 : 199929 ] highIndex +- executable 553 mapping /usr/libexec/gsd-wacom shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 29d1f75aa6f0307edfe54a7156a8877ce736618c exec /usr/lib64/libwacom.so.9.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 554 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.453583908Z caller=cpu.go:495 msg="adding unwind tables" pid=1733 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4199929 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555c97da4000, StartAddr: 0x555c97daa000, EndAddr: 0x555c97db6000, Executable:/usr/libexec/gsd-color} +[info] adding memory mappings in for executable with ID 554 buildId 4b64d58dd8a93a4599c506fda3007b33893c86e3 exec /usr/libexec/gsd-color +-> caching - new mapping +=> found 1004 unwind entries for /usr/libexec/gsd-color low pc 6020 high pc 11409 +- current chunk size 1004 +- rest of chunk size 0 +- lowindex [ 199929 : 200933 ] highIndex +- executable 554 mapping /usr/libexec/gsd-color shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 51b01a31c9c7cf0432f1ab32da1b3a324c6e75b6 exec /usr/lib64/libogg.so.0.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 54cf4100a162e93bf55de9202edd4e8ff274525f exec /usr/lib64/libvorbis.so.0.4.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 9edcbed4921b56b70cc85d0de957223ffb025f62 exec /usr/lib64/libltdl.so.7.3.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 7ebf2a59a950b8d7a761e390ac5797777522309c exec /usr/lib64/libtdb.so.1.4.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId 10808b8db3841e5245e38230e4b71ed26ec12929 exec /usr/lib64/libvorbisfile.so.3.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200933 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 555 buildId d5f3b9224346958df49e5910c6dae59fc231848e exec /usr/lib64/libgthread-2.0.so.0.7200.3 +-> caching - new mapping +=> found 8 unwind entries for /usr/lib64/libgthread-2.0.so.0.7200.3 low pc 1020 high pc 11d2 +- current chunk size 8 +- rest of chunk size 0 +- lowindex [ 200933 : 200941 ] highIndex +- executable 555 mapping /usr/lib64/libgthread-2.0.so.0.7200.3 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 1532b1808d5b274f11f88113949be033011ff02b exec /usr/lib64/libxkbregistry.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId dd681a0c8deafb5b74b4db22f1660bfe9a335bf7 exec /usr/lib64/libgeoclue-2.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId c63b1bf26abe8dc5021d958a0aadeaaa0317a934 exec /usr/lib64/libcanberra.so.0.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4200941 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 556 buildId 43bc5fdf5281bde2d762dd322ba2715d45465e4f exec /usr/lib64/liblcms2.so.2.0.13 +-> caching - new mapping +=> found 7555 unwind entries for /usr/lib64/liblcms2.so.2.0.13 low pc b020 high pc 49442 +- current chunk size 7555 +- rest of chunk size 0 +- lowindex [ 200941 : 208496 ] highIndex +- executable 556 mapping /usr/lib64/liblcms2.so.2.0.13 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4208496 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 557 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4208496 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 557 buildId 0a332e520fa76e330ed920db7c5b690356165379 exec /usr/lib64/libnotify.so.4.0.0 +-> caching - new mapping +=> found 564 unwind entries for /usr/lib64/libnotify.so.4.0.0 low pc 3020 high pc 6a5c +- current chunk size 564 +- rest of chunk size 0 +- lowindex [ 208496 : 209060 ] highIndex +- executable 557 mapping /usr/lib64/libnotify.so.4.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4209060 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 558 buildId b81fdc47d251a69f1636c48f6e046c57f8fa997f exec /usr/lib64/libcanberra-gtk3.so.0.1.9 +-> caching - new mapping +=> found 142 unwind entries for /usr/lib64/libcanberra-gtk3.so.0.1.9 low pc 2020 high pc 3e06 +- current chunk size 142 +- rest of chunk size 0 +- lowindex [ 209060 : 209202 ] highIndex +- executable 558 mapping /usr/lib64/libcanberra-gtk3.so.0.1.9 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4209202 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 559 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4209202 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 559 buildId f16ca87c7fc78a91cb0a0c517144cae855d9cdde exec /usr/lib64/libgnome-desktop-3.so.19.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4209202 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 559 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4209202 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 559 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4209202 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 559 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4209202 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 559 buildId bbe6de252a529f6cee7c102ea0dba196927bc210 exec /usr/lib64/libcolord.so.2.0.5 +-> caching - new mapping +=> found 7891 unwind entries for /usr/lib64/libcolord.so.2.0.5 low pc 12020 high pc 42e27 +- current chunk size 7891 +- rest of chunk size 0 +- lowindex [ 209202 : 217093 ] highIndex +- executable 559 mapping /usr/lib64/libcolord.so.2.0.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217093 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 560 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217093 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 560 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217093 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217093 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.521001019Z caller=cpu.go:495 msg="adding unwind tables" pid=1735 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217093 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561a69bcd000, StartAddr: 0x561a69bd0000, EndAddr: 0x561a69bd3000, Executable:/usr/libexec/gsd-keyboard} +[info] adding memory mappings in for executable with ID 560 buildId abfca5594d000a22c9b99f89a8206fc597712de6 exec /usr/libexec/gsd-keyboard +-> caching - new mapping +=> found 203 unwind entries for /usr/libexec/gsd-keyboard low pc 3020 high pc 590f +- current chunk size 203 +- rest of chunk size 0 +- lowindex [ 217093 : 217296 ] highIndex +- executable 560 mapping /usr/libexec/gsd-keyboard shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 561 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.549475553Z caller=cpu.go:495 msg="adding unwind tables" pid=1737 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217296 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56098be40000, StartAddr: 0x56098be44000, EndAddr: 0x56098be49000, Executable:/usr/libexec/gsd-print-notifications} +[info] adding memory mappings in for executable with ID 561 buildId 721d23d4ecdde0c94cf2e10e04b67b64a2e07871 exec /usr/libexec/gsd-print-notifications +-> caching - new mapping +=> found 359 unwind entries for /usr/libexec/gsd-print-notifications low pc 4020 high pc 89b9 +- current chunk size 359 +- rest of chunk size 0 +- lowindex [ 217296 : 217655 ] highIndex +- executable 561 mapping /usr/libexec/gsd-print-notifications shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 345872e1fd9fc345eccc8344049d028164796f36 exec /usr/lib64/libhogweed.so.6.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 15554c81e3ea5792d76ebfe663a5354944e3a0ab exec /usr/lib64/libnettle.so.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 4407f7333e5bcb96a54db0c939dd19a770c73096 exec /usr/lib64/libtasn1.so.6.6.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 8e40305f04041f14ebbb123182f15f67c4cec0af exec /usr/lib64/libgnutls.so.30.34.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 2f8fd2316bdf9e504a0362be708e745e85e89050 exec /usr/lib64/libavahi-client.so.3.2.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 73dc9fc24e164a6a81b597f4b2b6350837500dc5 exec /usr/lib64/libavahi-common.so.3.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 0a332e520fa76e330ed920db7c5b690356165379 exec /usr/lib64/libnotify.so.4.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 8e6eecca9052c33732bba209238d48154576619a exec /usr/lib64/libcups.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 562 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.560838582Z caller=cpu.go:495 msg="adding unwind tables" pid=1741 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4217655 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564e1b869000, StartAddr: 0x564e1b86d000, EndAddr: 0x564e1b872000, Executable:/usr/libexec/gsd-rfkill} +[info] adding memory mappings in for executable with ID 562 buildId b9b0626560e5774adcebf6c887ea2b62843e7d16 exec /usr/libexec/gsd-rfkill +-> caching - new mapping +=> found 498 unwind entries for /usr/libexec/gsd-rfkill low pc 4020 high pc 86e4 +- current chunk size 498 +- rest of chunk size 0 +- lowindex [ 217655 : 218153 ] highIndex +- executable 562 mapping /usr/libexec/gsd-rfkill shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 563 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.565529844Z caller=cpu.go:495 msg="adding unwind tables" pid=1743 +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4218153 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561ba68db000, StartAddr: 0x561ba68e1000, EndAddr: 0x561ba68ea000, Executable:/usr/libexec/gsd-smartcard} +[info] adding memory mappings in for executable with ID 563 buildId 0c80e27e17691dc1a55c08573e74bf28b5b58d55 exec /usr/libexec/gsd-smartcard +-> caching - new mapping +=> found 1222 unwind entries for /usr/libexec/gsd-smartcard low pc 6020 high pc ef94 +- current chunk size 1222 +- rest of chunk size 0 +- lowindex [ 218153 : 219375 ] highIndex +- executable 563 mapping /usr/libexec/gsd-smartcard shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4219375 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 564 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4219375 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 564 buildId 6f44b6779cb46fe0cf3dae084d9a931f9f250658 exec /usr/lib64/libpcsclite.so.1.0.0 +-> caching - new mapping +=> found 451 unwind entries for /usr/lib64/libpcsclite.so.1.0.0 low pc 2020 high pc 6fa7 +- current chunk size 451 +- rest of chunk size 0 +- lowindex [ 219375 : 219826 ] highIndex +- executable 564 mapping /usr/lib64/libpcsclite.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 16 , total entries: 4219826 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 565 buildId 99ba126a7317a9e3a2a474a4dd030018c07dd224 exec /usr/lib64/libopensc.so.8.0.0 +-> caching - new mapping +=> found 56368 unwind entries for /usr/lib64/libopensc.so.8.0.0 low pc 1d020 high pc 166bc5 +- current chunk size 30174 +- rest of chunk size 26194 +- lowindex [ 219826 : 250000 ] highIndex +- executable 565 mapping /usr/lib64/libopensc.so.8.0.0 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 26194 +- rest of chunk size 0 +- lowindex [ 0 : 26194 ] highIndex +- executable 565 mapping /usr/lib64/libopensc.so.8.0.0 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4276194 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 566 buildId 7b401f1b5992dd2c9386242164e9195b04894e40 exec /usr/lib64/opensc-pkcs11.so +-> caching - new mapping +=> found 3879 unwind entries for /usr/lib64/opensc-pkcs11.so low pc 9020 high pc 26fe5 +- current chunk size 3879 +- rest of chunk size 0 +- lowindex [ 26194 : 30073 ] highIndex +- executable 566 mapping /usr/lib64/opensc-pkcs11.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4280073 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 567 buildId 4407f7333e5bcb96a54db0c939dd19a770c73096 exec /usr/lib64/libtasn1.so.6.6.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4280073 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 567 buildId e8fad97f56aec95b74768777c51d757920ac956c exec /usr/lib64/pkcs11/p11-kit-trust.so +-> caching - new mapping +=> found 2284 unwind entries for /usr/lib64/pkcs11/p11-kit-trust.so low pc b020 high pc 226b0 +- current chunk size 2284 +- rest of chunk size 0 +- lowindex [ 30073 : 32357 ] highIndex +- executable 567 mapping /usr/lib64/pkcs11/p11-kit-trust.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4282357 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 568 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4282357 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 568 buildId 98a4d7f3627c7e5358e494fdca5014f0f56035e5 exec /usr/lib64/libnsssysinit.so +-> caching - new mapping +=> found 40 unwind entries for /usr/lib64/libnsssysinit.so low pc 1020 high pc 1bc3 +- current chunk size 40 +- rest of chunk size 0 +- lowindex [ 32357 : 32397 ] highIndex +- executable 568 mapping /usr/lib64/libnsssysinit.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4282397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 569 buildId 98f20f7212e76c47b2770220210ab9f94204aa33 exec /usr/lib64/libfreeblpriv3.so +-> caching - new mapping +=> found 7275 unwind entries for /usr/lib64/libfreeblpriv3.so low pc 4020 high pc 75499 +- current chunk size 7275 +- rest of chunk size 0 +- lowindex [ 32397 : 39672 ] highIndex +- executable 569 mapping /usr/lib64/libfreeblpriv3.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4289672 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 570 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4289672 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 570 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4289672 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 570 buildId b7ef4996f40ab32486dbd0636e450977b91c3f1d exec /usr/lib64/libsoftokn3.so +-> caching - new mapping +=> found 7208 unwind entries for /usr/lib64/libsoftokn3.so low pc 6020 high pc 3ba57 +- current chunk size 7208 +- rest of chunk size 0 +- lowindex [ 39672 : 46880 ] highIndex +- executable 570 mapping /usr/lib64/libsoftokn3.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 79b65472c4ae279af3974bd8c6bf01f56790c2ea exec /usr/lib64/libplds4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 6bf91f0466d158b9f127dab48daf3dd60ab17782 exec /usr/lib64/libplc4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 230846234ba17ea30abf4bc5d6db862e426403a0 exec /usr/lib64/libnssutil3.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 69f18bdda4a0d69b709352f2be54459ab1659196 exec /usr/lib64/libnspr4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 799c12abf237e79e52cf8218585d0c7306d6b295 exec /usr/lib64/libnss3.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 571 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.606125796Z caller=cpu.go:495 msg="adding unwind tables" pid=1746 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4296880 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5577f2a33000, StartAddr: 0x5577f2a38000, EndAddr: 0x5577f2a3d000, Executable:/usr/libexec/gsd-datetime} +[info] adding memory mappings in for executable with ID 571 buildId 2043d8466bc0f7aab54c0b841cc9713a8c71e81d exec /usr/libexec/gsd-datetime +-> caching - new mapping +=> found 467 unwind entries for /usr/libexec/gsd-datetime low pc 5020 high pc 9780 +- current chunk size 467 +- rest of chunk size 0 +- lowindex [ 46880 : 47347 ] highIndex +- executable 571 mapping /usr/libexec/gsd-datetime shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 6c0cf7ed0ae68dfd766f9b51f0fafec148f26f48 exec /usr/lib64/libpsl.so.5.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId cca2849f9a9455b56a137dec9e8accc8a5961c54 exec /usr/lib64/libsoup-2.4.so.1.11.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 0a332e520fa76e330ed920db7c5b690356165379 exec /usr/lib64/libnotify.so.4.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId dd681a0c8deafb5b74b4db22f1660bfe9a335bf7 exec /usr/lib64/libgeoclue-2.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId ea4a8e0748910e18c1f1da95fb8d1d8e29eea0ee exec /usr/lib64/libgweather-4.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 515d824ffa4c467cb843168c82597fbc17edf093 exec /usr/lib64/libgeocode-glib.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 572 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.610646055Z caller=cpu.go:495 msg="adding unwind tables" pid=1748 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4297347 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5590568a0000, StartAddr: 0x5590568aa000, EndAddr: 0x5590568c3000, Executable:/usr/libexec/gsd-media-keys} +[info] adding memory mappings in for executable with ID 572 buildId cc74a436f4b393283e5f29af91d2926a2bfd6655 exec /usr/libexec/gsd-media-keys +-> caching - new mapping +=> found 3644 unwind entries for /usr/libexec/gsd-media-keys low pc a020 high pc 22c3b +- current chunk size 3644 +- rest of chunk size 0 +- lowindex [ 47347 : 50991 ] highIndex +- executable 572 mapping /usr/libexec/gsd-media-keys shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId f4536b39fb2f8753c0db45928882de403544d065 exec /usr/lib64/libmp3lame.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId b598cda2eaa2c2fb17354412c79cdb44f0ccb3ab exec /usr/lib64/libmpg123.so.0.47.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId f73c5115cbf4ec03fd51199035e70105c452c9c9 exec /usr/lib64/libvorbisenc.so.2.0.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId d922cd73905353a5356f2aea7f43d7882b8b9725 exec /usr/lib64/libopus.so.0.8.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId b07e698f25b5c96b858a4224a09db7009edfd296 exec /usr/lib64/libFLAC.so.8.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId cfab038618d8b0517a9ea4cd9f61e8216ffbcbad exec /usr/lib64/libgsm.so.1.0.19 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId d678af207bf09791e59e87ef5745fa3654b54d3f exec /usr/lib64/libsndfile.so.1.0.34 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 4e12c4bfd3608b4e4b69679dbd61bed6e7fd1ab4 exec /usr/lib64/libasyncns.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 51b01a31c9c7cf0432f1ab32da1b3a324c6e75b6 exec /usr/lib64/libogg.so.0.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 54cf4100a162e93bf55de9202edd4e8ff274525f exec /usr/lib64/libvorbis.so.0.4.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 1b44db205944eb0f35256db3a2affc0c08a6ddf7 exec /usr/lib64/pulseaudio/libpulsecommon-15.0.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 1532b1808d5b274f11f88113949be033011ff02b exec /usr/lib64/libxkbregistry.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 9edcbed4921b56b70cc85d0de957223ffb025f62 exec /usr/lib64/libltdl.so.7.3.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 7ebf2a59a950b8d7a761e390ac5797777522309c exec /usr/lib64/libtdb.so.1.4.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 10808b8db3841e5245e38230e4b71ed26ec12929 exec /usr/lib64/libvorbisfile.so.3.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 3c4a279d030ea72be9a41649f31114395d89ea02 exec /usr/lib64/libupower-glib.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId d2900f143d90bfa10dbf7689bd5e10544cb46c6a exec /usr/lib64/libasound.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId beaaa27fe0fd81efbebebcb4f685bf0191b3ccd6 exec /usr/lib64/libpulse-mainloop-glib.so.0.0.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 47a56fe79c3265aad602438e6ea27960ae796f69 exec /usr/lib64/libpulse.so.0.24.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId f16ca87c7fc78a91cb0a0c517144cae855d9cdde exec /usr/lib64/libgnome-desktop-3.so.19.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId c63b1bf26abe8dc5021d958a0aadeaaa0317a934 exec /usr/lib64/libcanberra.so.0.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 573 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.622455617Z caller=cpu.go:495 msg="adding unwind tables" pid=1751 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4300991 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558ecac51000, StartAddr: 0x558ecac54000, EndAddr: 0x558ecac56000, Executable:/usr/libexec/gsd-screensaver-proxy} +[info] adding memory mappings in for executable with ID 573 buildId b19ffbb97cba0776dceb79c07fa8ecbf0fcecef1 exec /usr/libexec/gsd-screensaver-proxy +-> caching - new mapping +=> found 146 unwind entries for /usr/libexec/gsd-screensaver-proxy low pc 3020 high pc 4bb4 +- current chunk size 146 +- rest of chunk size 0 +- lowindex [ 50991 : 51137 ] highIndex +- executable 573 mapping /usr/libexec/gsd-screensaver-proxy shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 574 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.624608986Z caller=cpu.go:495 msg="adding unwind tables" pid=1754 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301137 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556b082d0000, StartAddr: 0x556b082d3000, EndAddr: 0x556b082d5000, Executable:/usr/libexec/gsd-sound} +[info] adding memory mappings in for executable with ID 574 buildId 5b28db52cafa21993c7f6a8e209ba063784824e0 exec /usr/libexec/gsd-sound +-> caching - new mapping +=> found 145 unwind entries for /usr/libexec/gsd-sound low pc 3020 high pc 4c05 +- current chunk size 145 +- rest of chunk size 0 +- lowindex [ 51137 : 51282 ] highIndex +- executable 574 mapping /usr/libexec/gsd-sound shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId f4536b39fb2f8753c0db45928882de403544d065 exec /usr/lib64/libmp3lame.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId b598cda2eaa2c2fb17354412c79cdb44f0ccb3ab exec /usr/lib64/libmpg123.so.0.47.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 51b01a31c9c7cf0432f1ab32da1b3a324c6e75b6 exec /usr/lib64/libogg.so.0.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId d922cd73905353a5356f2aea7f43d7882b8b9725 exec /usr/lib64/libopus.so.0.8.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId f73c5115cbf4ec03fd51199035e70105c452c9c9 exec /usr/lib64/libvorbisenc.so.2.0.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 54cf4100a162e93bf55de9202edd4e8ff274525f exec /usr/lib64/libvorbis.so.0.4.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId b07e698f25b5c96b858a4224a09db7009edfd296 exec /usr/lib64/libFLAC.so.8.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId cfab038618d8b0517a9ea4cd9f61e8216ffbcbad exec /usr/lib64/libgsm.so.1.0.19 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 4e12c4bfd3608b4e4b69679dbd61bed6e7fd1ab4 exec /usr/lib64/libasyncns.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId d678af207bf09791e59e87ef5745fa3654b54d3f exec /usr/lib64/libsndfile.so.1.0.34 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 1b44db205944eb0f35256db3a2affc0c08a6ddf7 exec /usr/lib64/pulseaudio/libpulsecommon-15.0.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 47a56fe79c3265aad602438e6ea27960ae796f69 exec /usr/lib64/libpulse.so.0.24.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 575 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.629581139Z caller=cpu.go:495 msg="adding unwind tables" pid=1756 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301282 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555ab7754000, StartAddr: 0x555ab7756000, EndAddr: 0x555ab7758000, Executable:/usr/libexec/gsd-a11y-settings} +[info] adding memory mappings in for executable with ID 575 buildId 916908a2d259a70df44e9f763aad61277c698da1 exec /usr/libexec/gsd-a11y-settings +-> caching - new mapping +=> found 115 unwind entries for /usr/libexec/gsd-a11y-settings low pc 2020 high pc 3334 +- current chunk size 115 +- rest of chunk size 0 +- lowindex [ 51282 : 51397 ] highIndex +- executable 575 mapping /usr/libexec/gsd-a11y-settings shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 576 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.632001763Z caller=cpu.go:495 msg="adding unwind tables" pid=1759 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301397 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ab84486000, StartAddr: 0x55ab8448a000, EndAddr: 0x55ab8448f000, Executable:/usr/libexec/gsd-housekeeping} +[info] adding memory mappings in for executable with ID 576 buildId 0214c9b56967c3339724a1022de2345a6372a4c7 exec /usr/libexec/gsd-housekeeping +-> caching - new mapping +=> found 405 unwind entries for /usr/libexec/gsd-housekeeping low pc 4020 high pc 88f4 +- current chunk size 405 +- rest of chunk size 0 +- lowindex [ 51397 : 51802 ] highIndex +- executable 576 mapping /usr/libexec/gsd-housekeeping shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 0a332e520fa76e330ed920db7c5b690356165379 exec /usr/lib64/libnotify.so.4.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 577 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.635373499Z caller=cpu.go:495 msg="adding unwind tables" pid=1763 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4301802 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a313a1b000, StartAddr: 0x55a313a21000, EndAddr: 0x55a313a2c000, Executable:/usr/libexec/gsd-power} +[info] adding memory mappings in for executable with ID 577 buildId 41d0ec7a0e5cc2e59a8450e3146f05ac92d3d928 exec /usr/libexec/gsd-power +-> caching - new mapping +=> found 1180 unwind entries for /usr/libexec/gsd-power low pc 6020 high pc 10466 +- current chunk size 1180 +- rest of chunk size 0 +- lowindex [ 51802 : 52982 ] highIndex +- executable 577 mapping /usr/libexec/gsd-power shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId bbf80c3788c9b836a1ae22bd23e75712368ce187 exec /usr/lib64/gio/modules/libdconfsettings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 51b01a31c9c7cf0432f1ab32da1b3a324c6e75b6 exec /usr/lib64/libogg.so.0.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 54cf4100a162e93bf55de9202edd4e8ff274525f exec /usr/lib64/libvorbis.so.0.4.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 1532b1808d5b274f11f88113949be033011ff02b exec /usr/lib64/libxkbregistry.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 7ebf2a59a950b8d7a761e390ac5797777522309c exec /usr/lib64/libtdb.so.1.4.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 9edcbed4921b56b70cc85d0de957223ffb025f62 exec /usr/lib64/libltdl.so.7.3.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 10808b8db3841e5245e38230e4b71ed26ec12929 exec /usr/lib64/libvorbisfile.so.3.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 3c4a279d030ea72be9a41649f31114395d89ea02 exec /usr/lib64/libupower-glib.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId d5f3b9224346958df49e5910c6dae59fc231848e exec /usr/lib64/libgthread-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId f16ca87c7fc78a91cb0a0c517144cae855d9cdde exec /usr/lib64/libgnome-desktop-3.so.19.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 0a332e520fa76e330ed920db7c5b690356165379 exec /usr/lib64/libnotify.so.4.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId c63b1bf26abe8dc5021d958a0aadeaaa0317a934 exec /usr/lib64/libcanberra.so.0.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId b81fdc47d251a69f1636c48f6e046c57f8fa997f exec /usr/lib64/libcanberra-gtk3.so.0.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId d1de3dcc0b95bb0277d7396ed48b0f5315038be8 exec /usr/lib64/gnome-settings-daemon-42/libgsd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 578 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.655453481Z caller=cpu.go:495 msg="adding unwind tables" pid=1845 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4302982 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55794e421000, StartAddr: 0x55794e424000, EndAddr: 0x55794e428000, Executable:/usr/libexec/gvfsd} +[info] adding memory mappings in for executable with ID 578 buildId 2b8b38e3fbe2b66217543a8663130e7c709f046d exec /usr/libexec/gvfsd +-> caching - new mapping +=> found 468 unwind entries for /usr/libexec/gvfsd low pc 3020 high pc 682f +- current chunk size 468 +- rest of chunk size 0 +- lowindex [ 52982 : 53450 ] highIndex +- executable 578 mapping /usr/libexec/gvfsd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 44ea3219dc031d2bf0d71313b0e3361933160dbc exec /usr/lib64/libgck-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 7ec83141645bfde8b4595371e01d67265136cc28 exec /usr/lib64/libsecret-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId dfabc79f8dd0d0bb993e8b4dc2b597a41443b7f3 exec /usr/lib64/libgcr-base-3.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4303450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 579 buildId 2757d56cf9b8cedad84c774aa17cce9b9c3ba8eb exec /usr/lib64/gvfs/libgvfsdaemon.so +-> caching - new mapping +=> found 4753 unwind entries for /usr/lib64/gvfs/libgvfsdaemon.so low pc b020 high pc 20eb6 +- current chunk size 4753 +- rest of chunk size 0 +- lowindex [ 53450 : 58203 ] highIndex +- executable 579 mapping /usr/lib64/gvfs/libgvfsdaemon.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4308203 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 580 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4308203 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4308203 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.66243866Z caller=cpu.go:495 msg="adding unwind tables" pid=1872 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4308203 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562eb1ff0000, StartAddr: 0x562eb1ff3000, EndAddr: 0x562eb2004000, Executable:/usr/sbin/pcscd} +[info] adding memory mappings in for executable with ID 580 buildId bf2dd8199ace0e96007d7e4da5440d4bd5622eb3 exec /usr/sbin/pcscd +-> caching - new mapping +=> found 1090 unwind entries for /usr/sbin/pcscd low pc 3020 high pc 13a07 +- current chunk size 1090 +- rest of chunk size 0 +- lowindex [ 58203 : 59293 ] highIndex +- executable 580 mapping /usr/sbin/pcscd shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 581 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.666447833Z caller=cpu.go:495 msg="adding unwind tables" pid=1919 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309293 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a07269e000, StartAddr: 0x55a0726a0000, EndAddr: 0x55a0726a3000, Executable:/usr/libexec/gsd-printer} +[info] adding memory mappings in for executable with ID 581 buildId e82c2d6d6d776d385a264adbf0fea7d378847be7 exec /usr/libexec/gsd-printer +-> caching - new mapping +=> found 262 unwind entries for /usr/libexec/gsd-printer low pc 2020 high pc 4df0 +- current chunk size 262 +- rest of chunk size 0 +- lowindex [ 59293 : 59555 ] highIndex +- executable 581 mapping /usr/libexec/gsd-printer shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 345872e1fd9fc345eccc8344049d028164796f36 exec /usr/lib64/libhogweed.so.6.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 15554c81e3ea5792d76ebfe663a5354944e3a0ab exec /usr/lib64/libnettle.so.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 4407f7333e5bcb96a54db0c939dd19a770c73096 exec /usr/lib64/libtasn1.so.6.6.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 8e40305f04041f14ebbb123182f15f67c4cec0af exec /usr/lib64/libgnutls.so.30.34.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 2f8fd2316bdf9e504a0362be708e745e85e89050 exec /usr/lib64/libavahi-client.so.3.2.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 73dc9fc24e164a6a81b597f4b2b6350837500dc5 exec /usr/lib64/libavahi-common.so.3.5.4 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 0a332e520fa76e330ed920db7c5b690356165379 exec /usr/lib64/libnotify.so.4.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 8e6eecca9052c33732bba209238d48154576619a exec /usr/lib64/libcups.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 582 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.677938238Z caller=cpu.go:495 msg="adding unwind tables" pid=1944 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4309555 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55be1a71e000, StartAddr: 0x55be1a726000, EndAddr: 0x55be1a741000, Executable:/usr/libexec/colord} +[info] adding memory mappings in for executable with ID 582 buildId 480a9fa5d1c328b99a618dc7c472a6524a0ac96b exec /usr/libexec/colord +-> caching - new mapping +=> found 3154 unwind entries for /usr/libexec/colord low pc 8020 high pc 224e3 +- current chunk size 3154 +- rest of chunk size 0 +- lowindex [ 59555 : 62709 ] highIndex +- executable 582 mapping /usr/libexec/colord shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId d2c387b3f8505ddfc3c28f3e495f5d633c179cb4 exec /usr/lib64/libusb-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 872247de58b36cee6aea8c1988b309831921ec17 exec /usr/lib64/libudev.so.1.7.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId e260bb4e1dd77f9ec33e9965ade2bb30c9ab1a60 exec /usr/lib64/libpolkit-gobject-1.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 43bc5fdf5281bde2d762dd322ba2715d45465e4f exec /usr/lib64/liblcms2.so.2.0.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4312709 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 583 buildId 31ee88f5bbfbb2a77e7b378a3f881cccd278150e exec /usr/lib64/libgusb.so.2.0.10 +-> caching - new mapping +=> found 1400 unwind entries for /usr/lib64/libgusb.so.2.0.10 low pc 5020 high pc c46c +- current chunk size 1400 +- rest of chunk size 0 +- lowindex [ 62709 : 64109 ] highIndex +- executable 583 mapping /usr/lib64/libgusb.so.2.0.10 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4314109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 584 buildId 93abb5324445582a0da95e246a0a0e5896fc3fec exec /usr/lib64/libgudev-1.0.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4314109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 584 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4314109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 584 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4314109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 584 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4314109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 584 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4314109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 584 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4314109 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 584 buildId 0bc4d0bb11900e11181dbc533253cbb7592fde9f exec /usr/lib64/libcolordprivate.so.2.0.5 +-> caching - new mapping +=> found 3922 unwind entries for /usr/lib64/libcolordprivate.so.2.0.5 low pc d020 high pc 2a3a7 +- current chunk size 3922 +- rest of chunk size 0 +- lowindex [ 64109 : 68031 ] highIndex +- executable 584 mapping /usr/lib64/libcolordprivate.so.2.0.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318031 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 585 buildId ca5a23962af8a1c5f5aa6728518b29ef0aaeadb0 exec /usr/lib64/colord-plugins/libcolord_sensor_scanner.so +-> caching - new mapping +=> found 56 unwind entries for /usr/lib64/colord-plugins/libcolord_sensor_scanner.so low pc 2020 high pc 2bf2 +- current chunk size 56 +- rest of chunk size 0 +- lowindex [ 68031 : 68087 ] highIndex +- executable 585 mapping /usr/lib64/colord-plugins/libcolord_sensor_scanner.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318087 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 586 buildId edd83043eab76d7eb5118ca70cc4b76eaf710966 exec /usr/lib64/colord-plugins/libcolord_sensor_camera.so +-> caching - new mapping +=> found 60 unwind entries for /usr/lib64/colord-plugins/libcolord_sensor_camera.so low pc 2020 high pc 2de2 +- current chunk size 60 +- rest of chunk size 0 +- lowindex [ 68087 : 68147 ] highIndex +- executable 586 mapping /usr/lib64/colord-plugins/libcolord_sensor_camera.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.688870711Z caller=cpu.go:495 msg="adding unwind tables" pid=1998 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 00fc6b73b50515dd6467f3f1319ac7d886f56134 exec /usr/bin/gjs-console +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 8d3773b4ff0382951bd3c72ac05aaacf988f8663 exec /usr/lib64/libmozjs-91.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 6400a9ff5aacf24bd96e2ae96b028f60a8ac91f7 exec /usr/lib64/libreadline.so.8.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 787ec16b76d1d533d95a328b5f368521fbd6ad8c exec /usr/lib64/libgirepository-1.0.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 4a42afc965a321b44209671264a8087ca580e065 exec /usr/lib64/libgjs.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 587 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.694678572Z caller=cpu.go:495 msg="adding unwind tables" pid=2017 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4318147 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555db4983000, StartAddr: 0x555db498b000, EndAddr: 0x555db49a5000, Executable:/usr/bin/ibus-daemon} +[info] adding memory mappings in for executable with ID 587 buildId e9b54066bbeebc119fb3afa6e3d86b2483e9b7be exec /usr/bin/ibus-daemon +-> caching - new mapping +=> found 4030 unwind entries for /usr/bin/ibus-daemon low pc 8020 high pc 21966 +- current chunk size 4030 +- rest of chunk size 0 +- lowindex [ 68147 : 72177 ] highIndex +- executable 587 mapping /usr/bin/ibus-daemon shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 318a00a117864007db35ca4d21e1e0fd498068c7 exec /usr/lib64/libibus-1.0.so.5.0.526 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 588 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.699807902Z caller=cpu.go:495 msg="adding unwind tables" pid=2022 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322177 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c125739000, StartAddr: 0x55c12573b000, EndAddr: 0x55c12573d000, Executable:/usr/libexec/ibus-dconf} +[info] adding memory mappings in for executable with ID 588 buildId 0c1e68e7310fac4eb91e5b8d5ae928ceb54ad289 exec /usr/libexec/ibus-dconf +-> caching - new mapping +=> found 112 unwind entries for /usr/libexec/ibus-dconf low pc 2020 high pc 385c +- current chunk size 112 +- rest of chunk size 0 +- lowindex [ 72177 : 72289 ] highIndex +- executable 588 mapping /usr/libexec/ibus-dconf shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 318a00a117864007db35ca4d21e1e0fd498068c7 exec /usr/lib64/libibus-1.0.so.5.0.526 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4322289 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 589 buildId 858b917a9d344e00f1170b7a80cc12bf0392f316 exec /usr/lib64/libdconf.so.1.0.0 +-> caching - new mapping +=> found 1266 unwind entries for /usr/lib64/libdconf.so.1.0.0 low pc 4020 high pc bdb1 +- current chunk size 1266 +- rest of chunk size 0 +- lowindex [ 72289 : 73555 ] highIndex +- executable 589 mapping /usr/lib64/libdconf.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4323555 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 590 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4323555 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4323555 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.703768383Z caller=cpu.go:495 msg="adding unwind tables" pid=2024 +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4323555 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55770c686000, StartAddr: 0x55770c689000, EndAddr: 0x55770c69b000, Executable:/usr/libexec/ibus-x11} +[info] adding memory mappings in for executable with ID 590 buildId 20c514f383fb1fdf94e632d8d305a37e1d82ff7d exec /usr/libexec/ibus-x11 +-> caching - new mapping +=> found 1299 unwind entries for /usr/libexec/ibus-x11 low pc 3020 high pc 14312 +- current chunk size 1299 +- rest of chunk size 0 +- lowindex [ 73555 : 74854 ] highIndex +- executable 590 mapping /usr/libexec/ibus-x11 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 17 , total entries: 4324854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 591 buildId 64049cdcd037a2bb436388b1cfa79972c764236d exec /usr/lib64/libnvidia-glcore.so.525.78.01 +-> caching - new mapping +=> found 630473 unwind entries for /usr/lib64/libnvidia-glcore.so.525.78.01 low pc 2d93b0 high pc 19522aa +- current chunk size 175146 +- rest of chunk size 455327 +- lowindex [ 74854 : 250000 ] highIndex +- executable 591 mapping /usr/lib64/libnvidia-glcore.so.525.78.01 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 250000 +- rest of chunk size 205327 +- lowindex [ 0 : 250000 ] highIndex +- executable 591 mapping /usr/lib64/libnvidia-glcore.so.525.78.01 shard 1 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 205327 +- rest of chunk size 0 +- lowindex [ 0 : 205327 ] highIndex +- executable 591 mapping /usr/lib64/libnvidia-glcore.so.525.78.01 shard 2 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4955327 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 592 buildId 4cb255019d26890bf60a248a1c4a4f552959b57e exec /usr/lib64/libnvidia-glsi.so.525.78.01 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4955327 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 592 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4955327 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 592 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4955327 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 592 buildId 2d9fc75546c0b8de6ddc04be19fe35c6952b9103 exec /usr/lib64/libGLX_nvidia.so.525.78.01 +-> caching - new mapping +=> found 20527 unwind entries for /usr/lib64/libGLX_nvidia.so.525.78.01 low pc 51020 high pc a9dae +- current chunk size 20527 +- rest of chunk size 0 +- lowindex [ 205327 : 225854 ] highIndex +- executable 592 mapping /usr/lib64/libGLX_nvidia.so.525.78.01 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 6ed08e90d0b6793be5e3141922608afe260c340d exec /usr/lib64/libGLdispatch.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 1cbc6f811d3526c7bc521b126de8a2fba8e7c57e exec /usr/lib64/libGL.so.1.7.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId f780db1b3e9dbfc97c4624e09a998a7eb41939a0 exec /usr/lib64/libGLX.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 53b0d3795a292fc05056188a8b579ac30570b1ec exec /usr/lib64/librt.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 137cc354b88e1106292b5c35ae6a93ad1cca530b exec /usr/lib64/libpthread.so.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 768a842bc0741478ded11a6209b709b6ff6ea43f exec /usr/lib64/libdatrie.so.1.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 0484a3aa6eef4713aedcdc43879f532bb3cd2a83 exec /usr/lib64/libXau.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId fe893e3ed153b8c8c3347ec00e082711932922c5 exec /usr/lib64/libjson-glib-1.0.so.0.600.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 22188325da084c8b7593246b89133c60cbb887f8 exec /usr/lib64/libstemmer.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 226ca9d87f62bfaab6c3bd131de8712b0508427c exec /usr/lib64/libatspi.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId efe241196bd7d87a220b593b4aac911a1245eaa0 exec /usr/lib64/libjpeg.so.62.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 99b9a7acf488f1ba90e661e72f2f4339e949fd15 exec /usr/lib64/libpixman-1.so.0.40.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 1fc9706bb40aafdbdbbd5b2848c22f3e92dfcd25 exec /usr/lib64/libxcb-shm.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId a2dd9b885b8bfa372eea8f2fa6ef4a12246e244e exec /usr/lib64/libxcb-render.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId d83e45af65a76864ac6281fe29ac231569dd1fc0 exec /usr/lib64/libXrender.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId aa1880aa826ab04bc5f76a75eb9dfdcb2bcfe0fd exec /usr/lib64/libpng16.so.16.37.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 4c8dbbf1b9525095953eed8c6b1c1ec341f201dd exec /usr/lib64/libgraphite2.so.3.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 2ca382240234988782dd8feef8b2a177967910f7 exec /usr/lib64/libfreetype.so.6.18.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 4804615085b42306f6ff115fc7a72f13cac48902 exec /usr/lib64/libthai.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 200fe5bc6e395606abf9dde7589ce24312d6a0d7 exec /usr/lib64/libxcb.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 263fea4a34f48553289080821d19ad7b95d05c3f exec /usr/lib64/libXinerama.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 7f086b48a366d9255c0a4cd150eac2acc0350e2b exec /usr/lib64/libXrandr.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 78d8d714541d91a338e675f607f2f17d42e3384b exec /usr/lib64/libXcomposite.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 7a48cfadedbb5f6d176951de6eddfc21e2feb5b1 exec /usr/lib64/libXdamage.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId a3522f5bc788e492ba2e88c94d9750a71ff0f262 exec /usr/lib64/libXcursor.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 061404f96f17a6c16d97462b0f1a1f8b3e5a8d7d exec /usr/lib64/libXext.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId c47ee78a4519345eebd70f1637f4df301a520848 exec /usr/lib64/libwayland-egl.so.1.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 01c8479ba0abb524bfd572849e23a4b9fb03d215 exec /usr/lib64/libxkbcommon.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 73e6aad72b0cf1173a7c48c12c19fe5c43c3bf75 exec /usr/lib64/libwayland-client.so.0.21.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId e07b6b143c0721641517e19cc1bcd22741cbd7f9 exec /usr/lib64/libtracker-sparql-3.0.so.0.303.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 3158cf35b3a6c3e548859a33e73dff89397803f1 exec /usr/lib64/libcloudproviders.so.0.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 6e8bbd08175f1a419df6928144afbc4812036fa7 exec /usr/lib64/libatk-bridge-2.0.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 0ccc880490eae8cf029bcc6ff32d68ffe419d330 exec /usr/lib64/libXi.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 49fe5f980885b21196324b1a8b5d7272b4ef71bd exec /usr/lib64/libepoxy.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 48fd640e661e5c51bc4f95248a90dc6b88b52d27 exec /usr/lib64/libatk-1.0.so.0.23809.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 52dceaadd4c907066045c755a4cd570a2d6cb2cf exec /usr/lib64/libgdk_pixbuf-2.0.so.0.4200.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 5fb4e52f968a7fc007fa665248e8c7cb98731b77 exec /usr/lib64/libcairo-gobject.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 6688f1fc6c9b821cf018e0dd28373e136563bf5d exec /usr/lib64/libfribidi.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 1ca98200237044246f30c154456a2a5cbfbee738 exec /usr/lib64/libfontconfig.so.1.12.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 47a1ddf0be64cc0e3efafc507fb9449f58d7b391 exec /usr/lib64/libpangoft2-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId e00fe0b867adf54566248726142decd11db47fac exec /usr/lib64/libcairo.so.2.11706.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 96e1e9d7ccc1f33228faa8703a1f0e21de81140b exec /usr/lib64/libharfbuzz.so.0.40000.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 5eb3d4c93c133c1c40201754cfda78fc4fe1e137 exec /usr/lib64/libpango-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId a9bd68356913e8e0137049a50402a366cca043d1 exec /usr/lib64/libX11.so.6.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 47a792ae171a75b39e85a92c1a32d20092cabe17 exec /usr/lib64/libgdk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 9c0da2433c7bfaabbbfaf6d6652bf46f383da176 exec /usr/lib64/libgtk-3.so.0.2404.31 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 22a22a1d56dc1eac17ce7c1fba97f248d33cf9b8 exec /usr/lib64/libpangocairo-1.0.so.0.5000.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 05ca943956cc57f5ef89ea183a192954ddac62f4 exec /usr/lib64/libXfixes.so.3.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 318a00a117864007db35ca4d21e1e0fd498068c7 exec /usr/lib64/libibus-1.0.so.5.0.526 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId b03d994f5b8bd7fafb69ecd69d1ba57f898cf085 exec /usr/lib64/libdl.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4975854 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 593 buildId 5b5267d2cf5c9e382edc2c92c6ae7142a8d9a56a exec /usr/lib64/libnvidia-tls.so.525.78.01 +-> caching - new mapping +=> found 404 unwind entries for /usr/lib64/libnvidia-tls.so.525.78.01 low pc 1020 high pc 2b8b +- current chunk size 404 +- rest of chunk size 0 +- lowindex [ 225854 : 226258 ] highIndex +- executable 593 mapping /usr/lib64/libnvidia-tls.so.525.78.01 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4976258 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 594 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4976258 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4976258 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.970134268Z caller=cpu.go:495 msg="adding unwind tables" pid=2030 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4976258 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dae5a1f000, StartAddr: 0x55dae5a24000, EndAddr: 0x55dae5a2b000, Executable:/usr/libexec/ibus-portal} +[info] adding memory mappings in for executable with ID 594 buildId ba491015f331e50ae526c5b1e0bceec170d234d4 exec /usr/libexec/ibus-portal +-> caching - new mapping +=> found 1154 unwind entries for /usr/libexec/ibus-portal low pc 5020 high pc b28a +- current chunk size 1154 +- rest of chunk size 0 +- lowindex [ 226258 : 227412 ] highIndex +- executable 594 mapping /usr/libexec/ibus-portal shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 318a00a117864007db35ca4d21e1e0fd498068c7 exec /usr/lib64/libibus-1.0.so.5.0.526 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 595 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.972462305Z caller=cpu.go:495 msg="adding unwind tables" pid=2035 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977412 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cd39ccf000, StartAddr: 0x55cd39cd0000, EndAddr: 0x55cd39cd1000, Executable:/usr/libexec/ibus-engine-simple} +[info] adding memory mappings in for executable with ID 595 buildId b58f444ca517947c98d941f5d0cebaabe34a1312 exec /usr/libexec/ibus-engine-simple +-> caching - new mapping +=> found 57 unwind entries for /usr/libexec/ibus-engine-simple low pc 1020 high pc 1a0c +- current chunk size 57 +- rest of chunk size 0 +- lowindex [ 227412 : 227469 ] highIndex +- executable 595 mapping /usr/libexec/ibus-engine-simple shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 4288cbdac48e91ce6635351747d54ec8ed95326e exec /usr/lib64/gvfs/libgvfscommon.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 7c531aec5f3f6c923c3b8bd5f9c01d586632eb0e exec /usr/lib64/gio/modules/libgvfsdbus.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 318a00a117864007db35ca4d21e1e0fd498068c7 exec /usr/lib64/libibus-1.0.so.5.0.526 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:50.974502349Z caller=cpu.go:495 msg="adding unwind tables" pid=2045 +level=info name=parca-agent ts=2023-01-25T11:15:50.974766492Z caller=cpu.go:495 msg="adding unwind tables" pid=2073 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557d1b5a8000, StartAddr: 0x557d1b5b4000, EndAddr: 0x557d1b641000, Executable:/usr/sbin/sshd} +[info] adding memory mappings in for executable with ID 596 buildId 95821265f13c432ab22fbfef77d6d7a9b1f6a754 exec /usr/sbin/sshd +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 3a68fe19586f46e1593df5e9e4e7d4e5ed9ae2a1 exec /usr/lib64/libpam_misc.so.0.82.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 6a83303073da04a0da55800159ecadecce21c795 exec /usr/lib64/security/pam_lastlog.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId a96111b1466674fa8802de6814ffeb3121062165 exec /usr/lib64/security/pam_umask.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 2a6727bad1741d8c1935e0e272a45f94829cccd4 exec /usr/lib64/security/pam_succeed_if.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId e7145864e2968e691df3a46068e289aac25f8afd exec /usr/lib64/security/pam_systemd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId b1e2ea5ac7e1fa8095e88439279d0614490bb29f exec /usr/lib64/security/pam_limits.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977469 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 596 buildId 50d0ba6d3dc0112ec38d53b9c6dc02c333a8439c exec /usr/lib64/security/pam_motd.so +-> caching - new mapping +=> found 73 unwind entries for /usr/lib64/security/pam_motd.so low pc 1020 high pc 1fd2 +- current chunk size 73 +- rest of chunk size 0 +- lowindex [ 227469 : 227542 ] highIndex +- executable 596 mapping /usr/lib64/security/pam_motd.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977542 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 597 buildId 988bd68e349570ecbb85906f17c8d2ebc5029911 exec /usr/lib64/security/pam_namespace.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977542 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 597 buildId 5f90bd55c4871fe6ec167abb3e5b4f10d7664a10 exec /usr/lib64/libcrack.so.2.9.0 +-> caching - new mapping +=> found 346 unwind entries for /usr/lib64/libcrack.so.2.9.0 low pc 4020 high pc 71a1 +- current chunk size 346 +- rest of chunk size 0 +- lowindex [ 227542 : 227888 ] highIndex +- executable 597 mapping /usr/lib64/libcrack.so.2.9.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4977888 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 598 buildId 0b75e5d76626fade5ed71784d8b57f402a0d7474 exec /usr/lib64/libpwquality.so.1.0.2 +-> caching - new mapping +=> found 245 unwind entries for /usr/lib64/libpwquality.so.1.0.2 low pc 2020 high pc 468c +- current chunk size 245 +- rest of chunk size 0 +- lowindex [ 227888 : 228133 ] highIndex +- executable 598 mapping /usr/lib64/libpwquality.so.1.0.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978133 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 599 buildId 0d9219fe3b54e964e09c165d792227751b917c0b exec /usr/lib64/security/pam_keyinit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978133 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 599 buildId 38a36d131ca1ef0a27d8175c9cebc69b25202677 exec /usr/lib64/security/pam_loginuid.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978133 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 599 buildId 2ed95e7bc8ea7c3f0afe909dc88288b42e8ed35d exec /usr/lib64/security/pam_selinux.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978133 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 599 buildId 53f20bc659454edf69549fc5188ff1d6426ded37 exec /usr/lib64/security/pam_pwquality.so +-> caching - new mapping +=> found 37 unwind entries for /usr/lib64/security/pam_pwquality.so low pc 1020 high pc 1c8f +- current chunk size 37 +- rest of chunk size 0 +- lowindex [ 228133 : 228170 ] highIndex +- executable 599 mapping /usr/lib64/security/pam_pwquality.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978170 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 600 buildId 502a7eeb9bee3a4bfed49cda2e28d15e947edb6e exec /usr/lib64/security/pam_permit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978170 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 600 buildId 5130242cbcb1acfeb3c479a1e326763885b73e7e exec /usr/lib64/security/pam_nologin.so +-> caching - new mapping +=> found 56 unwind entries for /usr/lib64/security/pam_nologin.so low pc 1020 high pc 1674 +- current chunk size 56 +- rest of chunk size 0 +- lowindex [ 228170 : 228226 ] highIndex +- executable 600 mapping /usr/lib64/security/pam_nologin.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978226 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 601 buildId c3a0a111fff5492dde59712f2eec6ca2010c3db4 exec /usr/lib64/security/pam_sepermit.so +-> caching - new mapping +=> found 67 unwind entries for /usr/lib64/security/pam_sepermit.so low pc 2020 high pc 3289 +- current chunk size 67 +- rest of chunk size 0 +- lowindex [ 228226 : 228293 ] highIndex +- executable 601 mapping /usr/lib64/security/pam_sepermit.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId f9fa08b5ce00bc8cfa34f3c43b385b65276c07b5 exec /usr/lib64/libnsl.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 3f71547e2718cd9fb8247a4efd07548f9db0dfba exec /usr/lib64/security/pam_deny.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 00ac86bed4af7f5350d9891b13c0cb2dfba9eb07 exec /usr/lib64/security/pam_sss.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 4fb63e4a2a82bfb7a33eddf15f6c6225469caf3e exec /usr/lib64/security/pam_unix.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId ec4901510d94c63c65ecf7d90012f760935f9766 exec /usr/lib64/security/pam_localuser.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId e27bcb812f6cb0900c9ecfc6dd053c38580887b4 exec /usr/lib64/security/pam_usertype.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 602 buildId 004cf435ad73d693842460559f372cb0653aad62 exec /usr/lib64/security/pam_faildelay.so +-> caching - new mapping +=> found 21 unwind entries for /usr/lib64/security/pam_faildelay.so low pc 1020 high pc 141a +- current chunk size 21 +- rest of chunk size 0 +- lowindex [ 228293 : 228314 ] highIndex +- executable 602 mapping /usr/lib64/security/pam_faildelay.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e64f037adaed159ab45b04f78749e59bf3243f0b exec /usr/lib64/security/pam_env.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.981165344Z caller=cpu.go:495 msg="adding unwind tables" pid=2080 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559608774000, StartAddr: 0x5596087ac000, EndAddr: 0x55960889e000, Executable:/usr/lib/systemd/systemd} +[info] adding memory mappings in for executable with ID 603 buildId e07b76a68d46d6098028ed5d50f4dfa83c490ab4 exec /usr/lib/systemd/systemd +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId d6980844066013271b32b9e7705e24b67ccf320b exec /usr/lib64/libbpf.so.0.8.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.984235037Z caller=cpu.go:495 msg="adding unwind tables" pid=2091 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5628147b8000, StartAddr: 0x5628147f0000, EndAddr: 0x5628148e2000, Executable:/usr/lib/systemd/systemd} +[info] adding memory mappings in for executable with ID 603 buildId e07b76a68d46d6098028ed5d50f4dfa83c490ab4 exec /usr/lib/systemd/systemd +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 3a68fe19586f46e1593df5e9e4e7d4e5ed9ae2a1 exec /usr/lib64/libpam_misc.so.0.82.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 3f71547e2718cd9fb8247a4efd07548f9db0dfba exec /usr/lib64/security/pam_deny.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2a6727bad1741d8c1935e0e272a45f94829cccd4 exec /usr/lib64/security/pam_succeed_if.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e7145864e2968e691df3a46068e289aac25f8afd exec /usr/lib64/security/pam_systemd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId b1e2ea5ac7e1fa8095e88439279d0614490bb29f exec /usr/lib64/security/pam_limits.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0d9219fe3b54e964e09c165d792227751b917c0b exec /usr/lib64/security/pam_keyinit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 988bd68e349570ecbb85906f17c8d2ebc5029911 exec /usr/lib64/security/pam_namespace.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 38a36d131ca1ef0a27d8175c9cebc69b25202677 exec /usr/lib64/security/pam_loginuid.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2ed95e7bc8ea7c3f0afe909dc88288b42e8ed35d exec /usr/lib64/security/pam_selinux.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 502a7eeb9bee3a4bfed49cda2e28d15e947edb6e exec /usr/lib64/security/pam_permit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 4fb63e4a2a82bfb7a33eddf15f6c6225469caf3e exec /usr/lib64/security/pam_unix.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId d6980844066013271b32b9e7705e24b67ccf320b exec /usr/lib64/libbpf.so.0.8.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 00ac86bed4af7f5350d9891b13c0cb2dfba9eb07 exec /usr/lib64/security/pam_sss.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e27bcb812f6cb0900c9ecfc6dd053c38580887b4 exec /usr/lib64/security/pam_usertype.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId ec4901510d94c63c65ecf7d90012f760935f9766 exec /usr/lib64/security/pam_localuser.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId f9fa08b5ce00bc8cfa34f3c43b385b65276c07b5 exec /usr/lib64/libnsl.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.988858056Z caller=cpu.go:495 msg="adding unwind tables" pid=2102 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557d1b5a8000, StartAddr: 0x557d1b5b4000, EndAddr: 0x557d1b641000, Executable:/usr/sbin/sshd} +[info] adding memory mappings in for executable with ID 603 buildId 95821265f13c432ab22fbfef77d6d7a9b1f6a754 exec /usr/sbin/sshd +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 3a68fe19586f46e1593df5e9e4e7d4e5ed9ae2a1 exec /usr/lib64/libpam_misc.so.0.82.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 6a83303073da04a0da55800159ecadecce21c795 exec /usr/lib64/security/pam_lastlog.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId a96111b1466674fa8802de6814ffeb3121062165 exec /usr/lib64/security/pam_umask.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2a6727bad1741d8c1935e0e272a45f94829cccd4 exec /usr/lib64/security/pam_succeed_if.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e7145864e2968e691df3a46068e289aac25f8afd exec /usr/lib64/security/pam_systemd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId b1e2ea5ac7e1fa8095e88439279d0614490bb29f exec /usr/lib64/security/pam_limits.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 50d0ba6d3dc0112ec38d53b9c6dc02c333a8439c exec /usr/lib64/security/pam_motd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 988bd68e349570ecbb85906f17c8d2ebc5029911 exec /usr/lib64/security/pam_namespace.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 5f90bd55c4871fe6ec167abb3e5b4f10d7664a10 exec /usr/lib64/libcrack.so.2.9.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0b75e5d76626fade5ed71784d8b57f402a0d7474 exec /usr/lib64/libpwquality.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0d9219fe3b54e964e09c165d792227751b917c0b exec /usr/lib64/security/pam_keyinit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 38a36d131ca1ef0a27d8175c9cebc69b25202677 exec /usr/lib64/security/pam_loginuid.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2ed95e7bc8ea7c3f0afe909dc88288b42e8ed35d exec /usr/lib64/security/pam_selinux.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 53f20bc659454edf69549fc5188ff1d6426ded37 exec /usr/lib64/security/pam_pwquality.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 502a7eeb9bee3a4bfed49cda2e28d15e947edb6e exec /usr/lib64/security/pam_permit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 5130242cbcb1acfeb3c479a1e326763885b73e7e exec /usr/lib64/security/pam_nologin.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId c3a0a111fff5492dde59712f2eec6ca2010c3db4 exec /usr/lib64/security/pam_sepermit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId f9fa08b5ce00bc8cfa34f3c43b385b65276c07b5 exec /usr/lib64/libnsl.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 3f71547e2718cd9fb8247a4efd07548f9db0dfba exec /usr/lib64/security/pam_deny.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 00ac86bed4af7f5350d9891b13c0cb2dfba9eb07 exec /usr/lib64/security/pam_sss.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 4fb63e4a2a82bfb7a33eddf15f6c6225469caf3e exec /usr/lib64/security/pam_unix.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId ec4901510d94c63c65ecf7d90012f760935f9766 exec /usr/lib64/security/pam_localuser.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e27bcb812f6cb0900c9ecfc6dd053c38580887b4 exec /usr/lib64/security/pam_usertype.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 004cf435ad73d693842460559f372cb0653aad62 exec /usr/lib64/security/pam_faildelay.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId e64f037adaed159ab45b04f78749e59bf3243f0b exec /usr/lib64/security/pam_env.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 603 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:50.992761485Z caller=cpu.go:495 msg="adding unwind tables" pid=2105 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4978314 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560dadcb6000, StartAddr: 0x560dadce5000, EndAddr: 0x560daddc8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 603 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - new mapping +=> found 19981 unwind entries for /usr/bin/bash low pc 2f020 high pc 111321 +- current chunk size 19981 +- rest of chunk size 0 +- lowindex [ 228314 : 248295 ] highIndex +- executable 603 mapping /usr/bin/bash shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.000174894Z caller=cpu.go:495 msg="adding unwind tables" pid=2284 +level=info name=parca-agent ts=2023-01-25T11:15:51.000396823Z caller=cpu.go:495 msg="adding unwind tables" pid=2331 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ca152fc000, StartAddr: 0x55ca1532b000, EndAddr: 0x55ca1540e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 604 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.000944593Z caller=cpu.go:495 msg="adding unwind tables" pid=2371 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557c92e22000, StartAddr: 0x557c92e51000, EndAddr: 0x557c92f34000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 604 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 604 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.042726372Z caller=cpu.go:495 msg="adding unwind tables" pid=2381 +======================================================================================== +setUnwindTable called (total shards: 19 , total entries: 4998295 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x400000, StartAddr: 0x400000, EndAddr: 0x474c000, Executable:/home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node} +[info] adding memory mappings in for executable with ID 604 buildId 1d7c138e4867722c82de22bab51eef3232beb1b0 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node +-> caching - new mapping +=> found 313337 unwind entries for /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node low pc a15210 high pc 2000191 +- current chunk size 1705 +- rest of chunk size 311632 +- lowindex [ 248295 : 250000 ] highIndex +- executable 604 mapping /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 250000 +- rest of chunk size 61632 +- lowindex [ 0 : 250000 ] highIndex +- executable 604 mapping /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node shard 1 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 61632 +- rest of chunk size 0 +- lowindex [ 0 : 61632 ] highIndex +- executable 604 mapping /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node shard 2 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5311632 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 605 buildId b5a7e087517a85ec02a780d044058729cbb00072 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/vsda/build/Release/vsda.node +-> caching - new mapping +=> found 143 unwind entries for /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/vsda/build/Release/vsda.node low pc 21e0 high pc 5415 +- current chunk size 143 +- rest of chunk size 0 +- lowindex [ 61632 : 61775 ] highIndex +- executable 605 mapping /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/vsda/build/Release/vsda.node shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5311775 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 606 buildId fde0cf7ae3565b26fffeb606d3fb20716c4a22cd exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/spdlog/build/Release/spdlog.node +-> caching - new mapping +=> found 3579 unwind entries for /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/spdlog/build/Release/spdlog.node low pc 260b0 high pc 59210 +- current chunk size 3579 +- rest of chunk size 0 +- lowindex [ 61775 : 65354 ] highIndex +- executable 606 mapping /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/spdlog/build/Release/spdlog.node shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId d2adea0bb9957ff20330e50a2eaeb95e2bcf6148 exec /usr/lib64/libnss_resolve.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId dafdffba96104f365a8ea751c4c97282f3c46263 exec /usr/lib64/libnss_myhostname.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId 137cc354b88e1106292b5c35ae6a93ad1cca530b exec /usr/lib64/libpthread.so.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId b03d994f5b8bd7fafb69ecd69d1ba57f898cf085 exec /usr/lib64/libdl.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId fe461d55e34f82892fff98869493b1faba410e52 exec /usr/lib64/libnss_mdns4_minimal.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.281556363Z caller=cpu.go:495 msg="adding unwind tables" pid=2429 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x400000, StartAddr: 0x400000, EndAddr: 0x474c000, Executable:/home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node} +[info] adding memory mappings in for executable with ID 607 buildId 1d7c138e4867722c82de22bab51eef3232beb1b0 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315354 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 607 buildId bbddbb897ad23ea16c97998d92f708f117528f66 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/node-pty/build/Release/pty.node +-> caching - new mapping +=> found 91 unwind entries for /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/node-pty/build/Release/pty.node low pc 2460 high pc 5905 +- current chunk size 91 +- rest of chunk size 0 +- lowindex [ 65354 : 65445 ] highIndex +- executable 607 mapping /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/node-pty/build/Release/pty.node shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 608 buildId fde0cf7ae3565b26fffeb606d3fb20716c4a22cd exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/spdlog/build/Release/spdlog.node +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 608 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 608 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 608 buildId 137cc354b88e1106292b5c35ae6a93ad1cca530b exec /usr/lib64/libpthread.so.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 608 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 608 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 608 buildId b03d994f5b8bd7fafb69ecd69d1ba57f898cf085 exec /usr/lib64/libdl.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315445 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 608 buildId 5273df80391eba1fcc74a184e66a6bc4a0a15916 exec /usr/lib64/libutil.so.1 +-> caching - new mapping +=> found 5 unwind entries for /usr/lib64/libutil.so.1 low pc 1020 high pc 1115 +- current chunk size 5 +- rest of chunk size 0 +- lowindex [ 65445 : 65450 ] highIndex +- executable 608 mapping /usr/lib64/libutil.so.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 609 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315450 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315450 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.320525043Z caller=cpu.go:495 msg="adding unwind tables" pid=2571 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315450 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x400000, StartAddr: 0x400000, EndAddr: 0x474c000, Executable:/home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node} +[info] adding memory mappings in for executable with ID 609 buildId 1d7c138e4867722c82de22bab51eef3232beb1b0 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315450 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315450 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315450 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5315450 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 609 buildId c8e7be08e00f53b66489178db08f7c49e0b123c0 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/@parcel/watcher/build/Release/watcher.node +-> caching - new mapping +=> found 3004 unwind entries for /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/@parcel/watcher/build/Release/watcher.node low pc 19810 high pc 5268a +- current chunk size 3004 +- rest of chunk size 0 +- lowindex [ 65450 : 68454 ] highIndex +- executable 609 mapping /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/@parcel/watcher/build/Release/watcher.node shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId 137cc354b88e1106292b5c35ae6a93ad1cca530b exec /usr/lib64/libpthread.so.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId b03d994f5b8bd7fafb69ecd69d1ba57f898cf085 exec /usr/lib64/libdl.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.355943054Z caller=cpu.go:495 msg="adding unwind tables" pid=2648 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x400000, StartAddr: 0x400000, EndAddr: 0x474c000, Executable:/home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node} +[info] adding memory mappings in for executable with ID 610 buildId 1d7c138e4867722c82de22bab51eef3232beb1b0 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId fde0cf7ae3565b26fffeb606d3fb20716c4a22cd exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/spdlog/build/Release/spdlog.node +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318454 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 610 buildId e0300be62967fe1308574fcc66903022fcd35109 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/native-watchdog/build/Release/watchdog.node +-> caching - new mapping +=> found 36 unwind entries for /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/native-watchdog/build/Release/watchdog.node low pc 9f0 high pc f8d +- current chunk size 36 +- rest of chunk size 0 +- lowindex [ 68454 : 68490 ] highIndex +- executable 610 mapping /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node_modules/native-watchdog/build/Release/watchdog.node shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId d2adea0bb9957ff20330e50a2eaeb95e2bcf6148 exec /usr/lib64/libnss_resolve.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId dafdffba96104f365a8ea751c4c97282f3c46263 exec /usr/lib64/libnss_myhostname.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 137cc354b88e1106292b5c35ae6a93ad1cca530b exec /usr/lib64/libpthread.so.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId b03d994f5b8bd7fafb69ecd69d1ba57f898cf085 exec /usr/lib64/libdl.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId fe461d55e34f82892fff98869493b1faba410e52 exec /usr/lib64/libnss_mdns4_minimal.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.360706669Z caller=cpu.go:495 msg="adding unwind tables" pid=3355 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563db57ad000, StartAddr: 0x563db57dc000, EndAddr: 0x563db58bf000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 611 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.361367632Z caller=cpu.go:495 msg="adding unwind tables" pid=5791 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cf1359e000, StartAddr: 0x55cf135cd000, EndAddr: 0x55cf136b0000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 611 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.361881193Z caller=cpu.go:495 msg="adding unwind tables" pid=7589 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.361929133Z caller=cpu.go:495 msg="adding unwind tables" pid=7738 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.361971804Z caller=cpu.go:495 msg="adding unwind tables" pid=9059 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.362012932Z caller=cpu.go:495 msg="adding unwind tables" pid=9551 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.362054346Z caller=cpu.go:495 msg="adding unwind tables" pid=9582 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.362096901Z caller=cpu.go:495 msg="adding unwind tables" pid=10214 +level=info name=parca-agent ts=2023-01-25T11:15:51.362308549Z caller=cpu.go:495 msg="adding unwind tables" pid=30597 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aa90b8a000, StartAddr: 0x55aa90bb9000, EndAddr: 0x55aa90c9c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 611 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.362827345Z caller=cpu.go:495 msg="adding unwind tables" pid=36511 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.362876742Z caller=cpu.go:495 msg="adding unwind tables" pid=37898 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.362918251Z caller=cpu.go:495 msg="adding unwind tables" pid=43553 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.362965401Z caller=cpu.go:495 msg="adding unwind tables" pid=43555 +level=info name=parca-agent ts=2023-01-25T11:15:51.393862617Z caller=cpu.go:495 msg="adding unwind tables" pid=45142 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x400000, StartAddr: 0x400000, EndAddr: 0x474c000, Executable:/home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node} +[info] adding memory mappings in for executable with ID 611 buildId 1d7c138e4867722c82de22bab51eef3232beb1b0 exec /home/javierhonduco/.vscode-server/bin/97dec172d3256f8ca4bfb2143f3f76b503ca0534/node +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +JIT section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId d2adea0bb9957ff20330e50a2eaeb95e2bcf6148 exec /usr/lib64/libnss_resolve.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId dafdffba96104f365a8ea751c4c97282f3c46263 exec /usr/lib64/libnss_myhostname.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 137cc354b88e1106292b5c35ae6a93ad1cca530b exec /usr/lib64/libpthread.so.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId b03d994f5b8bd7fafb69ecd69d1ba57f898cf085 exec /usr/lib64/libdl.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId fe461d55e34f82892fff98869493b1faba410e52 exec /usr/lib64/libnss_mdns4_minimal.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.395276137Z caller=cpu.go:495 msg="adding unwind tables" pid=47984 +level=info name=parca-agent ts=2023-01-25T11:15:51.395466539Z caller=cpu.go:495 msg="adding unwind tables" pid=48403 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56037823d000, StartAddr: 0x56037826c000, EndAddr: 0x56037834f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 611 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.39615416Z caller=cpu.go:495 msg="adding unwind tables" pid=49483 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559614e6f000, StartAddr: 0x559614e9e000, EndAddr: 0x559614f81000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 611 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 611 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.396775058Z caller=cpu.go:495 msg="adding unwind tables" pid=50786 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.396826389Z caller=cpu.go:495 msg="adding unwind tables" pid=53377 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.396869422Z caller=cpu.go:495 msg="adding unwind tables" pid=55567 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.396911946Z caller=cpu.go:495 msg="adding unwind tables" pid=55569 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.396953849Z caller=cpu.go:495 msg="adding unwind tables" pid=56628 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.396999853Z caller=cpu.go:495 msg="adding unwind tables" pid=56912 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397041236Z caller=cpu.go:495 msg="adding unwind tables" pid=56914 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397083595Z caller=cpu.go:495 msg="adding unwind tables" pid=57374 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397124962Z caller=cpu.go:495 msg="adding unwind tables" pid=57376 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397167035Z caller=cpu.go:495 msg="adding unwind tables" pid=60156 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397208404Z caller=cpu.go:495 msg="adding unwind tables" pid=61268 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397250699Z caller=cpu.go:495 msg="adding unwind tables" pid=61719 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397292337Z caller=cpu.go:495 msg="adding unwind tables" pid=67088 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397335655Z caller=cpu.go:495 msg="adding unwind tables" pid=67090 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.397377027Z caller=cpu.go:495 msg="adding unwind tables" pid=67685 +level=info name=parca-agent ts=2023-01-25T11:15:51.39769255Z caller=cpu.go:495 msg="adding unwind tables" pid=67757 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5318490 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b3e2085000, StartAddr: 0x55b3e208a000, EndAddr: 0x55b3e20a7000, Executable:/usr/bin/sudo} +[info] adding memory mappings in for executable with ID 611 buildId a418cd81c4355ee03aa1682fbb65c8412ba05d2c exec /usr/bin/sudo +-> caching - new mapping +=> found 2566 unwind entries for /usr/bin/sudo low pc 5020 high pc 21f22 +- current chunk size 2566 +- rest of chunk size 0 +- lowindex [ 68490 : 71056 ] highIndex +- executable 611 mapping /usr/bin/sudo shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId e7145864e2968e691df3a46068e289aac25f8afd exec /usr/lib64/security/pam_systemd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 5f90bd55c4871fe6ec167abb3e5b4f10d7664a10 exec /usr/lib64/libcrack.so.2.9.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 0b75e5d76626fade5ed71784d8b57f402a0d7474 exec /usr/lib64/libpwquality.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 2a6727bad1741d8c1935e0e272a45f94829cccd4 exec /usr/lib64/security/pam_succeed_if.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 3a68fe19586f46e1593df5e9e4e7d4e5ed9ae2a1 exec /usr/lib64/libpam_misc.so.0.82.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId b1e2ea5ac7e1fa8095e88439279d0614490bb29f exec /usr/lib64/security/pam_limits.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 0d9219fe3b54e964e09c165d792227751b917c0b exec /usr/lib64/security/pam_keyinit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 53f20bc659454edf69549fc5188ff1d6426ded37 exec /usr/lib64/security/pam_pwquality.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 502a7eeb9bee3a4bfed49cda2e28d15e947edb6e exec /usr/lib64/security/pam_permit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 3f71547e2718cd9fb8247a4efd07548f9db0dfba exec /usr/lib64/security/pam_deny.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 4fb63e4a2a82bfb7a33eddf15f6c6225469caf3e exec /usr/lib64/security/pam_unix.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 00ac86bed4af7f5350d9891b13c0cb2dfba9eb07 exec /usr/lib64/security/pam_sss.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId f9fa08b5ce00bc8cfa34f3c43b385b65276c07b5 exec /usr/lib64/libnsl.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId ec4901510d94c63c65ecf7d90012f760935f9766 exec /usr/lib64/security/pam_localuser.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId e27bcb812f6cb0900c9ecfc6dd053c38580887b4 exec /usr/lib64/security/pam_usertype.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 697b8c4aa28cffdd3167d6b3be754c9c46d1dc03 exec /usr/lib64/liblber-2.4.so.2 +-> caching - new mapping +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 8bd3cf5e7fe4ae648e6d6b1953efc3541ffe40bf exec /usr/lib64/libldap_r-2.4.so.2 +-> caching - new mapping +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5321056 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 612 buildId a21929948639cf000349997fcaf19e17133445c6 exec /usr/libexec/sudo/sudoers.so +-> caching - new mapping +=> found 7237 unwind entries for /usr/libexec/sudo/sudoers.so low pc b020 high pc 6025c +- current chunk size 7237 +- rest of chunk size 0 +- lowindex [ 71056 : 78293 ] highIndex +- executable 612 mapping /usr/libexec/sudo/sudoers.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5328293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 613 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5328293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 613 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5328293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 613 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5328293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 613 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5328293 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 613 buildId b9cc2b4769c870ca935bff1764dfb2b21ede8252 exec /usr/libexec/sudo/libsudo_util.so.0.0.0 +-> caching - new mapping +=> found 1999 unwind entries for /usr/libexec/sudo/libsudo_util.so.0.0.0 low pc 5020 high pc 135e1 +- current chunk size 1999 +- rest of chunk size 0 +- lowindex [ 78293 : 80292 ] highIndex +- executable 613 mapping /usr/libexec/sudo/libsudo_util.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330292 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 614 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330292 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 614 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330292 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 614 buildId 51b16e53187173af414bc2e663912f0fcd84755f exec /usr/lib64/security/pam_fprintd.so +-> caching - new mapping +=> found 99 unwind entries for /usr/lib64/security/pam_fprintd.so low pc 2020 high pc 4257 +- current chunk size 99 +- rest of chunk size 0 +- lowindex [ 80292 : 80391 ] highIndex +- executable 614 mapping /usr/lib64/security/pam_fprintd.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330391 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 615 buildId 004cf435ad73d693842460559f372cb0653aad62 exec /usr/lib64/security/pam_faildelay.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330391 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 615 buildId e64f037adaed159ab45b04f78749e59bf3243f0b exec /usr/lib64/security/pam_env.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330391 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 615 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330391 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330391 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.40838877Z caller=cpu.go:495 msg="adding unwind tables" pid=67758 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5330391 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5652df409000, StartAddr: 0x5652df40d000, EndAddr: 0x5652df428000, Executable:/usr/bin/grep} +[info] adding memory mappings in for executable with ID 615 buildId 90e7d8894b94f47ad17722ff8658f833f329b035 exec /usr/bin/grep +-> caching - new mapping +=> found 1886 unwind entries for /usr/bin/grep low pc 4020 high pc 1e202 +- current chunk size 1886 +- rest of chunk size 0 +- lowindex [ 80391 : 82277 ] highIndex +- executable 615 mapping /usr/bin/grep shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5332277 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 616 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5332277 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 616 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5332277 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 616 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5332277 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5332277 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.41046606Z caller=cpu.go:495 msg="adding unwind tables" pid=67759 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5332277 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562744ade000, StartAddr: 0x562744b4c000, EndAddr: 0x562744c6d000, Executable:/usr/sbin/bpftool} +[info] adding memory mappings in for executable with ID 616 buildId 18c5c11485ac91c15cd955540a61e41fe515fd75 exec /usr/sbin/bpftool +-> caching - new mapping +=> found 25986 unwind entries for /usr/sbin/bpftool low pc 6e020 high pc 18e06e +- current chunk size 25986 +- rest of chunk size 0 +- lowindex [ 82277 : 108263 ] highIndex +- executable 616 mapping /usr/sbin/bpftool shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5358263 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 617 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5358263 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 617 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5358263 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 617 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5358263 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 617 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5358263 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 617 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5358263 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5358263 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.421175409Z caller=cpu.go:495 msg="adding unwind tables" pid=67763 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.421228108Z caller=cpu.go:495 msg="adding unwind tables" pid=67768 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.421277948Z caller=cpu.go:495 msg="adding unwind tables" pid=67776 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.421323547Z caller=cpu.go:495 msg="adding unwind tables" pid=69806 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.421367096Z caller=cpu.go:495 msg="adding unwind tables" pid=70209 +level=info name=parca-agent ts=2023-01-25T11:15:51.423279306Z caller=cpu.go:495 msg="adding unwind tables" pid=70223 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5358263 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d3def7c000, StartAddr: 0x55d3defa4000, EndAddr: 0x55d3df264000, Executable:/home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby} +[info] adding memory mappings in for executable with ID 617 buildId bae4d9744266cf1f3e27a1ba7512c1c97b5e4a86 exec /home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby +-> caching - new mapping +=> found 60426 unwind entries for /home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby low pc 28020 high pc 2e75c2 +- current chunk size 60426 +- rest of chunk size 0 +- lowindex [ 108263 : 168689 ] highIndex +- executable 617 mapping /home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5418689 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 618 buildId 440ecb4e02d40e4aee29b0473a470afcf3ed3c6c exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/ripper.so +-> caching - new mapping +=> found 1119 unwind entries for /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/ripper.so low pc 6020 high pc 292f5 +- current chunk size 1119 +- rest of chunk size 0 +- lowindex [ 168689 : 169808 ] highIndex +- executable 618 mapping /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/ripper.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5419808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 619 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5419808 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 619 buildId 51ccd2377c851b68898be53bdf81595a2b3a230d exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/etc.so +-> caching - new mapping +=> found 222 unwind entries for /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/etc.so low pc 2020 high pc 43d0 +- current chunk size 222 +- rest of chunk size 0 +- lowindex [ 169808 : 170030 ] highIndex +- executable 619 mapping /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/etc.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420030 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 620 buildId 79d7152c050e7dc3af6d257e7c1d6bf0431de1f1 exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/io/console.so +-> caching - new mapping +=> found 493 unwind entries for /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/io/console.so low pc 2020 high pc 6338 +- current chunk size 493 +- rest of chunk size 0 +- lowindex [ 170030 : 170523 ] highIndex +- executable 620 mapping /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/io/console.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420523 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 621 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420523 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 621 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420523 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 621 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420523 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 621 buildId 1789047e437eb3b5ab06060560e12c5b9ddd684b exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/monitor.so +-> caching - new mapping +=> found 118 unwind entries for /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/monitor.so low pc 1020 high pc 18f7 +- current chunk size 118 +- rest of chunk size 0 +- lowindex [ 170523 : 170641 ] highIndex +- executable 621 mapping /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/monitor.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420641 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 622 buildId 3825c34fbaaef59c24e0e7dda2877564f6e8b44a exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/trans/transdb.so +-> caching - new mapping +=> found 18 unwind entries for /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/trans/transdb.so low pc 1020 high pc 1f74 +- current chunk size 18 +- rest of chunk size 0 +- lowindex [ 170641 : 170659 ] highIndex +- executable 622 mapping /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/trans/transdb.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420659 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 623 buildId 9993a33caa8f95603dce44f02af10df2dd01a86a exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/encdb.so +-> caching - new mapping +=> found 18 unwind entries for /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/encdb.so low pc 1020 high pc 1cb1 +- current chunk size 18 +- rest of chunk size 0 +- lowindex [ 170659 : 170677 ] highIndex +- executable 623 mapping /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/encdb.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420677 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 624 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420677 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420677 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.447258028Z caller=cpu.go:495 msg="adding unwind tables" pid=71049 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.447329115Z caller=cpu.go:495 msg="adding unwind tables" pid=71056 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.447378095Z caller=cpu.go:495 msg="adding unwind tables" pid=71057 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.447425181Z caller=cpu.go:495 msg="adding unwind tables" pid=71058 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.44747168Z caller=cpu.go:495 msg="adding unwind tables" pid=71059 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.447518454Z caller=cpu.go:495 msg="adding unwind tables" pid=71086 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.447563734Z caller=cpu.go:495 msg="adding unwind tables" pid=71087 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.447615099Z caller=cpu.go:495 msg="adding unwind tables" pid=71088 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.447660638Z caller=cpu.go:495 msg="adding unwind tables" pid=71089 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.44770561Z caller=cpu.go:495 msg="adding unwind tables" pid=71090 +level=info name=parca-agent ts=2023-01-25T11:15:51.447946681Z caller=cpu.go:495 msg="adding unwind tables" pid=72123 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420677 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fa0f7d4000, StartAddr: 0x55fa0f7d6000, EndAddr: 0x55fa0f7d9000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 624 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - new mapping +=> found 134 unwind entries for /usr/lib/systemd/systemd-userwork low pc 2020 high pc 49f1 +- current chunk size 134 +- rest of chunk size 0 +- lowindex [ 170677 : 170811 ] highIndex +- executable 624 mapping /usr/lib/systemd/systemd-userwork shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451319685Z caller=cpu.go:495 msg="adding unwind tables" pid=72603 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451366207Z caller=cpu.go:495 msg="adding unwind tables" pid=72604 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451405987Z caller=cpu.go:495 msg="adding unwind tables" pid=72605 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451444177Z caller=cpu.go:495 msg="adding unwind tables" pid=72606 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451483406Z caller=cpu.go:495 msg="adding unwind tables" pid=72986 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.45152099Z caller=cpu.go:495 msg="adding unwind tables" pid=73016 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451559252Z caller=cpu.go:495 msg="adding unwind tables" pid=73017 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451601685Z caller=cpu.go:495 msg="adding unwind tables" pid=73018 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451639848Z caller=cpu.go:495 msg="adding unwind tables" pid=73019 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.451676931Z caller=cpu.go:495 msg="adding unwind tables" pid=73359 +level=info name=parca-agent ts=2023-01-25T11:15:51.451832025Z caller=cpu.go:495 msg="adding unwind tables" pid=73452 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5629eb27b000, StartAddr: 0x5629eb27d000, EndAddr: 0x5629eb280000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 625 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.4742799Z caller=cpu.go:495 msg="adding unwind tables" pid=73557 +level=info name=parca-agent ts=2023-01-25T11:15:51.474452087Z caller=cpu.go:495 msg="adding unwind tables" pid=73843 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f14a9bb000, StartAddr: 0x55f14a9c0000, EndAddr: 0x55f14a9dd000, Executable:/usr/bin/sudo} +[info] adding memory mappings in for executable with ID 625 buildId a418cd81c4355ee03aa1682fbb65c8412ba05d2c exec /usr/bin/sudo +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2a6727bad1741d8c1935e0e272a45f94829cccd4 exec /usr/lib64/security/pam_succeed_if.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e7145864e2968e691df3a46068e289aac25f8afd exec /usr/lib64/security/pam_systemd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 5f90bd55c4871fe6ec167abb3e5b4f10d7664a10 exec /usr/lib64/libcrack.so.2.9.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 3a68fe19586f46e1593df5e9e4e7d4e5ed9ae2a1 exec /usr/lib64/libpam_misc.so.0.82.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId b1e2ea5ac7e1fa8095e88439279d0614490bb29f exec /usr/lib64/security/pam_limits.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 0d9219fe3b54e964e09c165d792227751b917c0b exec /usr/lib64/security/pam_keyinit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 0b75e5d76626fade5ed71784d8b57f402a0d7474 exec /usr/lib64/libpwquality.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 53f20bc659454edf69549fc5188ff1d6426ded37 exec /usr/lib64/security/pam_pwquality.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 502a7eeb9bee3a4bfed49cda2e28d15e947edb6e exec /usr/lib64/security/pam_permit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 4fb63e4a2a82bfb7a33eddf15f6c6225469caf3e exec /usr/lib64/security/pam_unix.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 00ac86bed4af7f5350d9891b13c0cb2dfba9eb07 exec /usr/lib64/security/pam_sss.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 3f71547e2718cd9fb8247a4efd07548f9db0dfba exec /usr/lib64/security/pam_deny.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId f9fa08b5ce00bc8cfa34f3c43b385b65276c07b5 exec /usr/lib64/libnsl.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId ec4901510d94c63c65ecf7d90012f760935f9766 exec /usr/lib64/security/pam_localuser.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId a21929948639cf000349997fcaf19e17133445c6 exec /usr/libexec/sudo/sudoers.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e27bcb812f6cb0900c9ecfc6dd053c38580887b4 exec /usr/lib64/security/pam_usertype.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 697b8c4aa28cffdd3167d6b3be754c9c46d1dc03 exec /usr/lib64/liblber-2.4.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 8bd3cf5e7fe4ae648e6d6b1953efc3541ffe40bf exec /usr/lib64/libldap_r-2.4.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId b9cc2b4769c870ca935bff1764dfb2b21ede8252 exec /usr/libexec/sudo/libsudo_util.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 51b16e53187173af414bc2e663912f0fcd84755f exec /usr/lib64/security/pam_fprintd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 004cf435ad73d693842460559f372cb0653aad62 exec /usr/lib64/security/pam_faildelay.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId e64f037adaed159ab45b04f78749e59bf3243f0b exec /usr/lib64/security/pam_env.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 625 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.478632357Z caller=cpu.go:495 msg="adding unwind tables" pid=73844 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5420811 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5644e3a13000, StartAddr: 0x5644e3a15000, EndAddr: 0x5644e3a19000, Executable:/usr/bin/tee} +[info] adding memory mappings in for executable with ID 625 buildId 45d02c76732c845f10fff62f0b7c5ff75a5efb4a exec /usr/bin/tee +-> caching - new mapping +=> found 194 unwind entries for /usr/bin/tee low pc 2020 high pc 5a42 +- current chunk size 194 +- rest of chunk size 0 +- lowindex [ 170811 : 171005 ] highIndex +- executable 625 mapping /usr/bin/tee shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:51.479173119Z caller=cpu.go:495 msg="adding unwind tables" pid=73845 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d5aee85000, StartAddr: 0x55d5aee87000, EndAddr: 0x55d5aee8a000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 626 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.487141467Z caller=cpu.go:495 msg="adding unwind tables" pid=73936 +level=debug name=parca-agent ts=2023-01-25T11:15:51.487166201Z caller=cpu.go:500 msg="failed to add unwind table" pid=73936 err="stat /proc/73936: no such file or directory" +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:15:51.487179726Z caller=cpu.go:495 msg="adding unwind tables" pid=73940 +level=debug name=parca-agent ts=2023-01-25T11:15:51.487188772Z caller=cpu.go:500 msg="failed to add unwind table" pid=73940 err="stat /proc/73940: no such file or directory" +unwind rows 171005 +~~ worked:, rows: 171005 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:15:53.114675198Z caller=cpu.go:495 msg="adding unwind tables" pid=73978 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55715e352000, StartAddr: 0x55715e381000, EndAddr: 0x55715e464000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 626 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 626 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:53.115574761Z caller=cpu.go:495 msg="adding unwind tables" pid=73982 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421005 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5610e77e1000, StartAddr: 0x5610e77e3000, EndAddr: 0x5610e77e7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 626 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - new mapping +=> found 167 unwind entries for /usr/bin/sleep low pc 2020 high pc 53e2 +- current chunk size 167 +- rest of chunk size 0 +- lowindex [ 171005 : 171172 ] highIndex +- executable 626 mapping /usr/bin/sleep shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:53.116583335Z caller=cpu.go:495 msg="adding unwind tables" pid=73987 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563f0e5db000, StartAddr: 0x563f0e60a000, EndAddr: 0x563f0e6ed000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:53.117328875Z caller=cpu.go:495 msg="adding unwind tables" pid=73993 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55febc782000, StartAddr: 0x55febc784000, EndAddr: 0x55febc788000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:15:53.356225676Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:15:53.415454255Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:15:53.416969917Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=70223 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:15:58.072199412Z caller=cpu.go:495 msg="adding unwind tables" pid=74038 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56206e46a000, StartAddr: 0x56206e499000, EndAddr: 0x56206e57c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:15:58.072793302Z caller=cpu.go:495 msg="adding unwind tables" pid=74042 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556230194000, StartAddr: 0x556230196000, EndAddr: 0x55623019a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:16:02.443111Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=3 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:16:03.077945788Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:16:03.07915064Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:16:03.080356518Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:16:03.085499036Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:16:03.085791022Z caller=cpu.go:495 msg="adding unwind tables" pid=74078 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f399070000, StartAddr: 0x55f39909f000, EndAddr: 0x55f399182000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:03.086656362Z caller=cpu.go:495 msg="adding unwind tables" pid=74082 +level=debug name=parca-agent ts=2023-01-25T11:16:03.08670594Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557f8e4bf000, StartAddr: 0x557f8e4c1000, EndAddr: 0x557f8e4c5000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:16:03.102820792Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:16:03.103389975Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=70223 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:16:08.072852167Z caller=cpu.go:495 msg="adding unwind tables" pid=74118 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560b37809000, StartAddr: 0x560b37838000, EndAddr: 0x560b3791b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:08.073604056Z caller=cpu.go:495 msg="adding unwind tables" pid=74122 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562b32f24000, StartAddr: 0x562b32f26000, EndAddr: 0x562b32f2a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:16:12.475167688Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:16:13.056962101Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:16:13.06160962Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=70223 +level=debug name=parca-agent ts=2023-01-25T11:16:13.06706209Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:16:13.072271489Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:16:13.075751691Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:16:13.078328706Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:16:13.166995397Z caller=cpu.go:495 msg="adding unwind tables" pid=74159 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e41e8e3000, StartAddr: 0x55e41e912000, EndAddr: 0x55e41e9f5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:13.169911348Z caller=cpu.go:495 msg="adding unwind tables" pid=74163 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a90aa19000, StartAddr: 0x55a90aa1b000, EndAddr: 0x55a90aa1f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:16:22.487154079Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:16:23.056708136Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=70223 +level=debug name=parca-agent ts=2023-01-25T11:16:23.057002794Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:16:23.058194717Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:16:23.059051602Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:16:23.05951516Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:16:23.060822993Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:16:23.071049159Z caller=cpu.go:495 msg="adding unwind tables" pid=74202 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564545f21000, StartAddr: 0x564545f49000, EndAddr: 0x564546209000, Executable:/home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby} +[info] adding memory mappings in for executable with ID 627 buildId bae4d9744266cf1f3e27a1ba7512c1c97b5e4a86 exec /home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 440ecb4e02d40e4aee29b0473a470afcf3ed3c6c exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/ripper.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 51ccd2377c851b68898be53bdf81595a2b3a230d exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/etc.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 79d7152c050e7dc3af6d257e7c1d6bf0431de1f1 exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/io/console.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1789047e437eb3b5ab06060560e12c5b9ddd684b exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/monitor.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3825c34fbaaef59c24e0e7dda2877564f6e8b44a exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/trans/transdb.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9993a33caa8f95603dce44f02af10df2dd01a86a exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/encdb.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:23.072918525Z caller=cpu.go:495 msg="adding unwind tables" pid=74245 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562cae6bd000, StartAddr: 0x562cae6ec000, EndAddr: 0x562cae7cf000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:23.073504534Z caller=cpu.go:495 msg="adding unwind tables" pid=74249 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e10f9fb000, StartAddr: 0x55e10f9fd000, EndAddr: 0x55e10fa01000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:16:28.06945291Z caller=cpu.go:495 msg="adding unwind tables" pid=74285 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559ba9250000, StartAddr: 0x559ba927f000, EndAddr: 0x559ba9362000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:28.070057957Z caller=cpu.go:495 msg="adding unwind tables" pid=74289 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bc6885d000, StartAddr: 0x55bc6885f000, EndAddr: 0x55bc68863000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:16:32.441151831Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:16:33.053980557Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:16:33.055626271Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:16:33.056951759Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:16:33.057960229Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:16:33.058245923Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:16:33.063180201Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:16:33.063704621Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:16:33.071958347Z caller=cpu.go:495 msg="adding unwind tables" pid=74319 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bdd76a6000, StartAddr: 0x55bdd76d5000, EndAddr: 0x55bdd77b8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:33.072844664Z caller=cpu.go:495 msg="adding unwind tables" pid=74323 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b455d1b000, StartAddr: 0x55b455d1d000, EndAddr: 0x55b455d21000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:16:38.064432448Z caller=cpu.go:495 msg="adding unwind tables" pid=74353 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5607506f1000, StartAddr: 0x560750720000, EndAddr: 0x560750803000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:38.064949913Z caller=cpu.go:495 msg="adding unwind tables" pid=74357 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562946ce0000, StartAddr: 0x562946ce2000, EndAddr: 0x562946ce6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:16:42.452271458Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:16:43.050299254Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:16:43.051146203Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:16:43.051639528Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:16:43.053257371Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:16:43.054019079Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:16:43.059881624Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:16:43.068167429Z caller=cpu.go:495 msg="adding unwind tables" pid=74387 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b176f52000, StartAddr: 0x55b176f81000, EndAddr: 0x55b177064000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:43.068815133Z caller=cpu.go:495 msg="adding unwind tables" pid=74391 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d9e0928000, StartAddr: 0x55d9e092a000, EndAddr: 0x55d9e092e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:16:48.065152145Z caller=cpu.go:495 msg="adding unwind tables" pid=74421 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5610c369a000, StartAddr: 0x5610c36c9000, EndAddr: 0x5610c37ac000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:48.065779046Z caller=cpu.go:495 msg="adding unwind tables" pid=74425 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aee54d2000, StartAddr: 0x55aee54d4000, EndAddr: 0x55aee54d8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:48.066282754Z caller=cpu.go:495 msg="adding unwind tables" pid=74430 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558deaafe000, StartAddr: 0x558deab2d000, EndAddr: 0x558deac10000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:48.06680948Z caller=cpu.go:495 msg="adding unwind tables" pid=74436 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558a9e6ca000, StartAddr: 0x558a9e6cc000, EndAddr: 0x558a9e6d0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:16:52.444132994Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:16:53.051219977Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:16:53.052956328Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:16:53.054510057Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:16:53.055865533Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:16:53.069620259Z caller=cpu.go:495 msg="adding unwind tables" pid=74475 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557b2a0c3000, StartAddr: 0x557b2a0f2000, EndAddr: 0x557b2a1d5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:53.070379005Z caller=cpu.go:495 msg="adding unwind tables" pid=74479 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5604f93af000, StartAddr: 0x5604f93b1000, EndAddr: 0x5604f93b5000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:16:58.091241087Z caller=cpu.go:495 msg="adding unwind tables" pid=74509 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562d40442000, StartAddr: 0x562d40471000, EndAddr: 0x562d40554000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:16:58.094432032Z caller=cpu.go:495 msg="adding unwind tables" pid=74513 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556f3aa29000, StartAddr: 0x556f3aa2b000, EndAddr: 0x556f3aa2f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:17:02.442771067Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=4 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:17:03.052571056Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:17:03.053004607Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:17:03.054469131Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:17:03.056608558Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:17:03.062084032Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:17:03.063554541Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:17:03.069722068Z caller=cpu.go:495 msg="adding unwind tables" pid=74543 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563231c01000, StartAddr: 0x563231c30000, EndAddr: 0x563231d13000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:03.070282006Z caller=cpu.go:495 msg="adding unwind tables" pid=74547 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ae924de000, StartAddr: 0x55ae924e0000, EndAddr: 0x55ae924e4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:17:08.087212482Z caller=cpu.go:495 msg="adding unwind tables" pid=74577 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f6aa2a2000, StartAddr: 0x55f6aa2d1000, EndAddr: 0x55f6aa3b4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:08.088064273Z caller=cpu.go:495 msg="adding unwind tables" pid=74581 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5562b6d8f000, StartAddr: 0x5562b6d91000, EndAddr: 0x5562b6d95000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:17:12.437564475Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:17:13.052079924Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:17:13.054340979Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:17:13.055674838Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:17:13.056856506Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:17:13.061872202Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:17:13.064487806Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:17:13.064762576Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:17:13.069707374Z caller=cpu.go:495 msg="adding unwind tables" pid=74611 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e36fef6000, StartAddr: 0x55e36ff25000, EndAddr: 0x55e370008000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:13.070480095Z caller=cpu.go:495 msg="adding unwind tables" pid=74615 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b4cd179000, StartAddr: 0x55b4cd17b000, EndAddr: 0x55b4cd17f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:17:18.096009794Z caller=cpu.go:495 msg="adding unwind tables" pid=74645 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fe7d057000, StartAddr: 0x55fe7d086000, EndAddr: 0x55fe7d169000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:18.096988302Z caller=cpu.go:495 msg="adding unwind tables" pid=74649 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d44a4c1000, StartAddr: 0x55d44a4c3000, EndAddr: 0x55d44a4c7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:17:22.43954108Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:17:23.051435123Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:17:23.053406165Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:17:23.055175625Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:17:23.058011881Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:17:23.058266116Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:17:23.062322029Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:17:23.063356891Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:17:23.067734271Z caller=cpu.go:495 msg="adding unwind tables" pid=74679 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d1ae5ed000, StartAddr: 0x55d1ae61c000, EndAddr: 0x55d1ae6ff000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:23.068356578Z caller=cpu.go:495 msg="adding unwind tables" pid=74683 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559634b98000, StartAddr: 0x559634b9a000, EndAddr: 0x559634b9e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:17:28.070468001Z caller=cpu.go:495 msg="adding unwind tables" pid=74719 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bbf27db000, StartAddr: 0x55bbf280a000, EndAddr: 0x55bbf28ed000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:28.071347909Z caller=cpu.go:495 msg="adding unwind tables" pid=74723 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5556f8325000, StartAddr: 0x5556f8327000, EndAddr: 0x5556f832b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:17:32.464460817Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:17:33.04998812Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:17:33.051058157Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:17:33.052337148Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:17:33.054035779Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:17:33.059198544Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:17:33.059664511Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:17:33.065334523Z caller=cpu.go:495 msg="adding unwind tables" pid=74749 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561ff2774000, StartAddr: 0x561ff27a3000, EndAddr: 0x561ff2886000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:33.065922439Z caller=cpu.go:495 msg="adding unwind tables" pid=75319 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fa9d4dd000, StartAddr: 0x55fa9d50c000, EndAddr: 0x55fa9d5ef000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:33.066381358Z caller=cpu.go:495 msg="adding unwind tables" pid=75323 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5632098ee000, StartAddr: 0x5632098f0000, EndAddr: 0x5632098f4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:17:38.074718824Z caller=cpu.go:495 msg="adding unwind tables" pid=75373 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c100256000, StartAddr: 0x55c100285000, EndAddr: 0x55c100368000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:38.075608084Z caller=cpu.go:495 msg="adding unwind tables" pid=75377 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55eaaae46000, StartAddr: 0x55eaaae48000, EndAddr: 0x55eaaae4c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:17:42.438956853Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:17:43.050094137Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:17:43.053799738Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:17:43.055330259Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:17:43.056407167Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:17:43.057242518Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:17:43.061322846Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:17:43.062518525Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:17:43.062904599Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:17:43.065274996Z caller=cpu.go:495 msg="adding unwind tables" pid=75432 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557cf2c65000, StartAddr: 0x557cf2c94000, EndAddr: 0x557cf2d77000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:43.065782364Z caller=cpu.go:495 msg="adding unwind tables" pid=75436 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56010fae9000, StartAddr: 0x56010faeb000, EndAddr: 0x56010faef000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:17:48.071743233Z caller=cpu.go:495 msg="adding unwind tables" pid=75469 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a07ea75000, StartAddr: 0x55a07eaa4000, EndAddr: 0x55a07eb87000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:48.072574813Z caller=cpu.go:495 msg="adding unwind tables" pid=75473 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5610a0a8b000, StartAddr: 0x5610a0a8d000, EndAddr: 0x5610a0a91000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:17:52.436312102Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:17:53.050243059Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:17:53.050595036Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:17:53.051471977Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:17:53.05351902Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:17:53.054604691Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:17:53.055585418Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:17:53.068848252Z caller=cpu.go:495 msg="adding unwind tables" pid=75503 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55659d22f000, StartAddr: 0x55659d25e000, EndAddr: 0x55659d341000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:53.069520942Z caller=cpu.go:495 msg="adding unwind tables" pid=75507 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564855b6c000, StartAddr: 0x564855b6e000, EndAddr: 0x564855b72000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:17:58.069534701Z caller=cpu.go:495 msg="adding unwind tables" pid=75537 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aff7034000, StartAddr: 0x55aff7063000, EndAddr: 0x55aff7146000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:17:58.070312248Z caller=cpu.go:495 msg="adding unwind tables" pid=75541 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562030b24000, StartAddr: 0x562030b26000, EndAddr: 0x562030b2a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:18:02.441758485Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:18:03.050310389Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:18:03.052284841Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:18:03.054220085Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:18:03.062031499Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:18:03.062171664Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:18:03.062886149Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:18:03.07509503Z caller=cpu.go:495 msg="adding unwind tables" pid=75571 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5562043d7000, StartAddr: 0x556204406000, EndAddr: 0x5562044e9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:03.076244818Z caller=cpu.go:495 msg="adding unwind tables" pid=75575 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559b82758000, StartAddr: 0x559b8275a000, EndAddr: 0x559b8275e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:18:08.07822563Z caller=cpu.go:495 msg="adding unwind tables" pid=75605 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559e7c048000, StartAddr: 0x559e7c077000, EndAddr: 0x559e7c15a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:08.07909162Z caller=cpu.go:495 msg="adding unwind tables" pid=75609 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564a35752000, StartAddr: 0x564a35754000, EndAddr: 0x564a35758000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:18:12.437074142Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:18:13.055651116Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:18:13.06402202Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:18:13.070783756Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:18:13.075627842Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:18:13.125181122Z caller=cpu.go:495 msg="adding unwind tables" pid=75639 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562c9024e000, StartAddr: 0x562c9027d000, EndAddr: 0x562c90360000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:13.126406638Z caller=cpu.go:495 msg="adding unwind tables" pid=75643 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55976fc5e000, StartAddr: 0x55976fc60000, EndAddr: 0x55976fc64000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:18:18.066476874Z caller=cpu.go:495 msg="adding unwind tables" pid=75673 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d99734b000, StartAddr: 0x55d99737a000, EndAddr: 0x55d99745d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:18.067265993Z caller=cpu.go:495 msg="adding unwind tables" pid=75677 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f5d136f000, StartAddr: 0x55f5d1371000, EndAddr: 0x55f5d1375000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:18:22.480316487Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=4 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:18:23.060001635Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:18:23.087826482Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:18:23.093476901Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:18:23.097893474Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:18:23.101417435Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:18:23.104028056Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:18:23.127696838Z caller=cpu.go:495 msg="adding unwind tables" pid=75707 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5620ffa22000, StartAddr: 0x5620ffa51000, EndAddr: 0x5620ffb34000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:23.130291024Z caller=cpu.go:495 msg="adding unwind tables" pid=75711 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557be95f4000, StartAddr: 0x557be95f6000, EndAddr: 0x557be95fa000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:18:28.065999579Z caller=cpu.go:495 msg="adding unwind tables" pid=75741 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ed04723000, StartAddr: 0x55ed04752000, EndAddr: 0x55ed04835000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:28.06664376Z caller=cpu.go:495 msg="adding unwind tables" pid=75745 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f27806f000, StartAddr: 0x55f278071000, EndAddr: 0x55f278075000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:18:32.457438217Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:18:33.04938512Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:18:33.049491564Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:18:33.050414812Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:18:33.051240105Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:18:33.052652575Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:18:33.053909198Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:18:33.058526644Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:18:33.066898957Z caller=cpu.go:495 msg="adding unwind tables" pid=75775 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c23f6dd000, StartAddr: 0x55c23f70c000, EndAddr: 0x55c23f7ef000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:33.067674373Z caller=cpu.go:495 msg="adding unwind tables" pid=75779 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555b32893000, StartAddr: 0x555b32895000, EndAddr: 0x555b32899000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:18:38.064813282Z caller=cpu.go:495 msg="adding unwind tables" pid=75780 +level=info name=parca-agent ts=2023-01-25T11:18:38.065043268Z caller=cpu.go:495 msg="adding unwind tables" pid=75810 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d326991000, StartAddr: 0x55d3269c0000, EndAddr: 0x55d326aa3000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:38.065612708Z caller=cpu.go:495 msg="adding unwind tables" pid=75814 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f0eeb6e000, StartAddr: 0x55f0eeb70000, EndAddr: 0x55f0eeb74000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:18:42.467249479Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:18:43.050579661Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:18:43.055986514Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:18:43.057923874Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:18:43.05854002Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:18:43.059684294Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:18:43.059776437Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:18:43.061117399Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:18:43.068938371Z caller=cpu.go:495 msg="adding unwind tables" pid=75855 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b192f8d000, StartAddr: 0x55b192fbc000, EndAddr: 0x55b19309f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:43.06957699Z caller=cpu.go:495 msg="adding unwind tables" pid=75859 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ede664f000, StartAddr: 0x55ede6651000, EndAddr: 0x55ede6655000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:18:48.064404746Z caller=cpu.go:495 msg="adding unwind tables" pid=75898 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557750471000, StartAddr: 0x5577504a0000, EndAddr: 0x557750583000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:48.065066206Z caller=cpu.go:495 msg="adding unwind tables" pid=75902 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b8eccd8000, StartAddr: 0x55b8eccda000, EndAddr: 0x55b8eccde000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:18:52.466892003Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:18:53.049535282Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:18:53.050019291Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:18:53.050085039Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:18:53.054989899Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:18:53.056072337Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:18:53.05687846Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:18:53.065804379Z caller=cpu.go:495 msg="adding unwind tables" pid=75932 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c0f41a9000, StartAddr: 0x55c0f41d8000, EndAddr: 0x55c0f42bb000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:53.066455024Z caller=cpu.go:495 msg="adding unwind tables" pid=75936 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e677907000, StartAddr: 0x55e677909000, EndAddr: 0x55e67790d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:18:58.065995888Z caller=cpu.go:495 msg="adding unwind tables" pid=75986 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5593998c4000, StartAddr: 0x5593998f3000, EndAddr: 0x5593999d6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:18:58.066706429Z caller=cpu.go:495 msg="adding unwind tables" pid=75990 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556b11de2000, StartAddr: 0x556b11de4000, EndAddr: 0x556b11de8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:19:02.467433635Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:19:03.049516037Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:19:03.050405463Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:19:03.051237215Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=75932 +level=debug name=parca-agent ts=2023-01-25T11:19:03.051316178Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:19:03.052259345Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:19:03.05848508Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:19:03.06183112Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=75986 +level=debug name=parca-agent ts=2023-01-25T11:19:03.061910142Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:19:03.070087583Z caller=cpu.go:495 msg="adding unwind tables" pid=76020 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561b2b38f000, StartAddr: 0x561b2b3be000, EndAddr: 0x561b2b4a1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:03.070898533Z caller=cpu.go:495 msg="adding unwind tables" pid=76024 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564bea4d7000, StartAddr: 0x564bea4d9000, EndAddr: 0x564bea4dd000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:19:08.096097296Z caller=cpu.go:495 msg="adding unwind tables" pid=76054 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561be7bea000, StartAddr: 0x561be7c19000, EndAddr: 0x561be7cfc000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:08.098349347Z caller=cpu.go:495 msg="adding unwind tables" pid=76058 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600f061e000, StartAddr: 0x5600f0620000, EndAddr: 0x5600f0624000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:19:12.435765624Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:19:13.049170528Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:19:13.053125801Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:19:13.054283143Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:19:13.054753618Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:19:13.055607158Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:19:13.055882559Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:19:13.066342768Z caller=cpu.go:495 msg="adding unwind tables" pid=76088 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5556b3532000, StartAddr: 0x5556b3561000, EndAddr: 0x5556b3644000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:13.066886318Z caller=cpu.go:495 msg="adding unwind tables" pid=76092 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55db4b74c000, StartAddr: 0x55db4b74e000, EndAddr: 0x55db4b752000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:19:18.071791479Z caller=cpu.go:495 msg="adding unwind tables" pid=76141 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558cfa5df000, StartAddr: 0x558cfa60e000, EndAddr: 0x558cfa6f1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:18.072904571Z caller=cpu.go:495 msg="adding unwind tables" pid=76145 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bb7b9c1000, StartAddr: 0x55bb7b9c3000, EndAddr: 0x55bb7b9c7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:19:22.431656356Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:19:23.049965073Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:19:23.050503158Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:19:23.051375711Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:19:23.053425671Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:19:23.055450593Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:19:23.05556257Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:19:23.059278641Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:19:23.068381789Z caller=cpu.go:495 msg="adding unwind tables" pid=76206 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a87b970000, StartAddr: 0x55a87b99f000, EndAddr: 0x55a87ba82000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:23.069010041Z caller=cpu.go:495 msg="adding unwind tables" pid=76210 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556a986dd000, StartAddr: 0x556a986df000, EndAddr: 0x556a986e3000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:19:28.088120884Z caller=cpu.go:495 msg="adding unwind tables" pid=76240 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559f53e63000, StartAddr: 0x559f53e92000, EndAddr: 0x559f53f75000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:28.089462353Z caller=cpu.go:495 msg="adding unwind tables" pid=76244 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56531729b000, StartAddr: 0x56531729d000, EndAddr: 0x5653172a1000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:19:32.433313037Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:19:33.049921102Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:19:33.051412336Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:19:33.053113267Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:19:33.054860023Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:19:33.055560712Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:19:33.06681794Z caller=cpu.go:495 msg="adding unwind tables" pid=76282 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fde7ca6000, StartAddr: 0x55fde7cd5000, EndAddr: 0x55fde7db8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:33.0674385Z caller=cpu.go:495 msg="adding unwind tables" pid=76286 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564fc1f63000, StartAddr: 0x564fc1f65000, EndAddr: 0x564fc1f69000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:19:38.069991526Z caller=cpu.go:495 msg="adding unwind tables" pid=76325 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557001285000, StartAddr: 0x5570012b4000, EndAddr: 0x557001397000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:38.070702953Z caller=cpu.go:495 msg="adding unwind tables" pid=76329 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559e06c32000, StartAddr: 0x559e06c34000, EndAddr: 0x559e06c38000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:19:42.435413705Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:19:43.049228159Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:19:43.05025193Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:19:43.051059218Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:19:43.052415042Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:19:43.052733876Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:19:43.059508372Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:19:43.067684255Z caller=cpu.go:495 msg="adding unwind tables" pid=76367 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5599c81a4000, StartAddr: 0x5599c81d3000, EndAddr: 0x5599c82b6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:43.068196013Z caller=cpu.go:495 msg="adding unwind tables" pid=76371 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d6b81e0000, StartAddr: 0x55d6b81e2000, EndAddr: 0x55d6b81e6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:19:48.067090664Z caller=cpu.go:495 msg="adding unwind tables" pid=76401 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56540e22c000, StartAddr: 0x56540e25b000, EndAddr: 0x56540e33e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:48.068016605Z caller=cpu.go:495 msg="adding unwind tables" pid=76405 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55be303b1000, StartAddr: 0x55be303b3000, EndAddr: 0x55be303b7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:19:52.434300489Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:19:53.049132354Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:19:53.050191648Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:19:53.051257122Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:19:53.052962946Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:19:53.053335756Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:19:53.053769043Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:19:53.065094229Z caller=cpu.go:495 msg="adding unwind tables" pid=76435 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5618c7b57000, StartAddr: 0x5618c7b86000, EndAddr: 0x5618c7c69000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:53.065633992Z caller=cpu.go:495 msg="adding unwind tables" pid=76439 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562011a89000, StartAddr: 0x562011a8b000, EndAddr: 0x562011a8f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:19:58.064785045Z caller=cpu.go:495 msg="adding unwind tables" pid=76440 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ec3f650000, StartAddr: 0x55ec3f652000, EndAddr: 0x55ec3f655000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:58.067599074Z caller=cpu.go:495 msg="adding unwind tables" pid=76470 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56254f11a000, StartAddr: 0x56254f149000, EndAddr: 0x56254f22c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:19:58.0680698Z caller=cpu.go:495 msg="adding unwind tables" pid=76474 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559504c7b000, StartAddr: 0x559504c7d000, EndAddr: 0x559504c81000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:20:02.452136673Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:20:03.049887424Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:20:03.050693246Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:20:03.051194755Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:20:03.055822617Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:20:03.056028782Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:20:03.057367299Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:20:03.062289873Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:20:03.067881636Z caller=cpu.go:495 msg="adding unwind tables" pid=76505 +level=info name=parca-agent ts=2023-01-25T11:20:03.068172444Z caller=cpu.go:495 msg="adding unwind tables" pid=76506 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564145550000, StartAddr: 0x56414557f000, EndAddr: 0x564145662000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:03.069006475Z caller=cpu.go:495 msg="adding unwind tables" pid=76510 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563b4da68000, StartAddr: 0x563b4da6a000, EndAddr: 0x563b4da6e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:20:08.069153083Z caller=cpu.go:495 msg="adding unwind tables" pid=76540 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5590650fb000, StartAddr: 0x55906512a000, EndAddr: 0x55906520d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:08.069936573Z caller=cpu.go:495 msg="adding unwind tables" pid=76544 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556a80381000, StartAddr: 0x556a80383000, EndAddr: 0x556a80387000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:20:12.433021627Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:20:13.051873943Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:20:13.054112683Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:20:13.059343841Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:20:13.065285692Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:20:13.070543088Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:20:13.123061064Z caller=cpu.go:495 msg="adding unwind tables" pid=76574 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5604b1d75000, StartAddr: 0x5604b1da4000, EndAddr: 0x5604b1e87000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:13.125952043Z caller=cpu.go:495 msg="adding unwind tables" pid=76578 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558534e1d000, StartAddr: 0x558534e1f000, EndAddr: 0x558534e23000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:20:18.067140423Z caller=cpu.go:495 msg="adding unwind tables" pid=76608 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cb674bc000, StartAddr: 0x55cb674eb000, EndAddr: 0x55cb675ce000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:18.067868685Z caller=cpu.go:495 msg="adding unwind tables" pid=76612 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558f52c57000, StartAddr: 0x558f52c59000, EndAddr: 0x558f52c5d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:20:22.432380859Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:20:23.053424099Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:20:23.057143873Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:20:23.064140871Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:20:23.068822265Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:20:23.078436419Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:20:23.118835569Z caller=cpu.go:495 msg="adding unwind tables" pid=76644 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ba4c094000, StartAddr: 0x55ba4c0c3000, EndAddr: 0x55ba4c1a6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:23.120161148Z caller=cpu.go:495 msg="adding unwind tables" pid=76648 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56034b78b000, StartAddr: 0x56034b78d000, EndAddr: 0x56034b791000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:20:28.066743149Z caller=cpu.go:495 msg="adding unwind tables" pid=76678 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dbd96d0000, StartAddr: 0x55dbd96ff000, EndAddr: 0x55dbd97e2000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:28.067448978Z caller=cpu.go:495 msg="adding unwind tables" pid=76682 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559f5cb0f000, StartAddr: 0x559f5cb11000, EndAddr: 0x559f5cb15000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:20:32.435511743Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:20:33.051225599Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:20:33.053415022Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:20:33.057910445Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:20:33.058477469Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:20:33.060962602Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:20:33.064034372Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:20:33.091880545Z caller=cpu.go:495 msg="adding unwind tables" pid=76712 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bc7bc15000, StartAddr: 0x55bc7bc44000, EndAddr: 0x55bc7bd27000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:33.09291047Z caller=cpu.go:495 msg="adding unwind tables" pid=76716 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55764fc00000, StartAddr: 0x55764fc02000, EndAddr: 0x55764fc06000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:20:38.075593937Z caller=cpu.go:495 msg="adding unwind tables" pid=76733 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56115fba2000, StartAddr: 0x56115fba4000, EndAddr: 0x56115fba7000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:38.079043728Z caller=cpu.go:495 msg="adding unwind tables" pid=76747 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56133bc77000, StartAddr: 0x56133bca6000, EndAddr: 0x56133bd89000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:38.079802195Z caller=cpu.go:495 msg="adding unwind tables" pid=76751 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5591ce601000, StartAddr: 0x5591ce603000, EndAddr: 0x5591ce607000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:20:42.457470433Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:20:43.049585923Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:20:43.050504035Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:20:43.051946409Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:20:43.05233807Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:20:43.054095887Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:20:43.071765456Z caller=cpu.go:495 msg="adding unwind tables" pid=76781 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c9169d5000, StartAddr: 0x55c916a04000, EndAddr: 0x55c916ae7000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:43.072674151Z caller=cpu.go:495 msg="adding unwind tables" pid=76785 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ea2d877000, StartAddr: 0x55ea2d879000, EndAddr: 0x55ea2d87d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:20:48.063915623Z caller=cpu.go:495 msg="adding unwind tables" pid=76791 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f5e8c02000, StartAddr: 0x55f5e8c04000, EndAddr: 0x55f5e8c07000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:48.066370551Z caller=cpu.go:495 msg="adding unwind tables" pid=76816 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56010b429000, StartAddr: 0x56010b458000, EndAddr: 0x56010b53b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:48.066850189Z caller=cpu.go:495 msg="adding unwind tables" pid=76820 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55804ca80000, StartAddr: 0x55804ca82000, EndAddr: 0x55804ca86000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:20:52.453789178Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:20:53.050323827Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:20:53.050554517Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=876 +level=debug name=parca-agent ts=2023-01-25T11:20:53.051121973Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:20:53.060333591Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:20:53.06201144Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:20:53.063249648Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:20:53.063785212Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:20:53.071625574Z caller=cpu.go:495 msg="adding unwind tables" pid=76850 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f424636000, StartAddr: 0x55f424665000, EndAddr: 0x55f424748000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:53.072357051Z caller=cpu.go:495 msg="adding unwind tables" pid=76854 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55da5da88000, StartAddr: 0x55da5da8a000, EndAddr: 0x55da5da8e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:20:58.064460265Z caller=cpu.go:495 msg="adding unwind tables" pid=76884 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55706a4e7000, StartAddr: 0x55706a516000, EndAddr: 0x55706a5f9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:20:58.065106257Z caller=cpu.go:495 msg="adding unwind tables" pid=76888 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56366dfbb000, StartAddr: 0x56366dfbd000, EndAddr: 0x56366dfc1000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:21:02.450268607Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:21:03.069950359Z caller=cpu.go:495 msg="adding unwind tables" pid=76918 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555ddb4a5000, StartAddr: 0x555ddb4d4000, EndAddr: 0x555ddb5b7000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:03.070739322Z caller=cpu.go:495 msg="adding unwind tables" pid=76922 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c1c89d4000, StartAddr: 0x55c1c89d6000, EndAddr: 0x55c1c89da000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:21:03.154915884Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:21:03.155668181Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:21:03.157001761Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:21:03.157240843Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:21:03.157732934Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:21:03.158621736Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:21:03.161957875Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:21:03.167571476Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=876 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:21:08.064783832Z caller=cpu.go:495 msg="adding unwind tables" pid=76952 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56053b56d000, StartAddr: 0x56053b59c000, EndAddr: 0x56053b67f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:08.065455964Z caller=cpu.go:495 msg="adding unwind tables" pid=76956 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562fe1d68000, StartAddr: 0x562fe1d6a000, EndAddr: 0x562fe1d6e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:21:12.437984121Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:21:13.049581193Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:21:13.050396364Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:21:13.050787364Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:21:13.051933239Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:21:13.054144291Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:21:13.070396597Z caller=cpu.go:495 msg="adding unwind tables" pid=76986 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d3de04f000, StartAddr: 0x55d3de07e000, EndAddr: 0x55d3de161000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:13.071043933Z caller=cpu.go:495 msg="adding unwind tables" pid=76990 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561af60a9000, StartAddr: 0x561af60ab000, EndAddr: 0x561af60af000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:21:18.064369952Z caller=cpu.go:495 msg="adding unwind tables" pid=77020 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5634c2dbe000, StartAddr: 0x5634c2ded000, EndAddr: 0x5634c2ed0000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:18.064964556Z caller=cpu.go:495 msg="adding unwind tables" pid=77024 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d44bd45000, StartAddr: 0x55d44bd47000, EndAddr: 0x55d44bd4b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:21:22.43400033Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:21:23.050015741Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:21:23.051307605Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:21:23.051409632Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:21:23.052334378Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:21:23.053697724Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:21:23.055360758Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:21:23.070076316Z caller=cpu.go:495 msg="adding unwind tables" pid=77054 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bb60555000, StartAddr: 0x55bb60584000, EndAddr: 0x55bb60667000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:23.070871681Z caller=cpu.go:495 msg="adding unwind tables" pid=77058 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55710adac000, StartAddr: 0x55710adae000, EndAddr: 0x55710adb2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:21:28.124178792Z caller=cpu.go:495 msg="adding unwind tables" pid=77088 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5605a56b4000, StartAddr: 0x5605a56e3000, EndAddr: 0x5605a57c6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:28.126928407Z caller=cpu.go:495 msg="adding unwind tables" pid=77092 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5643fdaf6000, StartAddr: 0x5643fdaf8000, EndAddr: 0x5643fdafc000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:21:32.458044501Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:21:33.049621896Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:21:33.050173928Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:21:33.054337655Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:21:33.055422359Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:21:33.05650491Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:21:33.057749372Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:21:33.057833299Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:21:33.067039128Z caller=cpu.go:495 msg="adding unwind tables" pid=77122 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562e377a9000, StartAddr: 0x562e377d8000, EndAddr: 0x562e378bb000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:33.067775679Z caller=cpu.go:495 msg="adding unwind tables" pid=77126 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55898985f000, StartAddr: 0x558989861000, EndAddr: 0x558989865000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:21:38.126620521Z caller=cpu.go:495 msg="adding unwind tables" pid=77156 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56421c783000, StartAddr: 0x56421c7b2000, EndAddr: 0x56421c895000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:38.128117406Z caller=cpu.go:495 msg="adding unwind tables" pid=77160 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5565bc672000, StartAddr: 0x5565bc674000, EndAddr: 0x5565bc678000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:21:42.43542713Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:21:43.049326131Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:21:43.050582712Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:21:43.052055303Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:21:43.053529815Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:21:43.068064909Z caller=cpu.go:495 msg="adding unwind tables" pid=77190 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a5cfa7e000, StartAddr: 0x55a5cfaad000, EndAddr: 0x55a5cfb90000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:43.068766949Z caller=cpu.go:495 msg="adding unwind tables" pid=77194 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e4be70b000, StartAddr: 0x55e4be70d000, EndAddr: 0x55e4be711000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:21:48.06766956Z caller=cpu.go:495 msg="adding unwind tables" pid=77224 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a09b94c000, StartAddr: 0x55a09b97b000, EndAddr: 0x55a09ba5e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:48.068347473Z caller=cpu.go:495 msg="adding unwind tables" pid=77228 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d0bd397000, StartAddr: 0x55d0bd399000, EndAddr: 0x55d0bd39d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:21:52.432490251Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=4 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:21:53.050017517Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:21:53.051134384Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:21:53.053129367Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:21:53.054405057Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:21:53.056231835Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:21:53.066692284Z caller=cpu.go:495 msg="adding unwind tables" pid=77258 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560969118000, StartAddr: 0x560969147000, EndAddr: 0x56096922a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:53.067213483Z caller=cpu.go:495 msg="adding unwind tables" pid=77262 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5571c0ca9000, StartAddr: 0x5571c0cab000, EndAddr: 0x5571c0caf000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:21:58.074810888Z caller=cpu.go:495 msg="adding unwind tables" pid=77292 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5584f3e8b000, StartAddr: 0x5584f3eba000, EndAddr: 0x5584f3f9d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:21:58.075566651Z caller=cpu.go:495 msg="adding unwind tables" pid=77296 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5623e763d000, StartAddr: 0x5623e763f000, EndAddr: 0x5623e7643000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:22:02.454719117Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:22:03.049409163Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:22:03.049542218Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:22:03.050513649Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:22:03.051332537Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:22:03.053613376Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:22:03.054539578Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:22:03.065485276Z caller=cpu.go:495 msg="adding unwind tables" pid=77326 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559afe522000, StartAddr: 0x559afe551000, EndAddr: 0x559afe634000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:03.066212427Z caller=cpu.go:495 msg="adding unwind tables" pid=77330 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c449f0a000, StartAddr: 0x55c449f0c000, EndAddr: 0x55c449f10000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:22:08.065267846Z caller=cpu.go:495 msg="adding unwind tables" pid=77360 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557f40c9f000, StartAddr: 0x557f40cce000, EndAddr: 0x557f40db1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:08.06594461Z caller=cpu.go:495 msg="adding unwind tables" pid=77364 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564e66969000, StartAddr: 0x564e6696b000, EndAddr: 0x564e6696f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:22:12.433685656Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:22:13.049552484Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:22:13.054041853Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:22:13.055233606Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:22:13.056257025Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:22:13.056769976Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:22:13.065809351Z caller=cpu.go:495 msg="adding unwind tables" pid=77394 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5601730df000, StartAddr: 0x56017310e000, EndAddr: 0x5601731f1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:13.066335884Z caller=cpu.go:495 msg="adding unwind tables" pid=77398 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5568d4887000, StartAddr: 0x5568d4889000, EndAddr: 0x5568d488d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:22:18.066541523Z caller=cpu.go:495 msg="adding unwind tables" pid=77428 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e3b3671000, StartAddr: 0x55e3b36a0000, EndAddr: 0x55e3b3783000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:18.067192836Z caller=cpu.go:495 msg="adding unwind tables" pid=77432 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c6ebffb000, StartAddr: 0x55c6ebffd000, EndAddr: 0x55c6ec001000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:22:22.431842578Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:22:23.04997552Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:22:23.051556419Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:22:23.053012677Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:22:23.053408176Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:22:23.054555019Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:22:23.055328656Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:22:23.067015663Z caller=cpu.go:495 msg="adding unwind tables" pid=77462 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563fed187000, StartAddr: 0x563fed1b6000, EndAddr: 0x563fed299000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:23.067812274Z caller=cpu.go:495 msg="adding unwind tables" pid=77466 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fa4482b000, StartAddr: 0x55fa4482d000, EndAddr: 0x55fa44831000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:22:28.06812584Z caller=cpu.go:495 msg="adding unwind tables" pid=77496 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561e488fd000, StartAddr: 0x561e4892c000, EndAddr: 0x561e48a0f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:28.068859043Z caller=cpu.go:495 msg="adding unwind tables" pid=77500 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cb5757e000, StartAddr: 0x55cb57580000, EndAddr: 0x55cb57584000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:22:32.434630031Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:22:33.04996831Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:22:33.05130617Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:22:33.052356875Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:22:33.054671328Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:22:33.055710305Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:22:33.071722985Z caller=cpu.go:495 msg="adding unwind tables" pid=77530 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56159df61000, StartAddr: 0x56159df90000, EndAddr: 0x56159e073000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:33.072586527Z caller=cpu.go:495 msg="adding unwind tables" pid=77534 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555964e94000, StartAddr: 0x555964e96000, EndAddr: 0x555964e9a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:22:38.07188485Z caller=cpu.go:495 msg="adding unwind tables" pid=77564 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5624ab65b000, StartAddr: 0x5624ab68a000, EndAddr: 0x5624ab76d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:38.072724139Z caller=cpu.go:495 msg="adding unwind tables" pid=77568 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bebc773000, StartAddr: 0x55bebc775000, EndAddr: 0x55bebc779000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:22:42.439852243Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:22:43.05189649Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:22:43.053917654Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:22:43.060220102Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:22:43.060994128Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:22:43.079191922Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:22:43.084958664Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:22:43.121005388Z caller=cpu.go:495 msg="adding unwind tables" pid=77598 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557020426000, StartAddr: 0x557020455000, EndAddr: 0x557020538000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:43.123741125Z caller=cpu.go:495 msg="adding unwind tables" pid=77602 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563305e73000, StartAddr: 0x563305e75000, EndAddr: 0x563305e79000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:22:48.065097865Z caller=cpu.go:495 msg="adding unwind tables" pid=77632 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5591d0149000, StartAddr: 0x5591d0178000, EndAddr: 0x5591d025b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:48.065705407Z caller=cpu.go:495 msg="adding unwind tables" pid=77636 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dcfcb9f000, StartAddr: 0x55dcfcba1000, EndAddr: 0x55dcfcba5000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:22:52.459523616Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:22:53.050025604Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:22:53.05063203Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:22:53.051831818Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=876 +level=debug name=parca-agent ts=2023-01-25T11:22:53.052545929Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:22:53.056602187Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:22:53.057657833Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:22:53.057794621Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1190 +level=debug name=parca-agent ts=2023-01-25T11:22:53.058549801Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1310 +level=debug name=parca-agent ts=2023-01-25T11:22:53.059191089Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:22:53.071020391Z caller=cpu.go:495 msg="adding unwind tables" pid=77667 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56077e6fb000, StartAddr: 0x56077e72a000, EndAddr: 0x56077e80d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:53.071906104Z caller=cpu.go:495 msg="adding unwind tables" pid=77671 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562110dcc000, StartAddr: 0x562110dce000, EndAddr: 0x562110dd2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:22:58.069646745Z caller=cpu.go:495 msg="adding unwind tables" pid=77701 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b6c1ea8000, StartAddr: 0x55b6c1ed7000, EndAddr: 0x55b6c1fba000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:22:58.070432642Z caller=cpu.go:495 msg="adding unwind tables" pid=77705 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e285039000, StartAddr: 0x55e28503b000, EndAddr: 0x55e28503f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:23:02.453210015Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=9 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:23:03.049366639Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:23:03.051037017Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:23:03.052824048Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:23:03.054010982Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:23:03.055601634Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:23:03.067586817Z caller=cpu.go:495 msg="adding unwind tables" pid=77735 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561b98622000, StartAddr: 0x561b98651000, EndAddr: 0x561b98734000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:03.068464498Z caller=cpu.go:495 msg="adding unwind tables" pid=77739 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557d9b57f000, StartAddr: 0x557d9b581000, EndAddr: 0x557d9b585000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:23:08.064913866Z caller=cpu.go:495 msg="adding unwind tables" pid=77769 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5588933cb000, StartAddr: 0x5588933fa000, EndAddr: 0x5588934dd000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:08.065538802Z caller=cpu.go:495 msg="adding unwind tables" pid=77773 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f44ba10000, StartAddr: 0x55f44ba12000, EndAddr: 0x55f44ba16000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:23:12.44164349Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:23:13.049506964Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:23:13.050860122Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:23:13.052914509Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:23:13.053505546Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:23:13.054279119Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:23:13.058651621Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:23:13.072433762Z caller=cpu.go:495 msg="adding unwind tables" pid=77803 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ec7cce7000, StartAddr: 0x55ec7cd16000, EndAddr: 0x55ec7cdf9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:13.073481033Z caller=cpu.go:495 msg="adding unwind tables" pid=77807 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56277950d000, StartAddr: 0x56277950f000, EndAddr: 0x562779513000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:23:18.064531636Z caller=cpu.go:495 msg="adding unwind tables" pid=77837 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5620aa2ad000, StartAddr: 0x5620aa2dc000, EndAddr: 0x5620aa3bf000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:18.065128188Z caller=cpu.go:495 msg="adding unwind tables" pid=77841 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c91a8eb000, StartAddr: 0x55c91a8ed000, EndAddr: 0x55c91a8f1000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:23:22.460552156Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:23:23.049584861Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:23:23.055875836Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:23:23.05723641Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:23:23.058285696Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:23:23.059475732Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:23:23.059950868Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:23:23.072772249Z caller=cpu.go:495 msg="adding unwind tables" pid=77871 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5608c88c4000, StartAddr: 0x5608c88f3000, EndAddr: 0x5608c89d6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:23.073830133Z caller=cpu.go:495 msg="adding unwind tables" pid=77875 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b2d3ec3000, StartAddr: 0x55b2d3ec5000, EndAddr: 0x55b2d3ec9000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:23:28.067383479Z caller=cpu.go:495 msg="adding unwind tables" pid=77905 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55749aff5000, StartAddr: 0x55749b024000, EndAddr: 0x55749b107000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:28.068107655Z caller=cpu.go:495 msg="adding unwind tables" pid=77909 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560baf611000, StartAddr: 0x560baf613000, EndAddr: 0x560baf617000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:23:32.460050477Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:23:33.049757563Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:23:33.049872437Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:23:33.055446596Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:23:33.056685122Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:23:33.057341683Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:23:33.057959297Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:23:33.065820242Z caller=cpu.go:495 msg="adding unwind tables" pid=77939 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555860ecb000, StartAddr: 0x555860efa000, EndAddr: 0x555860fdd000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:33.066481545Z caller=cpu.go:495 msg="adding unwind tables" pid=77943 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e89fb0f000, StartAddr: 0x55e89fb11000, EndAddr: 0x55e89fb15000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:23:38.064709577Z caller=cpu.go:495 msg="adding unwind tables" pid=77973 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d877a0a000, StartAddr: 0x55d877a39000, EndAddr: 0x55d877b1c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:38.065391955Z caller=cpu.go:495 msg="adding unwind tables" pid=77977 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561bd4049000, StartAddr: 0x561bd404b000, EndAddr: 0x561bd404f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:23:42.436284577Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:23:43.049963982Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:23:43.050539522Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:23:43.051982234Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:23:43.053064748Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:23:43.059812472Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:23:43.06116974Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:23:43.070373693Z caller=cpu.go:495 msg="adding unwind tables" pid=78007 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fef23cf000, StartAddr: 0x55fef23fe000, EndAddr: 0x55fef24e1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:43.071023511Z caller=cpu.go:495 msg="adding unwind tables" pid=78011 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561329e73000, StartAddr: 0x561329e75000, EndAddr: 0x561329e79000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:23:48.07018992Z caller=cpu.go:495 msg="adding unwind tables" pid=78041 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c202489000, StartAddr: 0x55c2024b8000, EndAddr: 0x55c20259b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:48.070986957Z caller=cpu.go:495 msg="adding unwind tables" pid=78045 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56058065d000, StartAddr: 0x56058065f000, EndAddr: 0x560580663000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:23:52.435031898Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:23:53.0503386Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:23:53.051905219Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:23:53.057184485Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:23:53.058214532Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:23:53.058652077Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:23:53.068140898Z caller=cpu.go:495 msg="adding unwind tables" pid=78075 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5632a4e0e000, StartAddr: 0x5632a4e3d000, EndAddr: 0x5632a4f20000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:53.068825133Z caller=cpu.go:495 msg="adding unwind tables" pid=78079 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e8910b0000, StartAddr: 0x55e8910b2000, EndAddr: 0x55e8910b6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:23:58.070229885Z caller=cpu.go:495 msg="adding unwind tables" pid=78109 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56115acf7000, StartAddr: 0x56115ad26000, EndAddr: 0x56115ae09000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:23:58.071015571Z caller=cpu.go:495 msg="adding unwind tables" pid=78113 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56376dcbb000, StartAddr: 0x56376dcbd000, EndAddr: 0x56376dcc1000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:24:02.43900356Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:24:03.049889477Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:24:03.050420329Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:24:03.051377886Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:24:03.05216098Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:24:03.053865469Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:24:03.055082107Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:24:03.069255954Z caller=cpu.go:495 msg="adding unwind tables" pid=78143 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b0ebc48000, StartAddr: 0x55b0ebc77000, EndAddr: 0x55b0ebd5a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:03.070030506Z caller=cpu.go:495 msg="adding unwind tables" pid=78147 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b21d186000, StartAddr: 0x55b21d188000, EndAddr: 0x55b21d18c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:24:08.093764413Z caller=cpu.go:495 msg="adding unwind tables" pid=78177 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5643627fe000, StartAddr: 0x56436282d000, EndAddr: 0x564362910000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:08.094848453Z caller=cpu.go:495 msg="adding unwind tables" pid=78181 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a0185f3000, StartAddr: 0x55a0185f5000, EndAddr: 0x55a0185f9000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:24:12.446220028Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:24:13.049904417Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:24:13.051202983Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:24:13.051296456Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:24:13.053292078Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:24:13.05804416Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:24:13.058831137Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:24:13.066515607Z caller=cpu.go:495 msg="adding unwind tables" pid=78211 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5567e3bdd000, StartAddr: 0x5567e3c0c000, EndAddr: 0x5567e3cef000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:13.067097233Z caller=cpu.go:495 msg="adding unwind tables" pid=78215 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562a53a50000, StartAddr: 0x562a53a52000, EndAddr: 0x562a53a56000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:24:18.065766524Z caller=cpu.go:495 msg="adding unwind tables" pid=78245 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56106eeb4000, StartAddr: 0x56106eee3000, EndAddr: 0x56106efc6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:18.066531503Z caller=cpu.go:495 msg="adding unwind tables" pid=78249 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556aa6e30000, StartAddr: 0x556aa6e32000, EndAddr: 0x556aa6e36000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:24:22.440223146Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:24:23.0496434Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:24:23.05050083Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:24:23.052078962Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:24:23.056544772Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:24:23.056636376Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:24:23.056996386Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:24:23.065536901Z caller=cpu.go:495 msg="adding unwind tables" pid=78279 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ff5be76000, StartAddr: 0x55ff5bea5000, EndAddr: 0x55ff5bf88000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:23.066045992Z caller=cpu.go:495 msg="adding unwind tables" pid=78283 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558b1a26e000, StartAddr: 0x558b1a270000, EndAddr: 0x558b1a274000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:24:28.068281032Z caller=cpu.go:495 msg="adding unwind tables" pid=78313 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f8e9952000, StartAddr: 0x55f8e9981000, EndAddr: 0x55f8e9a64000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:28.069073407Z caller=cpu.go:495 msg="adding unwind tables" pid=78317 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ad590bb000, StartAddr: 0x55ad590bd000, EndAddr: 0x55ad590c1000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:24:32.433153419Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:24:33.049447959Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:24:33.050435758Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:24:33.050523316Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:24:33.05169142Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:24:33.053673504Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:24:33.066135623Z caller=cpu.go:495 msg="adding unwind tables" pid=78347 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d7b51eb000, StartAddr: 0x55d7b521a000, EndAddr: 0x55d7b52fd000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:33.066754878Z caller=cpu.go:495 msg="adding unwind tables" pid=78351 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5595103e0000, StartAddr: 0x5595103e2000, EndAddr: 0x5595103e6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:24:38.066203667Z caller=cpu.go:495 msg="adding unwind tables" pid=78381 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bda05c6000, StartAddr: 0x55bda05f5000, EndAddr: 0x55bda06d8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:38.066889768Z caller=cpu.go:495 msg="adding unwind tables" pid=78385 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d0cbc40000, StartAddr: 0x55d0cbc42000, EndAddr: 0x55d0cbc46000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:24:42.434964544Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:24:43.050814321Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:24:43.05276338Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:24:43.057920536Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:24:43.060270999Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:24:43.061743913Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:24:43.062280299Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:24:43.101655754Z caller=cpu.go:495 msg="adding unwind tables" pid=78415 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55afe65cc000, StartAddr: 0x55afe65fb000, EndAddr: 0x55afe66de000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:43.104176472Z caller=cpu.go:495 msg="adding unwind tables" pid=78419 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5605f4110000, StartAddr: 0x5605f4112000, EndAddr: 0x5605f4116000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:24:48.069112976Z caller=cpu.go:495 msg="adding unwind tables" pid=78450 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5556dc186000, StartAddr: 0x5556dc1b5000, EndAddr: 0x5556dc298000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:48.069888263Z caller=cpu.go:495 msg="adding unwind tables" pid=78454 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561b3c72d000, StartAddr: 0x561b3c72f000, EndAddr: 0x561b3c733000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:24:48.070388748Z caller=cpu.go:495 msg="adding unwind tables" pid=78455 +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:24:52.432460959Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:24:53.050367213Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:24:53.052367528Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:24:53.053939459Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:24:53.054324273Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:24:53.05602744Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:24:53.060578299Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:24:53.061185347Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:24:53.072859447Z caller=cpu.go:495 msg="adding unwind tables" pid=78485 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5588634d9000, StartAddr: 0x558863508000, EndAddr: 0x5588635eb000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:53.073954444Z caller=cpu.go:495 msg="adding unwind tables" pid=78489 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e4d34e4000, StartAddr: 0x55e4d34e6000, EndAddr: 0x55e4d34ea000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:24:53.074536967Z caller=cpu.go:495 msg="adding unwind tables" pid=78490 +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:24:58.065473657Z caller=cpu.go:495 msg="adding unwind tables" pid=78507 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b5a5d76000, StartAddr: 0x55b5a5d78000, EndAddr: 0x55b5a5d7b000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:58.068538327Z caller=cpu.go:495 msg="adding unwind tables" pid=78521 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5574d8c41000, StartAddr: 0x5574d8c70000, EndAddr: 0x5574d8d53000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:24:58.069142002Z caller=cpu.go:495 msg="adding unwind tables" pid=78525 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555c4e673000, StartAddr: 0x555c4e675000, EndAddr: 0x555c4e679000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:25:02.545231457Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:25:03.049792785Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:25:03.049910436Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:25:03.051184625Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:25:03.052623083Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:25:03.05450292Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:25:03.071854821Z caller=cpu.go:495 msg="adding unwind tables" pid=78555 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e604426000, StartAddr: 0x55e604455000, EndAddr: 0x55e604538000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:03.072695082Z caller=cpu.go:495 msg="adding unwind tables" pid=78559 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5645d9b51000, StartAddr: 0x5645d9b53000, EndAddr: 0x5645d9b57000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:25:08.067134799Z caller=cpu.go:495 msg="adding unwind tables" pid=78589 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d3e0dd2000, StartAddr: 0x55d3e0e01000, EndAddr: 0x55d3e0ee4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:08.067746511Z caller=cpu.go:495 msg="adding unwind tables" pid=78593 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c70567e000, StartAddr: 0x55c705680000, EndAddr: 0x55c705684000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:25:12.456108006Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:25:13.053486867Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:25:13.054102623Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:25:13.057802142Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:25:13.083172037Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:25:13.08693281Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:25:13.09592472Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:25:13.119400872Z caller=cpu.go:495 msg="adding unwind tables" pid=78623 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5649bc00e000, StartAddr: 0x5649bc03d000, EndAddr: 0x5649bc120000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:13.12161322Z caller=cpu.go:495 msg="adding unwind tables" pid=78627 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ef03a9a000, StartAddr: 0x55ef03a9c000, EndAddr: 0x55ef03aa0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:25:18.065808032Z caller=cpu.go:495 msg="adding unwind tables" pid=78657 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ca7404e000, StartAddr: 0x55ca7407d000, EndAddr: 0x55ca74160000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:18.066346963Z caller=cpu.go:495 msg="adding unwind tables" pid=78661 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560267ce6000, StartAddr: 0x560267ce8000, EndAddr: 0x560267cec000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:25:22.463408961Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:25:23.049519644Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:25:23.050720232Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:25:23.052744629Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:25:23.054499462Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:25:23.055051578Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:25:23.062110141Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:25:23.067198958Z caller=cpu.go:495 msg="adding unwind tables" pid=78691 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560c2884d000, StartAddr: 0x560c2887c000, EndAddr: 0x560c2895f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:23.06783973Z caller=cpu.go:495 msg="adding unwind tables" pid=78695 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5645bccd0000, StartAddr: 0x5645bccd2000, EndAddr: 0x5645bccd6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:25:28.103969909Z caller=cpu.go:495 msg="adding unwind tables" pid=78725 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55adf8f66000, StartAddr: 0x55adf8f95000, EndAddr: 0x55adf9078000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:28.105081117Z caller=cpu.go:495 msg="adding unwind tables" pid=78729 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c317dcd000, StartAddr: 0x55c317dcf000, EndAddr: 0x55c317dd3000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:25:32.43850547Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:25:33.049204111Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:25:33.049968203Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:25:33.050356023Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:25:33.057008228Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:25:33.057136201Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:25:33.058605062Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:25:33.068716612Z caller=cpu.go:495 msg="adding unwind tables" pid=78760 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d53344d000, StartAddr: 0x55d53347c000, EndAddr: 0x55d53355f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:33.069484638Z caller=cpu.go:495 msg="adding unwind tables" pid=78764 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f7f6c16000, StartAddr: 0x55f7f6c18000, EndAddr: 0x55f7f6c1c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:25:38.064269552Z caller=cpu.go:495 msg="adding unwind tables" pid=78790 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55764e8e3000, StartAddr: 0x55764e8e5000, EndAddr: 0x55764e8e8000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:38.067013427Z caller=cpu.go:495 msg="adding unwind tables" pid=78795 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559cca8f5000, StartAddr: 0x559cca924000, EndAddr: 0x559ccaa07000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:38.06760409Z caller=cpu.go:495 msg="adding unwind tables" pid=78799 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55be6985c000, StartAddr: 0x55be6985e000, EndAddr: 0x55be69862000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:25:42.440760128Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:25:43.049707769Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:25:43.05027199Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:25:43.051263388Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:25:43.056757631Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:25:43.058052477Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:25:43.058818994Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:25:43.0715764Z caller=cpu.go:495 msg="adding unwind tables" pid=78829 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561fd4ce9000, StartAddr: 0x561fd4d18000, EndAddr: 0x561fd4dfb000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:43.072423472Z caller=cpu.go:495 msg="adding unwind tables" pid=78833 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557f81e8e000, StartAddr: 0x557f81e90000, EndAddr: 0x557f81e94000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:25:48.064117321Z caller=cpu.go:495 msg="adding unwind tables" pid=78850 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56422d890000, StartAddr: 0x56422d892000, EndAddr: 0x56422d895000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:48.067686055Z caller=cpu.go:495 msg="adding unwind tables" pid=78864 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55900ec24000, StartAddr: 0x55900ec53000, EndAddr: 0x55900ed36000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:48.068426021Z caller=cpu.go:495 msg="adding unwind tables" pid=78868 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5580c2e07000, StartAddr: 0x5580c2e09000, EndAddr: 0x5580c2e0d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:25:52.432573729Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:25:53.049477429Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:25:53.050226948Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:25:53.051221701Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:25:53.053428348Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:25:53.053648662Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:25:53.054258277Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:25:53.065434759Z caller=cpu.go:495 msg="adding unwind tables" pid=78898 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5623c48ea000, StartAddr: 0x5623c4919000, EndAddr: 0x5623c49fc000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:53.066114708Z caller=cpu.go:495 msg="adding unwind tables" pid=78902 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ad19d54000, StartAddr: 0x55ad19d56000, EndAddr: 0x55ad19d5a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:25:58.093133926Z caller=cpu.go:495 msg="adding unwind tables" pid=78932 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e999685000, StartAddr: 0x55e9996b4000, EndAddr: 0x55e999797000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:25:58.09427292Z caller=cpu.go:495 msg="adding unwind tables" pid=78936 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c449f47000, StartAddr: 0x55c449f49000, EndAddr: 0x55c449f4d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:26:02.446105203Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:26:03.049722598Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:26:03.050742096Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:26:03.054509403Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:26:03.055481897Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:26:03.056446659Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:26:03.056869815Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:26:03.065209278Z caller=cpu.go:495 msg="adding unwind tables" pid=78966 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cbc2687000, StartAddr: 0x55cbc26b6000, EndAddr: 0x55cbc2799000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:03.065725661Z caller=cpu.go:495 msg="adding unwind tables" pid=78970 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5597fb839000, StartAddr: 0x5597fb83b000, EndAddr: 0x5597fb83f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:26:08.070540653Z caller=cpu.go:495 msg="adding unwind tables" pid=79000 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55df66592000, StartAddr: 0x55df665c1000, EndAddr: 0x55df666a4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:08.071413649Z caller=cpu.go:495 msg="adding unwind tables" pid=79004 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56486f0f3000, StartAddr: 0x56486f0f5000, EndAddr: 0x56486f0f9000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:26:12.435468409Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:26:13.071855862Z caller=cpu.go:495 msg="adding unwind tables" pid=79034 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55794cbd7000, StartAddr: 0x55794cc06000, EndAddr: 0x55794cce9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:13.07273187Z caller=cpu.go:495 msg="adding unwind tables" pid=79038 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b11adc9000, StartAddr: 0x55b11adcb000, EndAddr: 0x55b11adcf000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:26:13.15315715Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:26:13.154200732Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:26:13.154275131Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:26:13.155024016Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:26:18.068969085Z caller=cpu.go:495 msg="adding unwind tables" pid=79068 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56358b500000, StartAddr: 0x56358b52f000, EndAddr: 0x56358b612000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:18.069656597Z caller=cpu.go:495 msg="adding unwind tables" pid=79072 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560ea2b74000, StartAddr: 0x560ea2b76000, EndAddr: 0x560ea2b7a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:26:22.434565389Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=4 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:26:23.049630332Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2571 +level=debug name=parca-agent ts=2023-01-25T11:26:23.049926058Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:26:23.050004453Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:26:23.055672634Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:26:23.05757333Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:26:23.058441897Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:26:23.059744309Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:26:23.063688608Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:26:23.069968866Z caller=cpu.go:495 msg="adding unwind tables" pid=79102 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559134bbd000, StartAddr: 0x559134bec000, EndAddr: 0x559134ccf000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:23.070607157Z caller=cpu.go:495 msg="adding unwind tables" pid=79106 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560a418d5000, StartAddr: 0x560a418d7000, EndAddr: 0x560a418db000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:26:28.068020668Z caller=cpu.go:495 msg="adding unwind tables" pid=79136 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5644b2873000, StartAddr: 0x5644b28a2000, EndAddr: 0x5644b2985000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:28.068725744Z caller=cpu.go:495 msg="adding unwind tables" pid=79140 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f6df85a000, StartAddr: 0x55f6df85c000, EndAddr: 0x55f6df860000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:26:32.433566993Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:26:33.04985252Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:26:33.050375352Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:26:33.051540238Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:26:33.05180053Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:26:33.053312862Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:26:33.065143842Z caller=cpu.go:495 msg="adding unwind tables" pid=79170 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f314aaa000, StartAddr: 0x55f314ad9000, EndAddr: 0x55f314bbc000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:33.065665021Z caller=cpu.go:495 msg="adding unwind tables" pid=79174 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5581abf4f000, StartAddr: 0x5581abf51000, EndAddr: 0x5581abf55000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:26:33.065989499Z caller=cpu.go:495 msg="adding unwind tables" pid=79175 +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:26:38.072174141Z caller=cpu.go:495 msg="adding unwind tables" pid=79205 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563fa07f0000, StartAddr: 0x563fa081f000, EndAddr: 0x563fa0902000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:38.073027257Z caller=cpu.go:495 msg="adding unwind tables" pid=79209 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558ab0982000, StartAddr: 0x558ab0984000, EndAddr: 0x558ab0988000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:26:42.435443584Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:26:43.049809425Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:26:43.051284687Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:26:43.052939944Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:26:43.053460508Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:26:43.05724852Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:26:43.057546968Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:26:43.065796384Z caller=cpu.go:495 msg="adding unwind tables" pid=79239 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e8bdda8000, StartAddr: 0x55e8bddd7000, EndAddr: 0x55e8bdeba000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:43.066482857Z caller=cpu.go:495 msg="adding unwind tables" pid=79243 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ad6ebb0000, StartAddr: 0x55ad6ebb2000, EndAddr: 0x55ad6ebb6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:26:48.070691011Z caller=cpu.go:495 msg="adding unwind tables" pid=79273 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ba58f4c000, StartAddr: 0x55ba58f7b000, EndAddr: 0x55ba5905e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:48.071472817Z caller=cpu.go:495 msg="adding unwind tables" pid=79277 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5581a7b0b000, StartAddr: 0x5581a7b0d000, EndAddr: 0x5581a7b11000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:26:52.433016284Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:26:53.055155979Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:26:53.062796325Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:26:53.071701951Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:26:53.077880685Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:26:53.080781638Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:26:53.084261548Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:26:53.119316714Z caller=cpu.go:495 msg="adding unwind tables" pid=79307 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561320e61000, StartAddr: 0x561320e90000, EndAddr: 0x561320f73000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:53.121132643Z caller=cpu.go:495 msg="adding unwind tables" pid=79311 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c3fa00d000, StartAddr: 0x55c3fa00f000, EndAddr: 0x55c3fa013000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:26:58.066901985Z caller=cpu.go:495 msg="adding unwind tables" pid=79341 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a4215e6000, StartAddr: 0x55a421615000, EndAddr: 0x55a4216f8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:26:58.067607068Z caller=cpu.go:495 msg="adding unwind tables" pid=79345 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5618a6a27000, StartAddr: 0x5618a6a29000, EndAddr: 0x5618a6a2d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:27:02.455608251Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:27:03.049757632Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:27:03.050842539Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:27:03.052192564Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:27:03.052407773Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:27:03.053732765Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:27:03.05501159Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:27:03.06658219Z caller=cpu.go:495 msg="adding unwind tables" pid=79375 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556374fe1000, StartAddr: 0x556375010000, EndAddr: 0x5563750f3000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:03.067399765Z caller=cpu.go:495 msg="adding unwind tables" pid=79379 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56019e8c2000, StartAddr: 0x56019e8c4000, EndAddr: 0x56019e8c8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:27:08.067448532Z caller=cpu.go:495 msg="adding unwind tables" pid=79409 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555bce339000, StartAddr: 0x555bce368000, EndAddr: 0x555bce44b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:08.068183994Z caller=cpu.go:495 msg="adding unwind tables" pid=79413 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5624e0806000, StartAddr: 0x5624e0808000, EndAddr: 0x5624e080c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:27:12.440264784Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:27:13.054527447Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:27:13.055109874Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:27:13.057899034Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:27:13.062777716Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1310 +level=debug name=parca-agent ts=2023-01-25T11:27:13.063660486Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:27:13.066859129Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:27:13.07031049Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:27:13.085379842Z caller=cpu.go:495 msg="adding unwind tables" pid=79443 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56527f46e000, StartAddr: 0x56527f49d000, EndAddr: 0x56527f580000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:13.086180525Z caller=cpu.go:495 msg="adding unwind tables" pid=79447 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b42ea79000, StartAddr: 0x55b42ea7b000, EndAddr: 0x55b42ea7f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:27:18.06925633Z caller=cpu.go:495 msg="adding unwind tables" pid=79477 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c30ea03000, StartAddr: 0x55c30ea32000, EndAddr: 0x55c30eb15000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:18.070016974Z caller=cpu.go:495 msg="adding unwind tables" pid=79481 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c513574000, StartAddr: 0x55c513576000, EndAddr: 0x55c51357a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:27:22.461337341Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:27:23.050650281Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:27:23.052747337Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:27:23.054724597Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:27:23.055380983Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:27:23.057658738Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:27:23.059307364Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2648 +level=info name=parca-agent ts=2023-01-25T11:27:23.077077173Z caller=cpu.go:495 msg="adding unwind tables" pid=79519 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cdfcb60000, StartAddr: 0x55cdfcb8f000, EndAddr: 0x55cdfcc72000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:23.078064833Z caller=cpu.go:495 msg="adding unwind tables" pid=79523 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560b57193000, StartAddr: 0x560b57195000, EndAddr: 0x560b57199000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:27:28.067472826Z caller=cpu.go:495 msg="adding unwind tables" pid=79581 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559a15aa8000, StartAddr: 0x559a15ad7000, EndAddr: 0x559a15bba000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:28.068120779Z caller=cpu.go:495 msg="adding unwind tables" pid=79585 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dafc0f4000, StartAddr: 0x55dafc0f6000, EndAddr: 0x55dafc0fa000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:27:32.460844451Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:27:33.049967231Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:27:33.050754788Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:27:33.052530844Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:27:33.053674448Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:27:33.053786181Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:27:33.065764799Z caller=cpu.go:495 msg="adding unwind tables" pid=79615 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x565529405000, StartAddr: 0x565529434000, EndAddr: 0x565529517000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:33.066380429Z caller=cpu.go:495 msg="adding unwind tables" pid=79619 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562e533a1000, StartAddr: 0x562e533a3000, EndAddr: 0x562e533a7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:27:38.064525545Z caller=cpu.go:495 msg="adding unwind tables" pid=79649 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cb2c4b4000, StartAddr: 0x55cb2c4e3000, EndAddr: 0x55cb2c5c6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:38.06504891Z caller=cpu.go:495 msg="adding unwind tables" pid=79653 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561703757000, StartAddr: 0x561703759000, EndAddr: 0x56170375d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:27:42.463522189Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:27:43.0495064Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:27:43.049690129Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:27:43.050152922Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:27:43.051481102Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:27:43.053481337Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:27:43.059018138Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:27:43.068302423Z caller=cpu.go:495 msg="adding unwind tables" pid=79683 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555886396000, StartAddr: 0x5558863c5000, EndAddr: 0x5558864a8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:43.06918231Z caller=cpu.go:495 msg="adding unwind tables" pid=79687 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5637a4313000, StartAddr: 0x5637a4315000, EndAddr: 0x5637a4319000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:27:48.064687865Z caller=cpu.go:495 msg="adding unwind tables" pid=79717 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555663854000, StartAddr: 0x555663883000, EndAddr: 0x555663966000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:48.065218858Z caller=cpu.go:495 msg="adding unwind tables" pid=79721 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d1b2703000, StartAddr: 0x55d1b2705000, EndAddr: 0x55d1b2709000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:27:52.462308397Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:27:53.049477566Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:27:53.05441027Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:27:53.055836007Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:27:53.057027167Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:27:53.058191663Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:27:53.058715356Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:27:53.058967199Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:27:53.064790159Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1190 +level=info name=parca-agent ts=2023-01-25T11:27:53.066771304Z caller=cpu.go:495 msg="adding unwind tables" pid=79751 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bfe57fb000, StartAddr: 0x55bfe582a000, EndAddr: 0x55bfe590d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:53.067530506Z caller=cpu.go:495 msg="adding unwind tables" pid=79755 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55581f099000, StartAddr: 0x55581f09b000, EndAddr: 0x55581f09f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:27:58.065133745Z caller=cpu.go:495 msg="adding unwind tables" pid=79785 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dbe2146000, StartAddr: 0x55dbe2175000, EndAddr: 0x55dbe2258000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:27:58.065769914Z caller=cpu.go:495 msg="adding unwind tables" pid=79789 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cc29d66000, StartAddr: 0x55cc29d68000, EndAddr: 0x55cc29d6c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:28:02.434378649Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:28:03.050005389Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:28:03.050345526Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:28:03.051113424Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:28:03.053723078Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:28:03.054634661Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:28:03.054784641Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:28:03.056117944Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:28:03.067449343Z caller=cpu.go:495 msg="adding unwind tables" pid=79819 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ea2b006000, StartAddr: 0x55ea2b035000, EndAddr: 0x55ea2b118000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:03.068061177Z caller=cpu.go:495 msg="adding unwind tables" pid=79823 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5626116b3000, StartAddr: 0x5626116b5000, EndAddr: 0x5626116b9000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:28:08.066440752Z caller=cpu.go:495 msg="adding unwind tables" pid=79854 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5574a44d7000, StartAddr: 0x5574a4506000, EndAddr: 0x5574a45e9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:08.067003905Z caller=cpu.go:495 msg="adding unwind tables" pid=79858 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c08e51e000, StartAddr: 0x55c08e520000, EndAddr: 0x55c08e524000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:28:12.437507729Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:28:13.049767143Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:28:13.055820048Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:28:13.05641593Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:28:13.056470713Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:28:13.057297086Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:28:13.058497824Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:28:13.059475909Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:28:13.062639339Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:28:13.068066072Z caller=cpu.go:495 msg="adding unwind tables" pid=79888 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5641e0a42000, StartAddr: 0x5641e0a71000, EndAddr: 0x5641e0b54000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:13.068883764Z caller=cpu.go:495 msg="adding unwind tables" pid=79892 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aba4113000, StartAddr: 0x55aba4115000, EndAddr: 0x55aba4119000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:28:18.069349305Z caller=cpu.go:495 msg="adding unwind tables" pid=79922 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c89190d000, StartAddr: 0x55c89193c000, EndAddr: 0x55c891a1f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:18.070179713Z caller=cpu.go:495 msg="adding unwind tables" pid=79926 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556956f97000, StartAddr: 0x556956f99000, EndAddr: 0x556956f9d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:28:22.436773233Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:28:23.052644341Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:28:23.053091252Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:28:23.05457923Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=876 +level=debug name=parca-agent ts=2023-01-25T11:28:23.055202369Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:28:23.058622466Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:28:23.062257958Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:28:23.080013201Z caller=cpu.go:495 msg="adding unwind tables" pid=79956 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5573907f7000, StartAddr: 0x557390826000, EndAddr: 0x557390909000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:23.080700436Z caller=cpu.go:495 msg="adding unwind tables" pid=79960 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556e4d092000, StartAddr: 0x556e4d094000, EndAddr: 0x556e4d098000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:28:28.09754124Z caller=cpu.go:495 msg="adding unwind tables" pid=79990 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564700b37000, StartAddr: 0x564700b66000, EndAddr: 0x564700c49000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:28.098493233Z caller=cpu.go:495 msg="adding unwind tables" pid=79994 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b3f123d000, StartAddr: 0x55b3f123f000, EndAddr: 0x55b3f1243000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:28:32.433387244Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:28:33.04950324Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:28:33.050050518Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:28:33.050099459Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:28:33.05121742Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:28:33.052768347Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:28:33.053951583Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:28:33.070216769Z caller=cpu.go:495 msg="adding unwind tables" pid=80024 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56248fcd3000, StartAddr: 0x56248fd02000, EndAddr: 0x56248fde5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:33.070992465Z caller=cpu.go:495 msg="adding unwind tables" pid=80028 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558c71a43000, StartAddr: 0x558c71a45000, EndAddr: 0x558c71a49000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:28:38.067320581Z caller=cpu.go:495 msg="adding unwind tables" pid=80058 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555ca1e6b000, StartAddr: 0x555ca1e9a000, EndAddr: 0x555ca1f7d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:38.067996895Z caller=cpu.go:495 msg="adding unwind tables" pid=80062 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556dfeda9000, StartAddr: 0x556dfedab000, EndAddr: 0x556dfedaf000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:28:42.439585983Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:28:43.05050341Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:28:43.050666322Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:28:43.057091879Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:28:43.058349304Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:28:43.059245807Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:28:43.060626958Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:28:43.067003376Z caller=cpu.go:495 msg="adding unwind tables" pid=80092 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c675f73000, StartAddr: 0x55c675fa2000, EndAddr: 0x55c676085000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:43.067519464Z caller=cpu.go:495 msg="adding unwind tables" pid=80096 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56526d4f9000, StartAddr: 0x56526d4fb000, EndAddr: 0x56526d4ff000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:28:48.064555148Z caller=cpu.go:495 msg="adding unwind tables" pid=80126 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557d3ff5b000, StartAddr: 0x557d3ff8a000, EndAddr: 0x557d4006d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:48.065099814Z caller=cpu.go:495 msg="adding unwind tables" pid=80130 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56178c557000, StartAddr: 0x56178c559000, EndAddr: 0x56178c55d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:28:52.432791524Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:28:53.049647814Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:28:53.050744173Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:28:53.051425139Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:28:53.051730034Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:28:53.056264201Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:28:53.057180133Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:28:53.065629374Z caller=cpu.go:495 msg="adding unwind tables" pid=80160 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55891d1c0000, StartAddr: 0x55891d1ef000, EndAddr: 0x55891d2d2000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:53.066140013Z caller=cpu.go:495 msg="adding unwind tables" pid=80164 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5652c7962000, StartAddr: 0x5652c7964000, EndAddr: 0x5652c7968000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:28:58.070540409Z caller=cpu.go:495 msg="adding unwind tables" pid=80205 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557cd6e63000, StartAddr: 0x557cd6e92000, EndAddr: 0x557cd6f75000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:28:58.071315228Z caller=cpu.go:495 msg="adding unwind tables" pid=80217 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56495fa0c000, StartAddr: 0x56495fa0e000, EndAddr: 0x56495fa12000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:29:02.436755826Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:29:03.050002162Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:29:03.051509325Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:29:03.053474538Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:29:03.054085286Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:29:03.055004319Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:29:03.05782281Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:29:03.066314938Z caller=cpu.go:495 msg="adding unwind tables" pid=80248 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559a5c35b000, StartAddr: 0x559a5c38a000, EndAddr: 0x559a5c46d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:03.066826514Z caller=cpu.go:495 msg="adding unwind tables" pid=80252 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56418a6f5000, StartAddr: 0x56418a6f7000, EndAddr: 0x56418a6fb000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:29:08.069666276Z caller=cpu.go:495 msg="adding unwind tables" pid=80282 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c8920b8000, StartAddr: 0x55c8920e7000, EndAddr: 0x55c8921ca000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:08.070480107Z caller=cpu.go:495 msg="adding unwind tables" pid=80286 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55af54264000, StartAddr: 0x55af54266000, EndAddr: 0x55af5426a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:29:12.43271992Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:29:13.049475885Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:29:13.049580897Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:29:13.050713661Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:29:13.0526347Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:29:13.053267842Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:29:13.064330497Z caller=cpu.go:495 msg="adding unwind tables" pid=80316 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559885919000, StartAddr: 0x559885948000, EndAddr: 0x559885a2b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:13.064972336Z caller=cpu.go:495 msg="adding unwind tables" pid=80320 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563504a31000, StartAddr: 0x563504a33000, EndAddr: 0x563504a37000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:29:18.069667171Z caller=cpu.go:495 msg="adding unwind tables" pid=80350 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f57d2e9000, StartAddr: 0x55f57d318000, EndAddr: 0x55f57d3fb000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:18.070415021Z caller=cpu.go:495 msg="adding unwind tables" pid=80354 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f3de6c1000, StartAddr: 0x55f3de6c3000, EndAddr: 0x55f3de6c7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:29:22.436439822Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:29:23.054120758Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:29:23.054790276Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:29:23.080321833Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:29:23.086418219Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:29:23.089005592Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:29:23.094172613Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:29:23.130108316Z caller=cpu.go:495 msg="adding unwind tables" pid=80384 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56390cdbe000, StartAddr: 0x56390cded000, EndAddr: 0x56390ced0000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:23.131735515Z caller=cpu.go:495 msg="adding unwind tables" pid=80388 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562d24dd2000, StartAddr: 0x562d24dd4000, EndAddr: 0x562d24dd8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:29:28.069393249Z caller=cpu.go:495 msg="adding unwind tables" pid=80418 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556dcbbf9000, StartAddr: 0x556dcbc28000, EndAddr: 0x556dcbd0b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:28.070176549Z caller=cpu.go:495 msg="adding unwind tables" pid=80422 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564a297dc000, StartAddr: 0x564a297de000, EndAddr: 0x564a297e2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:29:32.435250437Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:29:33.049450895Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:29:33.050371331Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:29:33.052206803Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:29:33.0532098Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:29:33.054331438Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:29:33.065241782Z caller=cpu.go:495 msg="adding unwind tables" pid=80452 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5581bcd62000, StartAddr: 0x5581bcd91000, EndAddr: 0x5581bce74000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:33.066063725Z caller=cpu.go:495 msg="adding unwind tables" pid=80456 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5612235bd000, StartAddr: 0x5612235bf000, EndAddr: 0x5612235c3000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:29:38.066536633Z caller=cpu.go:495 msg="adding unwind tables" pid=80486 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f416858000, StartAddr: 0x55f416887000, EndAddr: 0x55f41696a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:38.067103738Z caller=cpu.go:495 msg="adding unwind tables" pid=80490 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f7d0a07000, StartAddr: 0x55f7d0a09000, EndAddr: 0x55f7d0a0d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:29:42.458687631Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:29:43.05001507Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:29:43.051861121Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:29:43.059691967Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:29:43.060884365Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:29:43.061456341Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:29:43.062669649Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:29:43.069754185Z caller=cpu.go:495 msg="adding unwind tables" pid=80520 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f2f43f6000, StartAddr: 0x55f2f4425000, EndAddr: 0x55f2f4508000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:43.070400527Z caller=cpu.go:495 msg="adding unwind tables" pid=80524 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ab461d6000, StartAddr: 0x55ab461d8000, EndAddr: 0x55ab461dc000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:29:48.064541265Z caller=cpu.go:495 msg="adding unwind tables" pid=80554 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5623bb63b000, StartAddr: 0x5623bb66a000, EndAddr: 0x5623bb74d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:48.065075851Z caller=cpu.go:495 msg="adding unwind tables" pid=80558 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5570679a8000, StartAddr: 0x5570679aa000, EndAddr: 0x5570679ae000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:29:52.454085774Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:29:53.050989097Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:29:53.051877759Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:29:53.061790505Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:29:53.063335631Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:29:53.064382704Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:29:53.064494501Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:29:53.075151515Z caller=cpu.go:495 msg="adding unwind tables" pid=80588 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5611f82c4000, StartAddr: 0x5611f82f3000, EndAddr: 0x5611f83d6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:53.076027522Z caller=cpu.go:495 msg="adding unwind tables" pid=80592 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f3b4775000, StartAddr: 0x55f3b4777000, EndAddr: 0x55f3b477b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:29:58.066542492Z caller=cpu.go:495 msg="adding unwind tables" pid=80618 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558160a19000, StartAddr: 0x558160a1b000, EndAddr: 0x558160a1e000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:58.069824003Z caller=cpu.go:495 msg="adding unwind tables" pid=80623 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555b2a56e000, StartAddr: 0x555b2a59d000, EndAddr: 0x555b2a680000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:29:58.070347047Z caller=cpu.go:495 msg="adding unwind tables" pid=80627 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5564e6949000, StartAddr: 0x5564e694b000, EndAddr: 0x5564e694f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:30:02.45664738Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:30:03.049584974Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=80623 +level=debug name=parca-agent ts=2023-01-25T11:30:03.049824771Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:30:03.04989477Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:30:03.05679118Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:30:03.058689115Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:30:03.059811459Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:30:03.061152935Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:30:03.070515467Z caller=cpu.go:495 msg="adding unwind tables" pid=80654 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:30:03.070623861Z caller=cpu.go:495 msg="adding unwind tables" pid=80655 +level=info name=parca-agent ts=2023-01-25T11:30:03.070908729Z caller=cpu.go:495 msg="adding unwind tables" pid=80660 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561b48a9b000, StartAddr: 0x561b48aca000, EndAddr: 0x561b48bad000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:03.071685762Z caller=cpu.go:495 msg="adding unwind tables" pid=80664 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a223ff5000, StartAddr: 0x55a223ff7000, EndAddr: 0x55a223ffb000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:30:08.067445552Z caller=cpu.go:495 msg="adding unwind tables" pid=80694 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b4600a4000, StartAddr: 0x55b4600d3000, EndAddr: 0x55b4601b6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:08.068102604Z caller=cpu.go:495 msg="adding unwind tables" pid=80698 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5633c3317000, StartAddr: 0x5633c3319000, EndAddr: 0x5633c331d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:30:12.441064627Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:30:13.049921832Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:30:13.051264639Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:30:13.052873796Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:30:13.0546654Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:30:13.059925697Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:30:13.060039366Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:30:13.066901426Z caller=cpu.go:495 msg="adding unwind tables" pid=80728 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c16a18b000, StartAddr: 0x55c16a1ba000, EndAddr: 0x55c16a29d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:13.067539864Z caller=cpu.go:495 msg="adding unwind tables" pid=80732 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5612f3802000, StartAddr: 0x5612f3804000, EndAddr: 0x5612f3808000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:30:18.06473307Z caller=cpu.go:495 msg="adding unwind tables" pid=80762 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fda5d52000, StartAddr: 0x55fda5d81000, EndAddr: 0x55fda5e64000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:18.06524428Z caller=cpu.go:495 msg="adding unwind tables" pid=80766 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fbb8acf000, StartAddr: 0x55fbb8ad1000, EndAddr: 0x55fbb8ad5000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:30:22.437264786Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:30:23.049523417Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:30:23.049811525Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:30:23.050920053Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:30:23.051586424Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:30:23.056098801Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:30:23.057447925Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:30:23.06717709Z caller=cpu.go:495 msg="adding unwind tables" pid=80796 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5626f8e51000, StartAddr: 0x5626f8e80000, EndAddr: 0x5626f8f63000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:23.06769224Z caller=cpu.go:495 msg="adding unwind tables" pid=80800 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564bce8bf000, StartAddr: 0x564bce8c1000, EndAddr: 0x564bce8c5000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:30:28.112399979Z caller=cpu.go:495 msg="adding unwind tables" pid=80830 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556244608000, StartAddr: 0x556244637000, EndAddr: 0x55624471a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:28.113732064Z caller=cpu.go:495 msg="adding unwind tables" pid=80834 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55946623d000, StartAddr: 0x55946623f000, EndAddr: 0x559466243000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:30:32.438753128Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:30:33.050041061Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:30:33.051241142Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:30:33.051547855Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:30:33.053281577Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:30:33.054882381Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2571 +level=debug name=parca-agent ts=2023-01-25T11:30:33.055215287Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:30:33.070115927Z caller=cpu.go:495 msg="adding unwind tables" pid=80864 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c9b7b19000, StartAddr: 0x55c9b7b48000, EndAddr: 0x55c9b7c2b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:33.070896707Z caller=cpu.go:495 msg="adding unwind tables" pid=80868 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f1fb32b000, StartAddr: 0x55f1fb32d000, EndAddr: 0x55f1fb331000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:30:38.115545661Z caller=cpu.go:495 msg="adding unwind tables" pid=80894 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bf11d9f000, StartAddr: 0x55bf11da1000, EndAddr: 0x55bf11da4000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:38.12217928Z caller=cpu.go:495 msg="adding unwind tables" pid=80899 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556112404000, StartAddr: 0x556112433000, EndAddr: 0x556112516000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:38.123490709Z caller=cpu.go:495 msg="adding unwind tables" pid=80903 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555e9de86000, StartAddr: 0x555e9de88000, EndAddr: 0x555e9de8c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:30:42.434741243Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:30:43.049826033Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:30:43.051173703Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:30:43.053666326Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:30:43.054840128Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:30:43.055535395Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:30:43.068418851Z caller=cpu.go:495 msg="adding unwind tables" pid=80934 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e4d3133000, StartAddr: 0x55e4d3162000, EndAddr: 0x55e4d3245000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:43.069137036Z caller=cpu.go:495 msg="adding unwind tables" pid=80938 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564e7b230000, StartAddr: 0x564e7b232000, EndAddr: 0x564e7b236000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:30:48.066327255Z caller=cpu.go:495 msg="adding unwind tables" pid=80964 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fa7c2ca000, StartAddr: 0x55fa7c2cc000, EndAddr: 0x55fa7c2cf000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 627 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:48.069535296Z caller=cpu.go:495 msg="adding unwind tables" pid=80969 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5647e448b000, StartAddr: 0x5647e44ba000, EndAddr: 0x5647e459d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:48.070227403Z caller=cpu.go:495 msg="adding unwind tables" pid=80973 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e7c4467000, StartAddr: 0x55e7c4469000, EndAddr: 0x55e7c446d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:30:52.440422073Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:30:53.050067084Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:30:53.052735152Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:30:53.053359218Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:30:53.064662515Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:30:53.07717416Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:30:53.078448872Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:30:53.080756322Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:30:53.089706729Z caller=cpu.go:495 msg="adding unwind tables" pid=81003 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562352c25000, StartAddr: 0x562352c54000, EndAddr: 0x562352d37000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:53.090833977Z caller=cpu.go:495 msg="adding unwind tables" pid=81007 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a41fec4000, StartAddr: 0x55a41fec6000, EndAddr: 0x55a41feca000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:30:58.066037336Z caller=cpu.go:495 msg="adding unwind tables" pid=81037 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ac66a27000, StartAddr: 0x55ac66a56000, EndAddr: 0x55ac66b39000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:30:58.066848784Z caller=cpu.go:495 msg="adding unwind tables" pid=81041 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563321129000, StartAddr: 0x56332112b000, EndAddr: 0x56332112f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:31:02.469107651Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:31:03.049983725Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:31:03.050103421Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:31:03.051352616Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:31:03.053236582Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:31:03.054873742Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:31:03.061102363Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:31:03.068698418Z caller=cpu.go:495 msg="adding unwind tables" pid=81071 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b51e889000, StartAddr: 0x55b51e8b8000, EndAddr: 0x55b51e99b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:03.069208301Z caller=cpu.go:495 msg="adding unwind tables" pid=81075 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558f16af4000, StartAddr: 0x558f16af6000, EndAddr: 0x558f16afa000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:31:08.065401852Z caller=cpu.go:495 msg="adding unwind tables" pid=81105 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a9ef836000, StartAddr: 0x55a9ef865000, EndAddr: 0x55a9ef948000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:08.065955879Z caller=cpu.go:495 msg="adding unwind tables" pid=81109 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5616f4f14000, StartAddr: 0x5616f4f16000, EndAddr: 0x5616f4f1a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:31:12.433024064Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:31:13.050847119Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:31:13.054051995Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:31:13.057072335Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:31:13.059115308Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:31:13.059311737Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:31:13.060580126Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:31:13.085118615Z caller=cpu.go:495 msg="adding unwind tables" pid=81139 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561d906c3000, StartAddr: 0x561d906f2000, EndAddr: 0x561d907d5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:13.086163232Z caller=cpu.go:495 msg="adding unwind tables" pid=81143 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55760ae82000, StartAddr: 0x55760ae84000, EndAddr: 0x55760ae88000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:31:18.065630093Z caller=cpu.go:495 msg="adding unwind tables" pid=81173 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bbba5dc000, StartAddr: 0x55bbba60b000, EndAddr: 0x55bbba6ee000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:18.066191132Z caller=cpu.go:495 msg="adding unwind tables" pid=81177 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e160ce9000, StartAddr: 0x55e160ceb000, EndAddr: 0x55e160cef000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:31:22.438006372Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:31:23.064641604Z caller=cpu.go:495 msg="adding unwind tables" pid=81207 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55649e765000, StartAddr: 0x55649e794000, EndAddr: 0x55649e877000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:23.065154825Z caller=cpu.go:495 msg="adding unwind tables" pid=81211 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562687404000, StartAddr: 0x562687406000, EndAddr: 0x56268740a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:31:23.150547417Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:31:23.150870026Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:31:23.152296237Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:31:23.153444576Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:31:23.15441719Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:31:28.064978686Z caller=cpu.go:495 msg="adding unwind tables" pid=81241 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bfcf5e2000, StartAddr: 0x55bfcf611000, EndAddr: 0x55bfcf6f4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:28.065566037Z caller=cpu.go:495 msg="adding unwind tables" pid=81245 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cf1fabc000, StartAddr: 0x55cf1fabe000, EndAddr: 0x55cf1fac2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:31:32.432256748Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:31:33.049934508Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:31:33.050055868Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:31:33.050205993Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:31:33.051355263Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:31:33.053365968Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:31:33.066820141Z caller=cpu.go:495 msg="adding unwind tables" pid=81275 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c59e538000, StartAddr: 0x55c59e567000, EndAddr: 0x55c59e64a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:33.067390902Z caller=cpu.go:495 msg="adding unwind tables" pid=81279 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55af7f927000, StartAddr: 0x55af7f929000, EndAddr: 0x55af7f92d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:31:38.071584376Z caller=cpu.go:495 msg="adding unwind tables" pid=81309 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562ecb63d000, StartAddr: 0x562ecb66c000, EndAddr: 0x562ecb74f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:38.07244439Z caller=cpu.go:495 msg="adding unwind tables" pid=81313 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dece13c000, StartAddr: 0x55dece13e000, EndAddr: 0x55dece142000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:31:42.45334453Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:31:43.053934992Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:31:43.05455401Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:31:43.087269392Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:31:43.092583621Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:31:43.095693659Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:31:43.109943798Z caller=cpu.go:495 msg="adding unwind tables" pid=81363 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e223d60000, StartAddr: 0x55e223d8f000, EndAddr: 0x55e223e72000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:43.111029804Z caller=cpu.go:495 msg="adding unwind tables" pid=81367 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55810b363000, StartAddr: 0x55810b365000, EndAddr: 0x55810b369000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:31:48.071098237Z caller=cpu.go:495 msg="adding unwind tables" pid=81397 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555dbe94b000, StartAddr: 0x555dbe97a000, EndAddr: 0x555dbea5d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:48.072113117Z caller=cpu.go:495 msg="adding unwind tables" pid=81401 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e6403fe000, StartAddr: 0x55e640400000, EndAddr: 0x55e640404000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:31:52.43290706Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:31:53.049740625Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:31:53.050560184Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:31:53.052397832Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:31:53.05272892Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:31:53.054501595Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:31:53.067977197Z caller=cpu.go:495 msg="adding unwind tables" pid=81431 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fd1d006000, StartAddr: 0x55fd1d035000, EndAddr: 0x55fd1d118000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:53.06867554Z caller=cpu.go:495 msg="adding unwind tables" pid=81435 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55596b0ba000, StartAddr: 0x55596b0bc000, EndAddr: 0x55596b0c0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:31:58.066564791Z caller=cpu.go:495 msg="adding unwind tables" pid=81465 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559ff6b82000, StartAddr: 0x559ff6bb1000, EndAddr: 0x559ff6c94000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:31:58.067442665Z caller=cpu.go:495 msg="adding unwind tables" pid=81469 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5638434e6000, StartAddr: 0x5638434e8000, EndAddr: 0x5638434ec000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:32:02.465833726Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:32:03.050151206Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:32:03.051533335Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:32:03.053627604Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:32:03.05542911Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:32:03.055634171Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:32:03.055875565Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:32:03.070513326Z caller=cpu.go:495 msg="adding unwind tables" pid=81519 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561a265f5000, StartAddr: 0x561a26624000, EndAddr: 0x561a26707000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:03.071357531Z caller=cpu.go:495 msg="adding unwind tables" pid=81523 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f0dcc99000, StartAddr: 0x55f0dcc9b000, EndAddr: 0x55f0dcc9f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:32:08.065120011Z caller=cpu.go:495 msg="adding unwind tables" pid=81553 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558593cba000, StartAddr: 0x558593ce9000, EndAddr: 0x558593dcc000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:08.065638694Z caller=cpu.go:495 msg="adding unwind tables" pid=81557 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55efacdee000, StartAddr: 0x55efacdf0000, EndAddr: 0x55efacdf4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:32:12.46805801Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:32:13.049787801Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:32:13.049972941Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:32:13.050090738Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:32:13.056582247Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:32:13.057821456Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:32:13.05890527Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:32:13.066375752Z caller=cpu.go:495 msg="adding unwind tables" pid=81595 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55740d863000, StartAddr: 0x55740d892000, EndAddr: 0x55740d975000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:13.067020917Z caller=cpu.go:495 msg="adding unwind tables" pid=81599 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55de80782000, StartAddr: 0x55de80784000, EndAddr: 0x55de80788000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:32:18.065280246Z caller=cpu.go:495 msg="adding unwind tables" pid=81616 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e9f3d1c000, StartAddr: 0x55e9f3d4b000, EndAddr: 0x55e9f3e2e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:18.066016758Z caller=cpu.go:495 msg="adding unwind tables" pid=81871 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558b74167000, StartAddr: 0x558b74196000, EndAddr: 0x558b74279000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:18.066621305Z caller=cpu.go:495 msg="adding unwind tables" pid=81875 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cfb7569000, StartAddr: 0x55cfb756b000, EndAddr: 0x55cfb756f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:32:22.43541399Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:32:23.05001906Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:32:23.050850288Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:32:23.052761635Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:32:23.054418048Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:32:23.057945993Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:32:23.058306436Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:32:23.0668156Z caller=cpu.go:495 msg="adding unwind tables" pid=81919 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556c73689000, StartAddr: 0x556c736b8000, EndAddr: 0x556c7379b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:23.067330652Z caller=cpu.go:495 msg="adding unwind tables" pid=81923 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c2485b7000, StartAddr: 0x55c2485b9000, EndAddr: 0x55c2485bd000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:32:28.063760982Z caller=cpu.go:495 msg="adding unwind tables" pid=81964 +level=info name=parca-agent ts=2023-01-25T11:32:28.064017463Z caller=cpu.go:495 msg="adding unwind tables" pid=81969 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561bb98a4000, StartAddr: 0x561bb98d3000, EndAddr: 0x561bb99b6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:28.064679171Z caller=cpu.go:495 msg="adding unwind tables" pid=81973 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55958bff6000, StartAddr: 0x55958bff8000, EndAddr: 0x55958bffc000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:32:32.440313698Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:32:33.049610203Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:32:33.051015481Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:32:33.052798903Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:32:33.05621025Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:32:33.057448134Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:32:33.067624264Z caller=cpu.go:495 msg="adding unwind tables" pid=82033 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55deb6891000, StartAddr: 0x55deb68c0000, EndAddr: 0x55deb69a3000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:33.068456019Z caller=cpu.go:495 msg="adding unwind tables" pid=82037 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b5e9ada000, StartAddr: 0x55b5e9adc000, EndAddr: 0x55b5e9ae0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:33.069098053Z caller=cpu.go:495 msg="adding unwind tables" pid=82042 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55989d598000, StartAddr: 0x55989d5c7000, EndAddr: 0x55989d6aa000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:33.069908474Z caller=cpu.go:495 msg="adding unwind tables" pid=82045 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560207d7a000, StartAddr: 0x560207d7c000, EndAddr: 0x560207d80000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:32:38.114259159Z caller=cpu.go:495 msg="adding unwind tables" pid=82112 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cdcb9c1000, StartAddr: 0x55cdcb9f0000, EndAddr: 0x55cdcbad3000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:38.115620854Z caller=cpu.go:495 msg="adding unwind tables" pid=82116 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555a5de9a000, StartAddr: 0x555a5de9c000, EndAddr: 0x555a5dea0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:32:42.437294707Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:32:43.050273772Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:32:43.05245497Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:32:43.054227153Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:32:43.054670664Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:32:43.055906487Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:32:43.06913864Z caller=cpu.go:495 msg="adding unwind tables" pid=82179 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e836994000, StartAddr: 0x55e8369c3000, EndAddr: 0x55e836aa6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:43.069849992Z caller=cpu.go:495 msg="adding unwind tables" pid=82183 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e2e6e3a000, StartAddr: 0x55e2e6e3c000, EndAddr: 0x55e2e6e40000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:43.070705933Z caller=cpu.go:495 msg="adding unwind tables" pid=82188 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d788ade000, StartAddr: 0x55d788b0d000, EndAddr: 0x55d788bf0000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:43.071483875Z caller=cpu.go:495 msg="adding unwind tables" pid=82191 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5588cda23000, StartAddr: 0x5588cda25000, EndAddr: 0x5588cda29000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:32:48.065895825Z caller=cpu.go:495 msg="adding unwind tables" pid=82254 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ff87ddf000, StartAddr: 0x55ff87e0e000, EndAddr: 0x55ff87ef1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 627 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:48.066573682Z caller=cpu.go:495 msg="adding unwind tables" pid=82258 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e75c237000, StartAddr: 0x55e75c239000, EndAddr: 0x55e75c23d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 627 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 627 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +Special section +unwind rows 171172 +~~ worked:, rows: 171172 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:32:52.432974403Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:32:53.049793711Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:32:53.049896732Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:32:53.050907583Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:32:53.052350985Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:32:53.053619761Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:32:53.054908521Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:32:53.068551255Z caller=cpu.go:495 msg="adding unwind tables" pid=82288 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5421172 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f50e968000, StartAddr: 0x55f50e96e000, EndAddr: 0x55f50e97f000, Executable:/usr/bin/man.man-db} +[info] adding memory mappings in for executable with ID 627 buildId 6c68050c2aaacd993db9de3fe609fd8e59c42c37 exec /usr/bin/man.man-db +-> caching - new mapping +=> found 1187 unwind entries for /usr/bin/man.man-db low pc 6020 high pc 16952 +- current chunk size 1187 +- rest of chunk size 0 +- lowindex [ 171172 : 172359 ] highIndex +- executable 627 mapping /usr/bin/man.man-db shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5422359 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 628 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5422359 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 628 buildId ef2551acd6629d3145f932451bbc9dab01e245ba exec /usr/lib64/libgdbm.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5422359 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 628 buildId f894ab9c21f4224677086a79d96606c9fbe214ab exec /usr/lib64/libpipeline.so.1.5.5 +-> caching - new mapping +=> found 655 unwind entries for /usr/lib64/libpipeline.so.1.5.5 low pc 3020 high pc 965b +- current chunk size 655 +- rest of chunk size 0 +- lowindex [ 172359 : 173014 ] highIndex +- executable 628 mapping /usr/lib64/libpipeline.so.1.5.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5423014 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 629 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5423014 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 629 buildId 19da390cd63b2d996e42b3e23ae2d6bf37e13e97 exec /usr/lib64/man-db/libman-2.10.0.so +-> caching - new mapping +=> found 3244 unwind entries for /usr/lib64/man-db/libman-2.10.0.so low pc a020 high pc 22c72 +- current chunk size 3244 +- rest of chunk size 0 +- lowindex [ 173014 : 176258 ] highIndex +- executable 629 mapping /usr/lib64/man-db/libman-2.10.0.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5426258 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 630 buildId 3cb0b5b47c1f5ca9788b64d4ce487a2e595b06ec exec /usr/lib64/man-db/libmandb-2.10.0.so +-> caching - new mapping +=> found 339 unwind entries for /usr/lib64/man-db/libmandb-2.10.0.so low pc 2020 high pc 4c20 +- current chunk size 339 +- rest of chunk size 0 +- lowindex [ 176258 : 176597 ] highIndex +- executable 630 mapping /usr/lib64/man-db/libmandb-2.10.0.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5426597 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 631 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5426597 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5426597 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:53.072525467Z caller=cpu.go:495 msg="adding unwind tables" pid=82298 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5426597 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fdea40d000, StartAddr: 0x55fdea412000, EndAddr: 0x55fdea42e000, Executable:/usr/bin/less} +[info] adding memory mappings in for executable with ID 631 buildId 3ce17393f4e04f4fad17b17d5adea0260da846f0 exec /usr/bin/less +-> caching - new mapping +=> found 2473 unwind entries for /usr/bin/less low pc 5020 high pc 20338 +- current chunk size 2473 +- rest of chunk size 0 +- lowindex [ 176597 : 179070 ] highIndex +- executable 631 mapping /usr/bin/less shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:32:53.073802025Z caller=cpu.go:495 msg="adding unwind tables" pid=82303 +level=info name=parca-agent ts=2023-01-25T11:32:53.073997327Z caller=cpu.go:495 msg="adding unwind tables" pid=82342 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ee519b7000, StartAddr: 0x55ee519e6000, EndAddr: 0x55ee51ac9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:53.074603505Z caller=cpu.go:495 msg="adding unwind tables" pid=82346 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a0e0667000, StartAddr: 0x55a0e0669000, EndAddr: 0x55a0e066d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:32:58.066873207Z caller=cpu.go:495 msg="adding unwind tables" pid=82418 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aaa399c000, StartAddr: 0x55aaa39cb000, EndAddr: 0x55aaa3aae000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:32:58.067618831Z caller=cpu.go:495 msg="adding unwind tables" pid=82422 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5594c4c9e000, StartAddr: 0x5594c4ca0000, EndAddr: 0x5594c4ca4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:33:02.431586147Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:33:03.050554939Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:33:03.056544451Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=82298 +level=debug name=parca-agent ts=2023-01-25T11:33:03.05699926Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:33:03.057092981Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:33:03.058498925Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:33:03.059475492Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:33:03.063095245Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:33:03.064277667Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:33:03.067181875Z caller=cpu.go:495 msg="adding unwind tables" pid=82460 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ac326d9000, StartAddr: 0x55ac32708000, EndAddr: 0x55ac327eb000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:03.067703823Z caller=cpu.go:495 msg="adding unwind tables" pid=82464 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5585290b8000, StartAddr: 0x5585290ba000, EndAddr: 0x5585290be000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:33:08.070176682Z caller=cpu.go:495 msg="adding unwind tables" pid=82511 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560c400ac000, StartAddr: 0x560c400db000, EndAddr: 0x560c401be000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:08.070774483Z caller=cpu.go:495 msg="adding unwind tables" pid=82515 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fc27999000, StartAddr: 0x55fc2799b000, EndAddr: 0x55fc2799f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:08.071245765Z caller=cpu.go:495 msg="adding unwind tables" pid=82520 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556fc43fe000, StartAddr: 0x556fc442d000, EndAddr: 0x556fc4510000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:08.071727865Z caller=cpu.go:495 msg="adding unwind tables" pid=82525 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559a69484000, StartAddr: 0x559a69486000, EndAddr: 0x559a6948a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:33:12.4396367Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:33:13.049917225Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:33:13.05107509Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:33:13.052396534Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:33:13.05810621Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:33:13.058535529Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:33:13.059318401Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:33:13.066842777Z caller=cpu.go:495 msg="adding unwind tables" pid=82576 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5558e8a35000, StartAddr: 0x5558e8a64000, EndAddr: 0x5558e8b47000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:13.067571012Z caller=cpu.go:495 msg="adding unwind tables" pid=82580 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e1a7e32000, StartAddr: 0x55e1a7e34000, EndAddr: 0x55e1a7e38000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:33:18.065344526Z caller=cpu.go:495 msg="adding unwind tables" pid=82683 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dbdb16d000, StartAddr: 0x55dbdb19c000, EndAddr: 0x55dbdb27f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:18.066108669Z caller=cpu.go:495 msg="adding unwind tables" pid=82687 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563812d7e000, StartAddr: 0x563812d80000, EndAddr: 0x563812d84000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:33:22.438578157Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:33:23.049521359Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:33:23.056065444Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:33:23.056555202Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:33:23.057443007Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:33:23.058801652Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:33:23.059058991Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:33:23.060139446Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=info name=parca-agent ts=2023-01-25T11:33:23.065834718Z caller=cpu.go:495 msg="adding unwind tables" pid=82720 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556ed9c9d000, StartAddr: 0x556ed9ca3000, EndAddr: 0x556ed9cb4000, Executable:/usr/bin/man.man-db} +[info] adding memory mappings in for executable with ID 632 buildId 6c68050c2aaacd993db9de3fe609fd8e59c42c37 exec /usr/bin/man.man-db +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId ef2551acd6629d3145f932451bbc9dab01e245ba exec /usr/lib64/libgdbm.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId f894ab9c21f4224677086a79d96606c9fbe214ab exec /usr/lib64/libpipeline.so.1.5.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 19da390cd63b2d996e42b3e23ae2d6bf37e13e97 exec /usr/lib64/man-db/libman-2.10.0.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 3cb0b5b47c1f5ca9788b64d4ce487a2e595b06ec exec /usr/lib64/man-db/libmandb-2.10.0.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:23.066702715Z caller=cpu.go:495 msg="adding unwind tables" pid=82730 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f15444b000, StartAddr: 0x55f154450000, EndAddr: 0x55f15446c000, Executable:/usr/bin/less} +[info] adding memory mappings in for executable with ID 632 buildId 3ce17393f4e04f4fad17b17d5adea0260da846f0 exec /usr/bin/less +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:23.067322884Z caller=cpu.go:495 msg="adding unwind tables" pid=82756 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559fb5dd5000, StartAddr: 0x559fb5e04000, EndAddr: 0x559fb5ee7000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:23.067829485Z caller=cpu.go:495 msg="adding unwind tables" pid=82760 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5577a0cc4000, StartAddr: 0x5577a0cc6000, EndAddr: 0x5577a0cca000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:33:28.065899182Z caller=cpu.go:495 msg="adding unwind tables" pid=82807 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55993caa2000, StartAddr: 0x55993cad1000, EndAddr: 0x55993cbb4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:28.066636502Z caller=cpu.go:495 msg="adding unwind tables" pid=82811 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556d202e2000, StartAddr: 0x556d202e4000, EndAddr: 0x556d202e8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:28.067207025Z caller=cpu.go:495 msg="adding unwind tables" pid=82816 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5604e3205000, StartAddr: 0x5604e3234000, EndAddr: 0x5604e3317000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:28.067802104Z caller=cpu.go:495 msg="adding unwind tables" pid=82821 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dd55e6b000, StartAddr: 0x55dd55e6d000, EndAddr: 0x55dd55e71000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:33:32.440838648Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:33:33.049575761Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:33:33.050101112Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:33:33.05554538Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:33:33.056344263Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:33:33.057339798Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:33:33.068448675Z caller=cpu.go:495 msg="adding unwind tables" pid=82859 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5628c9ecf000, StartAddr: 0x5628c9efe000, EndAddr: 0x5628c9fe1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:33.069316936Z caller=cpu.go:495 msg="adding unwind tables" pid=82863 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f12d517000, StartAddr: 0x55f12d519000, EndAddr: 0x55f12d51d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:33:38.064464729Z caller=cpu.go:495 msg="adding unwind tables" pid=82893 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dbda292000, StartAddr: 0x55dbda2c1000, EndAddr: 0x55dbda3a4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:38.065059048Z caller=cpu.go:495 msg="adding unwind tables" pid=82897 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557f98a1f000, StartAddr: 0x557f98a21000, EndAddr: 0x557f98a25000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:33:42.434966704Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:33:43.05165909Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:33:43.079264399Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:33:43.082270812Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:33:43.086630984Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:33:43.086981299Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:33:43.093549081Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:33:43.135085249Z caller=cpu.go:495 msg="adding unwind tables" pid=82927 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b82d6ec000, StartAddr: 0x55b82d71b000, EndAddr: 0x55b82d7fe000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:43.139203241Z caller=cpu.go:495 msg="adding unwind tables" pid=82931 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557359c35000, StartAddr: 0x557359c37000, EndAddr: 0x557359c3b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:33:48.069477564Z caller=cpu.go:495 msg="adding unwind tables" pid=82969 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5625fd8ac000, StartAddr: 0x5625fd8db000, EndAddr: 0x5625fd9be000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:48.070270941Z caller=cpu.go:495 msg="adding unwind tables" pid=82973 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f3250b4000, StartAddr: 0x55f3250b6000, EndAddr: 0x55f3250ba000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:33:52.434550219Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:33:53.051224401Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:33:53.054322532Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:33:53.057562855Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:33:53.058742369Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:33:53.077143901Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:33:53.078439467Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:33:53.111362488Z caller=cpu.go:495 msg="adding unwind tables" pid=83035 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a7097e8000, StartAddr: 0x55a709817000, EndAddr: 0x55a7098fa000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:53.114115085Z caller=cpu.go:495 msg="adding unwind tables" pid=83039 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564276cc2000, StartAddr: 0x564276cc4000, EndAddr: 0x564276cc8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:33:58.066143814Z caller=cpu.go:495 msg="adding unwind tables" pid=83090 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f102885000, StartAddr: 0x55f1028b4000, EndAddr: 0x55f102997000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:33:58.066735268Z caller=cpu.go:495 msg="adding unwind tables" pid=83094 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b7fa0f6000, StartAddr: 0x55b7fa0f8000, EndAddr: 0x55b7fa0fc000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:34:02.433117495Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:34:03.049604183Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:34:03.05052915Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:34:03.050889418Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:34:03.051498432Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:34:03.052892055Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:34:03.06547506Z caller=cpu.go:495 msg="adding unwind tables" pid=83135 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c6c309e000, StartAddr: 0x55c6c30cd000, EndAddr: 0x55c6c31b0000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:03.066197011Z caller=cpu.go:495 msg="adding unwind tables" pid=83139 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555587cc0000, StartAddr: 0x555587cc2000, EndAddr: 0x555587cc6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:34:08.06867341Z caller=cpu.go:495 msg="adding unwind tables" pid=83169 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55688486e000, StartAddr: 0x55688489d000, EndAddr: 0x556884980000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:08.069460374Z caller=cpu.go:495 msg="adding unwind tables" pid=83173 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e2ae538000, StartAddr: 0x55e2ae53a000, EndAddr: 0x55e2ae53e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:34:12.455966446Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:34:13.05149407Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:34:13.062426109Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:34:13.064247184Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:34:13.064746336Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:34:13.065862966Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:34:13.076340146Z caller=cpu.go:495 msg="adding unwind tables" pid=83211 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ce5e06b000, StartAddr: 0x55ce5e09a000, EndAddr: 0x55ce5e17d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:13.07700322Z caller=cpu.go:495 msg="adding unwind tables" pid=83215 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5611c2201000, StartAddr: 0x5611c2203000, EndAddr: 0x5611c2207000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:34:18.067415148Z caller=cpu.go:495 msg="adding unwind tables" pid=83284 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ffb3ec6000, StartAddr: 0x55ffb3ef5000, EndAddr: 0x55ffb3fd8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:18.068095915Z caller=cpu.go:495 msg="adding unwind tables" pid=83288 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55781b50d000, StartAddr: 0x55781b50f000, EndAddr: 0x55781b513000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:34:22.457692627Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:34:23.049531605Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:34:23.051120469Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:34:23.05324003Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:34:23.058684673Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:34:23.059761401Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:34:23.05984658Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:34:23.071914666Z caller=cpu.go:495 msg="adding unwind tables" pid=83318 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557f904dd000, StartAddr: 0x557f9050c000, EndAddr: 0x557f905ef000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:23.072959209Z caller=cpu.go:495 msg="adding unwind tables" pid=83322 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b5d2e8e000, StartAddr: 0x55b5d2e90000, EndAddr: 0x55b5d2e94000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:34:28.064772244Z caller=cpu.go:495 msg="adding unwind tables" pid=83352 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b560717000, StartAddr: 0x55b560746000, EndAddr: 0x55b560829000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:28.065362175Z caller=cpu.go:495 msg="adding unwind tables" pid=83356 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5571bb6bf000, StartAddr: 0x5571bb6c1000, EndAddr: 0x5571bb6c5000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:34:32.43639066Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:34:33.049794299Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:34:33.051407325Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:34:33.052676332Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:34:33.05449456Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:34:33.054834213Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:34:33.055156311Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:34:33.059827425Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:34:33.068258641Z caller=cpu.go:495 msg="adding unwind tables" pid=83386 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ecf6579000, StartAddr: 0x55ecf65a8000, EndAddr: 0x55ecf668b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:33.068991604Z caller=cpu.go:495 msg="adding unwind tables" pid=83390 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5596356ca000, StartAddr: 0x5596356cc000, EndAddr: 0x5596356d0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:34:38.079533046Z caller=cpu.go:495 msg="adding unwind tables" pid=83420 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b4be5b5000, StartAddr: 0x55b4be5e4000, EndAddr: 0x55b4be6c7000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:38.080945989Z caller=cpu.go:495 msg="adding unwind tables" pid=83424 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5556fa7e4000, StartAddr: 0x5556fa7e6000, EndAddr: 0x5556fa7ea000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:34:42.446227693Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:34:43.049574915Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:34:43.056024535Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:34:43.056444647Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:34:43.057484375Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:34:43.058661475Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:34:43.058741966Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:34:43.067290688Z caller=cpu.go:495 msg="adding unwind tables" pid=83454 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560579dcb000, StartAddr: 0x560579dfa000, EndAddr: 0x560579edd000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:43.067958629Z caller=cpu.go:495 msg="adding unwind tables" pid=83458 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5607079c7000, StartAddr: 0x5607079c9000, EndAddr: 0x5607079cd000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:34:48.064464068Z caller=cpu.go:495 msg="adding unwind tables" pid=83507 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5569f7d1f000, StartAddr: 0x5569f7d24000, EndAddr: 0x5569f7d41000, Executable:/usr/bin/sudo} +[info] adding memory mappings in for executable with ID 632 buildId a418cd81c4355ee03aa1682fbb65c8412ba05d2c exec /usr/bin/sudo +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2a6727bad1741d8c1935e0e272a45f94829cccd4 exec /usr/lib64/security/pam_succeed_if.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId e7145864e2968e691df3a46068e289aac25f8afd exec /usr/lib64/security/pam_systemd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 5f90bd55c4871fe6ec167abb3e5b4f10d7664a10 exec /usr/lib64/libcrack.so.2.9.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 0b75e5d76626fade5ed71784d8b57f402a0d7474 exec /usr/lib64/libpwquality.so.1.0.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 3a68fe19586f46e1593df5e9e4e7d4e5ed9ae2a1 exec /usr/lib64/libpam_misc.so.0.82.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId b1e2ea5ac7e1fa8095e88439279d0614490bb29f exec /usr/lib64/security/pam_limits.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 0d9219fe3b54e964e09c165d792227751b917c0b exec /usr/lib64/security/pam_keyinit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 429e024d5bb09939c620deba4891e22b981e12f4 exec /usr/lib64/libtirpc.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 4fb63e4a2a82bfb7a33eddf15f6c6225469caf3e exec /usr/lib64/security/pam_unix.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2ce647c362becb441e99bd4f1f547849a669cd59 exec /usr/lib64/libnss_sss.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 53f20bc659454edf69549fc5188ff1d6426ded37 exec /usr/lib64/security/pam_pwquality.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 502a7eeb9bee3a4bfed49cda2e28d15e947edb6e exec /usr/lib64/security/pam_permit.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId f9fa08b5ce00bc8cfa34f3c43b385b65276c07b5 exec /usr/lib64/libnsl.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 3f71547e2718cd9fb8247a4efd07548f9db0dfba exec /usr/lib64/security/pam_deny.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 00ac86bed4af7f5350d9891b13c0cb2dfba9eb07 exec /usr/lib64/security/pam_sss.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId ec4901510d94c63c65ecf7d90012f760935f9766 exec /usr/lib64/security/pam_localuser.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId e27bcb812f6cb0900c9ecfc6dd053c38580887b4 exec /usr/lib64/security/pam_usertype.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 697b8c4aa28cffdd3167d6b3be754c9c46d1dc03 exec /usr/lib64/liblber-2.4.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 8bd3cf5e7fe4ae648e6d6b1953efc3541ffe40bf exec /usr/lib64/libldap_r-2.4.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId a21929948639cf000349997fcaf19e17133445c6 exec /usr/libexec/sudo/sudoers.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId b9cc2b4769c870ca935bff1764dfb2b21ede8252 exec /usr/libexec/sudo/libsudo_util.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 51b16e53187173af414bc2e663912f0fcd84755f exec /usr/lib64/security/pam_fprintd.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 004cf435ad73d693842460559f372cb0653aad62 exec /usr/lib64/security/pam_faildelay.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId e64f037adaed159ab45b04f78749e59bf3243f0b exec /usr/lib64/security/pam_env.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:48.069582278Z caller=cpu.go:495 msg="adding unwind tables" pid=83512 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5584bca68000, StartAddr: 0x5584bca97000, EndAddr: 0x5584bcb7a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:48.070148614Z caller=cpu.go:495 msg="adding unwind tables" pid=83516 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55854b729000, StartAddr: 0x55854b72b000, EndAddr: 0x55854b72f000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:48.070620765Z caller=cpu.go:495 msg="adding unwind tables" pid=83521 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55808c15c000, StartAddr: 0x55808c18b000, EndAddr: 0x55808c26e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 632 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:48.071123158Z caller=cpu.go:495 msg="adding unwind tables" pid=83525 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ef3e30f000, StartAddr: 0x55ef3e311000, EndAddr: 0x55ef3e315000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 632 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +Special section +unwind rows 179070 +~~ worked:, rows: 179070 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:34:52.43588653Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:34:53.050451296Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:34:53.051403007Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:34:53.051501283Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:34:53.053086899Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:34:53.055163372Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:34:53.05567327Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:34:53.061146647Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=83507 +level=info name=parca-agent ts=2023-01-25T11:34:53.070692514Z caller=cpu.go:495 msg="adding unwind tables" pid=83544 +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e0f1cf5000, StartAddr: 0x55e0f1cf6000, EndAddr: 0x55e0f1cf7000, Executable:/usr/bin/python3.10} +[info] adding memory mappings in for executable with ID 632 buildId 4b377952f9ac85a1e7855b67d0e7b05621512e85 exec /usr/bin/python3.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId d2adea0bb9957ff20330e50a2eaeb95e2bcf6148 exec /usr/lib64/libnss_resolve.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId fe461d55e34f82892fff98869493b1faba410e52 exec /usr/lib64/libnss_mdns4_minimal.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429070 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 632 buildId 4ba04e427a8b530a15056ab8f3a3bbfff45d113b exec /usr/lib64/python3.10/site-packages/systemd/_reader.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 347 unwind entries for /usr/lib64/python3.10/site-packages/systemd/_reader.cpython-310-x86_64-linux-gnu.so low pc 4020 high pc 6f35 +- current chunk size 347 +- rest of chunk size 0 +- lowindex [ 179070 : 179417 ] highIndex +- executable 632 mapping /usr/lib64/python3.10/site-packages/systemd/_reader.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429417 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 633 buildId a5009041f85b1ec5b58f06105aeb0319524ef526 exec /usr/lib64/libuuid.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429417 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 633 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429417 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 633 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429417 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 633 buildId 536b0e70ce82bb2e1a54539d4704f91f69a952fb exec /usr/lib64/libsystemd.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429417 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 633 buildId 286853b303fe641dc45032c2e55376632ba289d6 exec /usr/lib64/libdbus-1.so.3.32.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5429417 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 633 buildId 4a6bc75275b2d48059b3f78c06551027aa86dec4 exec /usr/lib64/libmpdec.so.2.5.1 +-> caching - new mapping +=> found 3403 unwind entries for /usr/lib64/libmpdec.so.2.5.1 low pc 6020 high pc 27676 +- current chunk size 3403 +- rest of chunk size 0 +- lowindex [ 179417 : 182820 ] highIndex +- executable 633 mapping /usr/lib64/libmpdec.so.2.5.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5432820 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 634 buildId 51ee09a8cee288bed8a4f14fa8b030509e20b78d exec /usr/lib64/python3.10/lib-dynload/_decimal.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 2032 unwind entries for /usr/lib64/python3.10/lib-dynload/_decimal.cpython-310-x86_64-linux-gnu.so low pc 8020 high pc 183f3 +- current chunk size 2032 +- rest of chunk size 0 +- lowindex [ 182820 : 184852 ] highIndex +- executable 634 mapping /usr/lib64/python3.10/lib-dynload/_decimal.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434852 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 635 buildId ef2551acd6629d3145f932451bbc9dab01e245ba exec /usr/lib64/libgdbm.so.6.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434852 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 635 buildId b5b36fd98803f95582ec90e5474227defe297c13 exec /usr/lib64/python3.10/site-packages/systemd/id128.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 59 unwind entries for /usr/lib64/python3.10/site-packages/systemd/id128.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 315d +- current chunk size 59 +- rest of chunk size 0 +- lowindex [ 184852 : 184911 ] highIndex +- executable 635 mapping /usr/lib64/python3.10/site-packages/systemd/id128.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434911 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 636 buildId bfc03effd7856404af7ed996cd3864d10cbe09c4 exec /usr/lib64/python3.10/site-packages/systemd/_journal.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 36 unwind entries for /usr/lib64/python3.10/site-packages/systemd/_journal.cpython-310-x86_64-linux-gnu.so low pc 1020 high pc 188d +- current chunk size 36 +- rest of chunk size 0 +- lowindex [ 184911 : 184947 ] highIndex +- executable 636 mapping /usr/lib64/python3.10/site-packages/systemd/_journal.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 637 buildId 653f271cf988615aec3c2a952b855eaf0ac97396 exec /usr/lib64/python3.10/lib-dynload/syslog.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 637 buildId c188375f2772f952c3c50fd5da33911eec7589e4 exec /usr/lib64/sasl2/libsasldb.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 637 buildId 7e1e429469244ca272c0b3091b68f22f4f78b84c exec /usr/lib64/sasl2/libplain.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 637 buildId 8331788b213debccc4a7b28d944cdaec782f4c44 exec /usr/lib64/sasl2/liblogin.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 637 buildId dafdffba96104f365a8ea751c4c97282f3c46263 exec /usr/lib64/libnss_myhostname.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 637 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5434947 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 637 buildId 4f2afcf98cb9871a8be267f34e35f187435b13a4 exec /usr/lib64/libncursesw.so.6.2 +-> caching - new mapping +=> found 3879 unwind entries for /usr/lib64/libncursesw.so.6.2 low pc a020 high pc 343b5 +- current chunk size 3879 +- rest of chunk size 0 +- lowindex [ 184947 : 188826 ] highIndex +- executable 637 mapping /usr/lib64/libncursesw.so.6.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5438826 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 638 buildId e293adc6b8ede44d2ddf3a71397054cc128dc40d exec /usr/lib64/sasl2/libgssapiv2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5438826 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 638 buildId 4d9e211d22eb5f98882031bd741bf8457a4b6508 exec /usr/lib64/sasl2/libanonymous.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5438826 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 638 buildId 5cac34516d13e97ecb37c7f36d24ba91b12974e9 exec /usr/lib64/python3.10/lib-dynload/_curses.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 1151 unwind entries for /usr/lib64/python3.10/lib-dynload/_curses.cpython-310-x86_64-linux-gnu.so low pc 7020 high pc 11195 +- current chunk size 1151 +- rest of chunk size 0 +- lowindex [ 188826 : 189977 ] highIndex +- executable 638 mapping /usr/lib64/python3.10/lib-dynload/_curses.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5439977 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 639 buildId a03028ddd726386f3f9a595dc494c655e8315970 exec /usr/lib64/python3.10/lib-dynload/_posixsubprocess.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5439977 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 639 buildId baf8eb71457163bc98bcd921e6b8c0cdd49a5407 exec /usr/lib64/python3.10/lib-dynload/_opcode.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5439977 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 639 buildId 673d6f1506a166cb588ac253a21a99c0d9f0388d exec /usr/lib64/python3.10/lib-dynload/_json.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5439977 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 639 buildId dab1ae613568a0c2640b9e48083d2f02143325ca exec /usr/lib64/python3.10/site-packages/libdnf/_smartcols.so +-> caching - new mapping +=> found 1969 unwind entries for /usr/lib64/python3.10/site-packages/libdnf/_smartcols.so low pc 9020 high pc 2b650 +- current chunk size 1969 +- rest of chunk size 0 +- lowindex [ 189977 : 191946 ] highIndex +- executable 639 mapping /usr/lib64/python3.10/site-packages/libdnf/_smartcols.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5441946 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 640 buildId 73b1047980b74b75b25a5d63304a2b9fa2093997 exec /usr/lib64/python3.10/lib-dynload/_pickle.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 1139 unwind entries for /usr/lib64/python3.10/lib-dynload/_pickle.cpython-310-x86_64-linux-gnu.so low pc 5020 high pc 14771 +- current chunk size 1139 +- rest of chunk size 0 +- lowindex [ 191946 : 193085 ] highIndex +- executable 640 mapping /usr/lib64/python3.10/lib-dynload/_pickle.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5443085 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 641 buildId 43cfd55f4e646c94967f0b517894518e91740626 exec /usr/lib64/python3.10/lib-dynload/_hashlib.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5443085 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 641 buildId d3c432ef5d91959f90ef9b8e55cc03ba6766ff92 exec /usr/lib64/python3.10/site-packages/gpg/_gpgme.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 9000 unwind entries for /usr/lib64/python3.10/site-packages/gpg/_gpgme.cpython-310-x86_64-linux-gnu.so low pc 19020 high pc 804fb +- current chunk size 9000 +- rest of chunk size 0 +- lowindex [ 193085 : 202085 ] highIndex +- executable 641 mapping /usr/lib64/python3.10/site-packages/gpg/_gpgme.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5452085 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 642 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5452085 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 642 buildId b967c704b73ffb2bdf3af2e654ef52a0b89fb5c4 exec /usr/lib64/libcomps.so.0 +-> caching - new mapping +=> found 3605 unwind entries for /usr/lib64/libcomps.so.0 low pc e020 high pc 237f2 +- current chunk size 3605 +- rest of chunk size 0 +- lowindex [ 202085 : 205690 ] highIndex +- executable 642 mapping /usr/lib64/libcomps.so.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5455690 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 643 buildId 4d6ded48033ba0255210d167610de64e9d712284 exec /usr/lib64/python3.10/lib-dynload/_blake2.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5455690 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 643 buildId 0b2d3de1bd16bfce45e00c83d1b51dfb41fdd2e5 exec /usr/lib64/python3.10/lib-dynload/termios.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 104 unwind entries for /usr/lib64/python3.10/lib-dynload/termios.cpython-310-x86_64-linux-gnu.so low pc 3020 high pc 3f19 +- current chunk size 104 +- rest of chunk size 0 +- lowindex [ 205690 : 205794 ] highIndex +- executable 643 mapping /usr/lib64/python3.10/lib-dynload/termios.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5455794 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 644 buildId 5a9129cca12836319dde44cb9dac247c722f71b9 exec /usr/lib64/python3.10/site-packages/libcomps/_libpycomps.so +-> caching - new mapping +=> found 1667 unwind entries for /usr/lib64/python3.10/site-packages/libcomps/_libpycomps.so low pc d020 high pc 17795 +- current chunk size 1667 +- rest of chunk size 0 +- lowindex [ 205794 : 207461 ] highIndex +- executable 644 mapping /usr/lib64/python3.10/site-packages/libcomps/_libpycomps.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5457461 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 645 buildId d3af5ee4cec346ed5eb92380af01f423d75d4e37 exec /usr/lib64/python3.10/site-packages/hawkey/_hawkey.so +-> caching - new mapping +=> found 2739 unwind entries for /usr/lib64/python3.10/site-packages/hawkey/_hawkey.so low pc e020 high pc 2740d +- current chunk size 2739 +- rest of chunk size 0 +- lowindex [ 207461 : 210200 ] highIndex +- executable 645 mapping /usr/lib64/python3.10/site-packages/hawkey/_hawkey.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5460200 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 646 buildId c25a962f063bdf79f91fcfc4e1295796c9fda9bb exec /usr/lib64/python3.10/lib-dynload/_lzma.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5460200 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 646 buildId 34901cdb88c5974504c268fd9631a2217ed11fe1 exec /usr/lib64/libtss2-mu.so.0.0.0 +-> caching - new mapping +=> found 13012 unwind entries for /usr/lib64/libtss2-mu.so.0.0.0 low pc 7020 high pc 3326f +- current chunk size 13012 +- rest of chunk size 0 +- lowindex [ 210200 : 223212 ] highIndex +- executable 646 mapping /usr/lib64/libtss2-mu.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5473212 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 647 buildId aff0c7059c5cd4846a333751aaf325271495dcd7 exec /usr/lib64/libtss2-sys.so.1.0.0 +-> caching - new mapping +=> found 5201 unwind entries for /usr/lib64/libtss2-sys.so.1.0.0 low pc a020 high pc 1c758 +- current chunk size 5201 +- rest of chunk size 0 +- lowindex [ 223212 : 228413 ] highIndex +- executable 647 mapping /usr/lib64/libtss2-sys.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 21 , total entries: 5478413 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 648 buildId 68561316fd4ca405035ecef4ad01cea80175078d exec /usr/lib64/libtss2-esys.so.0.0.0 +-> caching - new mapping +=> found 25671 unwind entries for /usr/lib64/libtss2-esys.so.0.0.0 low pc e020 high pc 6aea8 +- current chunk size 21587 +- rest of chunk size 4084 +- lowindex [ 228413 : 250000 ] highIndex +- executable 648 mapping /usr/lib64/libtss2-esys.so.0.0.0 shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 4084 +- rest of chunk size 0 +- lowindex [ 0 : 4084 ] highIndex +- executable 648 mapping /usr/lib64/libtss2-esys.so.0.0.0 shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5504084 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 649 buildId 963c1962bb17c139a21f634b2450b9e325bd7f23 exec /usr/lib64/libtss2-rc.so.0.0.0 +-> caching - new mapping +=> found 53 unwind entries for /usr/lib64/libtss2-rc.so.0.0.0 low pc 2020 high pc 274a +- current chunk size 53 +- rest of chunk size 0 +- lowindex [ 4084 : 4137 ] highIndex +- executable 649 mapping /usr/lib64/libtss2-rc.so.0.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5504137 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 650 buildId 10110346badaabab6b073a6c165e17e8fe81ceb0 exec /usr/lib64/libfsverity.so.0 +-> caching - new mapping +=> found 133 unwind entries for /usr/lib64/libfsverity.so.0 low pc 2020 high pc 3f5c +- current chunk size 133 +- rest of chunk size 0 +- lowindex [ 4137 : 4270 ] highIndex +- executable 650 mapping /usr/lib64/libfsverity.so.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5504270 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 651 buildId e8ac1154ec167659bbb33c1a5011468a4ce671b7 exec /usr/lib64/libimaevm.so.3.0.0 +-> caching - new mapping +=> found 225 unwind entries for /usr/lib64/libimaevm.so.3.0.0 low pc 3020 high pc 5d7e +- current chunk size 225 +- rest of chunk size 0 +- lowindex [ 4270 : 4495 ] highIndex +- executable 651 mapping /usr/lib64/libimaevm.so.3.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5504495 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 652 buildId 70998fe22cdd6881569db2a6db67a005dbde8f51 exec /usr/lib64/libgomp.so.1.0.0 +-> caching - new mapping +=> found 5243 unwind entries for /usr/lib64/libgomp.so.1.0.0 low pc a020 high pc 394e2 +- current chunk size 5243 +- rest of chunk size 0 +- lowindex [ 4495 : 9738 ] highIndex +- executable 652 mapping /usr/lib64/libgomp.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5509738 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 653 buildId e63ed8f34565089e8482c8fa1bae1b48ab21893f exec /usr/lib64/libdw-0.188.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5509738 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 653 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5509738 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 653 buildId 2d2e89983be20eb30b05f897b91c53e950551f12 exec /usr/lib64/librpmsign.so.9.3.0 +-> caching - new mapping +=> found 110 unwind entries for /usr/lib64/librpmsign.so.9.3.0 low pc 3020 high pc 64e0 +- current chunk size 110 +- rest of chunk size 0 +- lowindex [ 9738 : 9848 ] highIndex +- executable 653 mapping /usr/lib64/librpmsign.so.9.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5509848 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 654 buildId 15ada59029d6be3f15a5c1ec32b705ebc64099fd exec /usr/lib64/librpmbuild.so.9.3.0 +-> caching - new mapping +=> found 1304 unwind entries for /usr/lib64/librpmbuild.so.9.3.0 low pc 8020 high pc 25e93 +- current chunk size 1304 +- rest of chunk size 0 +- lowindex [ 9848 : 11152 ] highIndex +- executable 654 mapping /usr/lib64/librpmbuild.so.9.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5511152 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 655 buildId 653bb199f9e495c472957588a0d91678f9da8af5 exec /usr/lib64/python3.10/lib-dynload/unicodedata.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 380 unwind entries for /usr/lib64/python3.10/lib-dynload/unicodedata.cpython-310-x86_64-linux-gnu.so low pc 3020 high pc 6673 +- current chunk size 380 +- rest of chunk size 0 +- lowindex [ 11152 : 11532 ] highIndex +- executable 655 mapping /usr/lib64/python3.10/lib-dynload/unicodedata.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5511532 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 656 buildId 7643de8ef978537e9f357589c962d84368ce1b1a exec /usr/lib64/python3.10/site-packages/libdnf/_transaction.so +-> caching - new mapping +=> found 4449 unwind entries for /usr/lib64/python3.10/site-packages/libdnf/_transaction.so low pc e020 high pc 4ff8f +- current chunk size 4449 +- rest of chunk size 0 +- lowindex [ 11532 : 15981 ] highIndex +- executable 656 mapping /usr/lib64/python3.10/site-packages/libdnf/_transaction.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5515981 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 657 buildId 6af0c0bfb7916db394067241437526ba7e288076 exec /usr/lib64/python3.10/lib-dynload/_uuid.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 13 unwind entries for /usr/lib64/python3.10/lib-dynload/_uuid.cpython-310-x86_64-linux-gnu.so low pc 1020 high pc 123b +- current chunk size 13 +- rest of chunk size 0 +- lowindex [ 15981 : 15994 ] highIndex +- executable 657 mapping /usr/lib64/python3.10/lib-dynload/_uuid.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5515994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 658 buildId 41710bf7b89c67d0df727285e5275c7880b51776 exec /usr/lib64/python3.10/lib-dynload/pyexpat.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5515994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 658 buildId 05d45f57bd89c39918e9a04ddd751343f788b9ff exec /usr/lib64/python3.10/site-packages/_dbus_bindings.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5515994 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 658 buildId d4cf68de4f11733502620758bfde6eda57213673 exec /usr/lib64/python3.10/lib-dynload/_sqlite3.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 1167 unwind entries for /usr/lib64/python3.10/lib-dynload/_sqlite3.cpython-310-x86_64-linux-gnu.so low pc 6020 high pc 11056 +- current chunk size 1167 +- rest of chunk size 0 +- lowindex [ 15994 : 17161 ] highIndex +- executable 658 mapping /usr/lib64/python3.10/lib-dynload/_sqlite3.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5517161 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 659 buildId 5d5c9f5f4f7cd156075fb004727163768bf9f746 exec /usr/lib64/python3.10/lib-dynload/_ssl.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5517161 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 659 buildId 6025672fcbad30bef11bf052cf630399650f3e8d exec /usr/lib64/python3.10/site-packages/libdnf/_repo.so +-> caching - new mapping +=> found 3078 unwind entries for /usr/lib64/python3.10/site-packages/libdnf/_repo.so low pc d020 high pc 31f29 +- current chunk size 3078 +- rest of chunk size 0 +- lowindex [ 17161 : 20239 ] highIndex +- executable 659 mapping /usr/lib64/python3.10/site-packages/libdnf/_repo.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5520239 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 660 buildId 9072bb28da6d78bbd7427566205a108be830269a exec /usr/lib64/python3.10/site-packages/libdnf/_module.so +-> caching - new mapping +=> found 8377 unwind entries for /usr/lib64/python3.10/site-packages/libdnf/_module.so low pc 19020 high pc 89e26 +- current chunk size 8377 +- rest of chunk size 0 +- lowindex [ 20239 : 28616 ] highIndex +- executable 660 mapping /usr/lib64/python3.10/site-packages/libdnf/_module.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 6c0cf7ed0ae68dfd766f9b51f0fafec148f26f48 exec /usr/lib64/libpsl.so.5.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 0a88dc8884357041dcd174412f2cc14ce0071289 exec /usr/lib64/libssh.so.4.8.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId c193404811a60b405cfd506cbbd74a296cf04b1b exec /usr/lib64/libnghttp2.so.14.24.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 51d5d6281ede8d5a0bf766e6785f3efe97bbabb2 exec /usr/lib64/libyaml-0.so.2.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 3d0a1c5a47bca8928af1b696da6a969283d5d4d1 exec /usr/lib64/libmagic.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 217fffd36034244556bb034169a29fb366e38575 exec /usr/lib64/libassuan.so.0.8.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 7db607745eb5f2634f9488a3699fad29b9b0b629 exec /usr/lib64/liblua-5.4.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 9c373ee5a75983478a9a0d143e98b38244ce9809 exec /usr/lib64/libzck.so.1.2.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 1511f3df5a8d1ea63657c4b50cc7bb5de05d6edc exec /usr/lib64/libcurl.so.4.7.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId bba14e0811e1868693ba15066e5a276dc28a1cea exec /usr/lib64/libxml2.so.2.10.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 45d6b9bf7051ee6e9b6e90c65d63f50d95eb69b1 exec /usr/lib64/libgpgme.so.11.26.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId edb2d2b396426233902687038ee3325f027664b3 exec /usr/lib64/libmodulemd.so.2.14.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 821db1db73ce95440e5e94d07e74453275791725 exec /usr/lib64/libsqlite3.so.0.8.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 894c2b0df11f94e5efd8212b1b56eac7a09b9c16 exec /usr/lib64/librpmio.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId b9de0a847a43bd60485067346cb7228f5dc96002 exec /usr/lib64/librpm.so.9.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId dd6866dd3cfed4b4a4f24df09044b119c2bc9dc0 exec /usr/lib64/libsolvext.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId fae14c3c3067a42dc480b1d6898c46cd4e2a3f90 exec /usr/lib64/libgio-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId dd0e1143c0bf6537bb191fdfaf2b6cacd3a9919f exec /usr/lib64/libdnf.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId c3f24c7ba050a70c1d297dfcf1cbbd82f1124643 exec /usr/lib64/libpopt.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId a12ff0c301331fb49cdecb1593b2d116b935a5de exec /usr/lib64/libsmartcols.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 7c1fd71ef93f98fecfa51e0480287e48f2502fd2 exec /usr/lib64/libsolv.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 0b8a5d2389e6a87292760e6823985b8194400e5d exec /usr/lib64/libgobject-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5528616 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 661 buildId 57e2460714f275856b6fb371497da7c4b09ca408 exec /usr/lib64/python3.10/site-packages/libdnf/_conf.so +-> caching - new mapping +=> found 6195 unwind entries for /usr/lib64/python3.10/site-packages/libdnf/_conf.so low pc 17020 high pc 657cf +- current chunk size 6195 +- rest of chunk size 0 +- lowindex [ 28616 : 34811 ] highIndex +- executable 661 mapping /usr/lib64/python3.10/site-packages/libdnf/_conf.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5534811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 662 buildId c2d7b7c31b12cc8cccfbd50e47b99a6be56a764a exec /usr/lib64/libbz2.so.1.0.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5534811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 662 buildId 6dba4bea35c0ba990795f2bb414047aa5bd5ffa5 exec /usr/lib64/librepo.so.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5534811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 662 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5534811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 662 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5534811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 662 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5534811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 662 buildId cb5f89af81053c7c924c0394a19395dfa98ac32e exec /usr/lib64/libjson-c.so.5.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5534811 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 662 buildId dfcf447d194447b73388830bee32c17419f16dbb exec /usr/lib64/python3.10/site-packages/libdnf/_common_types.so +-> caching - new mapping +=> found 5028 unwind entries for /usr/lib64/python3.10/site-packages/libdnf/_common_types.so low pc 11020 high pc 47bc6 +- current chunk size 5028 +- rest of chunk size 0 +- lowindex [ 34811 : 39839 ] highIndex +- executable 662 mapping /usr/lib64/python3.10/site-packages/libdnf/_common_types.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5539839 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 663 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5539839 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 663 buildId 7bd6cc00ea7404c801ce15c998211451cea08ca0 exec /usr/lib64/python3.10/lib-dynload/_bz2.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5539839 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 663 buildId a18edcfaf2fa21015ec7f26e6beffcd103948031 exec /usr/lib64/python3.10/lib-dynload/zlib.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5539839 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 663 buildId 2989a6cef3b72c8695ff0e767e9c4e7c696b5be8 exec /usr/lib64/python3.10/site-packages/libdnf/_error.so +-> caching - new mapping +=> found 157 unwind entries for /usr/lib64/python3.10/site-packages/libdnf/_error.so low pc 2020 high pc 3c01 +- current chunk size 157 +- rest of chunk size 0 +- lowindex [ 39839 : 39996 ] highIndex +- executable 663 mapping /usr/lib64/python3.10/site-packages/libdnf/_error.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5539996 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 664 buildId 98829d644100b2043955776ee154297e778f3346 exec /usr/lib64/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 126 unwind entries for /usr/lib64/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so low pc 2020 high pc 2d49 +- current chunk size 126 +- rest of chunk size 0 +- lowindex [ 39996 : 40122 ] highIndex +- executable 664 mapping /usr/lib64/python3.10/lib-dynload/_queue.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5540122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 665 buildId 149201ea5c14c8a863a79f33ac50df3d25789008 exec /usr/lib64/python3.10/lib-dynload/_datetime.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5540122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 665 buildId b000b1b67599f328e69431d4ac2d896996f4d743 exec /usr/lib64/libpython3.10.so.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5540122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 665 buildId 4006c90cb9b90a3e8fd272b7d5cd6608369b5129 exec /usr/lib64/python3.10/lib-dynload/fcntl.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5540122 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 665 buildId 76b6df1e2e937ea47ac1a924e62e900e007f5f8a exec /usr/lib64/python3.10/site-packages/rpm/_rpm.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 1795 unwind entries for /usr/lib64/python3.10/site-packages/rpm/_rpm.cpython-310-x86_64-linux-gnu.so low pc d020 high pc 1a54c +- current chunk size 1795 +- rest of chunk size 0 +- lowindex [ 40122 : 41917 ] highIndex +- executable 665 mapping /usr/lib64/python3.10/site-packages/rpm/_rpm.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5541917 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 666 buildId 027610c59431fc59fb45c129b5555a779d593e2b exec /usr/lib64/python3.10/site-packages/libdnf/_utils.so +-> caching - new mapping +=> found 900 unwind entries for /usr/lib64/python3.10/site-packages/libdnf/_utils.so low pc 5020 high pc 106a6 +- current chunk size 900 +- rest of chunk size 0 +- lowindex [ 41917 : 42817 ] highIndex +- executable 666 mapping /usr/lib64/python3.10/site-packages/libdnf/_utils.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542817 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 667 buildId 3a323f020a937e833dec845fd1b7678d4cf63820 exec /usr/lib64/python3.10/lib-dynload/_socket.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542817 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 667 buildId 653f02422e5f2a79b6dd31e6b4c40626c0944b50 exec /usr/lib64/python3.10/lib-dynload/_sha512.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542817 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 667 buildId 6ebcddaccfdf181225e33f6f8c5988e47b94c8d4 exec /usr/lib64/python3.10/lib-dynload/_random.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542817 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 667 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542817 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 667 buildId 595a051e9f16aa291e4e7040e69984bb3f141cf7 exec /usr/lib64/python3.10/lib-dynload/_bisect.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542817 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 667 buildId 07d800ee35c02ad748b414bb52e20fa6c89f71a2 exec /usr/lib64/python3.10/lib-dynload/math.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542817 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 667 buildId 9324c493e3c452b561f673ad4f066be38d2ba715 exec /usr/lib64/python3.10/lib-dynload/binascii.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542817 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 667 buildId 628b5fa35947270a238abb43c328b4f8a35c6737 exec /usr/lib64/python3.10/lib-dynload/_heapq.cpython-310-x86_64-linux-gnu.so +-> caching - new mapping +=> found 157 unwind entries for /usr/lib64/python3.10/lib-dynload/_heapq.cpython-310-x86_64-linux-gnu.so low pc 1020 high pc 2394 +- current chunk size 157 +- rest of chunk size 0 +- lowindex [ 42817 : 42974 ] highIndex +- executable 667 mapping /usr/lib64/python3.10/lib-dynload/_heapq.cpython-310-x86_64-linux-gnu.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 3b3f464951d30244394e38593687e10ac99d0eff exec /usr/lib64/python3.10/lib-dynload/array.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 68f1ecf763a6610e9720325e713baed89ff05559 exec /usr/lib64/python3.10/lib-dynload/select.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 1d9735c7efa40331dd6eb81055a03135188ce39c exec /usr/lib64/python3.10/lib-dynload/_struct.cpython-310-x86_64-linux-gnu.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:34:53.159132634Z caller=cpu.go:495 msg="adding unwind tables" pid=83556 +level=info name=parca-agent ts=2023-01-25T11:34:53.159402771Z caller=cpu.go:495 msg="adding unwind tables" pid=83631 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5559ba6ee000, StartAddr: 0x5559ba71d000, EndAddr: 0x5559ba800000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:53.160128515Z caller=cpu.go:495 msg="adding unwind tables" pid=83635 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55724b5d0000, StartAddr: 0x55724b5d2000, EndAddr: 0x55724b5d6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:34:58.11373886Z caller=cpu.go:495 msg="adding unwind tables" pid=83641 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:34:58.113818799Z caller=cpu.go:495 msg="adding unwind tables" pid=83642 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:34:58.11388535Z caller=cpu.go:495 msg="adding unwind tables" pid=83643 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:34:58.1139243Z caller=cpu.go:495 msg="adding unwind tables" pid=83644 +level=info name=parca-agent ts=2023-01-25T11:34:58.114162382Z caller=cpu.go:495 msg="adding unwind tables" pid=83710 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f930993000, StartAddr: 0x55f9309c2000, EndAddr: 0x55f930aa5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:34:58.114882456Z caller=cpu.go:495 msg="adding unwind tables" pid=83714 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b7e9ffc000, StartAddr: 0x55b7e9ffe000, EndAddr: 0x55b7ea002000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:35:02.447486007Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:35:03.049458232Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:35:03.050217192Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:35:03.051515783Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:35:03.053065306Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:35:03.054409781Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:35:03.060873599Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:35:03.078371333Z caller=cpu.go:495 msg="adding unwind tables" pid=83775 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c03f78d000, StartAddr: 0x55c03f7bc000, EndAddr: 0x55c03f89f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:03.079194254Z caller=cpu.go:495 msg="adding unwind tables" pid=83779 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5559ea4a2000, StartAddr: 0x5559ea4a4000, EndAddr: 0x5559ea4a8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:35:08.112571784Z caller=cpu.go:495 msg="adding unwind tables" pid=83809 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b1676be000, StartAddr: 0x55b1676ed000, EndAddr: 0x55b1677d0000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:08.115221004Z caller=cpu.go:495 msg="adding unwind tables" pid=83813 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5633b26ad000, StartAddr: 0x5633b26af000, EndAddr: 0x5633b26b3000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:35:12.46136409Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:35:13.049789521Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:35:13.051171514Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:35:13.053141796Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:35:13.062730856Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:35:13.064107403Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:35:13.064530078Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:35:13.064777928Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=876 +level=info name=parca-agent ts=2023-01-25T11:35:13.072830796Z caller=cpu.go:495 msg="adding unwind tables" pid=83843 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ccf23cd000, StartAddr: 0x55ccf23fc000, EndAddr: 0x55ccf24df000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:13.07385661Z caller=cpu.go:495 msg="adding unwind tables" pid=83847 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5652c5b8b000, StartAddr: 0x5652c5b8d000, EndAddr: 0x5652c5b91000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:35:18.070651105Z caller=cpu.go:495 msg="adding unwind tables" pid=83853 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559cbb8d8000, StartAddr: 0x559cbb8da000, EndAddr: 0x559cbb8dd000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 668 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:18.074769366Z caller=cpu.go:495 msg="adding unwind tables" pid=83926 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ea5ba8a000, StartAddr: 0x55ea5bab9000, EndAddr: 0x55ea5bb9c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:18.075704093Z caller=cpu.go:495 msg="adding unwind tables" pid=83929 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555c0e182000, StartAddr: 0x555c0e184000, EndAddr: 0x555c0e188000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:18.076421964Z caller=cpu.go:495 msg="adding unwind tables" pid=83934 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561c67494000, StartAddr: 0x561c674c3000, EndAddr: 0x561c675a6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:18.077275776Z caller=cpu.go:495 msg="adding unwind tables" pid=83938 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e709ea7000, StartAddr: 0x55e709ea9000, EndAddr: 0x55e709ead000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:35:22.433878813Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:35:23.049320112Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:35:23.050177709Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:35:23.051114369Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:35:23.051627564Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:35:23.051770756Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:35:23.057460211Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=81616 +level=debug name=parca-agent ts=2023-01-25T11:35:23.057938541Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:35:23.061022476Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:35:23.066684434Z caller=cpu.go:495 msg="adding unwind tables" pid=83982 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b44f956000, StartAddr: 0x55b44f985000, EndAddr: 0x55b44fa68000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:23.067286893Z caller=cpu.go:495 msg="adding unwind tables" pid=83986 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564d690a2000, StartAddr: 0x564d690a4000, EndAddr: 0x564d690a8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:35:28.069116647Z caller=cpu.go:495 msg="adding unwind tables" pid=84016 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e13dc1b000, StartAddr: 0x55e13dc4a000, EndAddr: 0x55e13dd2d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:28.069980923Z caller=cpu.go:495 msg="adding unwind tables" pid=84020 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5621f6c38000, StartAddr: 0x5621f6c3a000, EndAddr: 0x5621f6c3e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:35:32.435871597Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:35:33.049686362Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:35:33.050992778Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:35:33.053276698Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:35:33.054255314Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:35:33.055739408Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:35:33.061648144Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:35:33.068240601Z caller=cpu.go:495 msg="adding unwind tables" pid=84123 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5613b0d66000, StartAddr: 0x5613b0d95000, EndAddr: 0x5613b0e78000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:33.068761485Z caller=cpu.go:495 msg="adding unwind tables" pid=84127 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557a068c1000, StartAddr: 0x557a068c3000, EndAddr: 0x557a068c7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:35:38.090554896Z caller=cpu.go:495 msg="adding unwind tables" pid=84176 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557aface2000, StartAddr: 0x557afad11000, EndAddr: 0x557afadf4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:38.091484594Z caller=cpu.go:495 msg="adding unwind tables" pid=84180 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556037a3d000, StartAddr: 0x556037a3f000, EndAddr: 0x556037a43000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:35:42.434700541Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:35:43.04979452Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:35:43.050956707Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=876 +level=debug name=parca-agent ts=2023-01-25T11:35:43.051006611Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:35:43.056493013Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:35:43.056690666Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:35:43.057772452Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:35:43.058115687Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:35:43.065816783Z caller=cpu.go:495 msg="adding unwind tables" pid=84210 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557df54c7000, StartAddr: 0x557df54f6000, EndAddr: 0x557df55d9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:43.066497784Z caller=cpu.go:495 msg="adding unwind tables" pid=84214 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556c93367000, StartAddr: 0x556c93369000, EndAddr: 0x556c9336d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:35:48.070878099Z caller=cpu.go:495 msg="adding unwind tables" pid=84261 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fdcc078000, StartAddr: 0x55fdcc07a000, EndAddr: 0x55fdcc07d000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 668 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:48.07393693Z caller=cpu.go:495 msg="adding unwind tables" pid=84270 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5620c4411000, StartAddr: 0x5620c4440000, EndAddr: 0x5620c4523000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:48.074506887Z caller=cpu.go:495 msg="adding unwind tables" pid=84274 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e419832000, StartAddr: 0x55e419834000, EndAddr: 0x55e419838000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:35:52.437951181Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:35:53.051152105Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:35:53.070005637Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:35:53.07530488Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:35:53.078308648Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:35:53.082275068Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:35:53.083283269Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:35:53.084465239Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:35:53.100466735Z caller=cpu.go:495 msg="adding unwind tables" pid=84328 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564b36f3a000, StartAddr: 0x564b36f69000, EndAddr: 0x564b3704c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:53.102129926Z caller=cpu.go:495 msg="adding unwind tables" pid=84332 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a7465d7000, StartAddr: 0x55a7465d9000, EndAddr: 0x55a7465dd000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:35:58.069103883Z caller=cpu.go:495 msg="adding unwind tables" pid=84349 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a8d2310000, StartAddr: 0x55a8d2312000, EndAddr: 0x55a8d2315000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 668 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:58.072657131Z caller=cpu.go:495 msg="adding unwind tables" pid=84363 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5581b5b4d000, StartAddr: 0x5581b5b7c000, EndAddr: 0x5581b5c5f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:35:58.073273164Z caller=cpu.go:495 msg="adding unwind tables" pid=84367 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b86b33f000, StartAddr: 0x55b86b341000, EndAddr: 0x55b86b345000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:36:02.43313341Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:36:03.05026291Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:36:03.051405816Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:36:03.051507772Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:36:03.054121518Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:36:03.054706643Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:36:03.057381393Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:36:03.05743635Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:36:03.061827266Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:36:03.066750118Z caller=cpu.go:495 msg="adding unwind tables" pid=84430 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5646fcd37000, StartAddr: 0x5646fcd66000, EndAddr: 0x5646fce49000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:03.067418278Z caller=cpu.go:495 msg="adding unwind tables" pid=84433 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dd62a8c000, StartAddr: 0x55dd62a8e000, EndAddr: 0x55dd62a92000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:03.068043427Z caller=cpu.go:495 msg="adding unwind tables" pid=84438 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564b8c6d3000, StartAddr: 0x564b8c702000, EndAddr: 0x564b8c7e5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:03.068725067Z caller=cpu.go:495 msg="adding unwind tables" pid=84442 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562ac91c4000, StartAddr: 0x562ac91c6000, EndAddr: 0x562ac91ca000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:36:08.066154375Z caller=cpu.go:495 msg="adding unwind tables" pid=84504 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558587cb6000, StartAddr: 0x558587ce5000, EndAddr: 0x558587dc8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:08.066709644Z caller=cpu.go:495 msg="adding unwind tables" pid=84508 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55817f31c000, StartAddr: 0x55817f31e000, EndAddr: 0x55817f322000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:36:12.433391241Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:36:13.05552971Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:36:13.063756541Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:36:13.065567095Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:36:13.071867218Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:36:13.076376627Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:36:13.08301012Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:36:13.108820542Z caller=cpu.go:495 msg="adding unwind tables" pid=84581 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55931b202000, StartAddr: 0x55931b231000, EndAddr: 0x55931b314000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:13.110411842Z caller=cpu.go:495 msg="adding unwind tables" pid=84585 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559dbdf71000, StartAddr: 0x559dbdf73000, EndAddr: 0x559dbdf77000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:36:18.064545109Z caller=cpu.go:495 msg="adding unwind tables" pid=84618 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5603c1a6e000, StartAddr: 0x5603c1a9d000, EndAddr: 0x5603c1b80000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:18.065185665Z caller=cpu.go:495 msg="adding unwind tables" pid=84622 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556224405000, StartAddr: 0x556224407000, EndAddr: 0x55622440b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:36:22.460403229Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:36:23.053026067Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:36:23.056853335Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:36:23.061208955Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:36:23.063859544Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:36:23.092963269Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:36:23.09381456Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:36:23.126337758Z caller=cpu.go:495 msg="adding unwind tables" pid=84652 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600e78ea000, StartAddr: 0x5600e7919000, EndAddr: 0x5600e79fc000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:23.130208289Z caller=cpu.go:495 msg="adding unwind tables" pid=84656 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56536b815000, StartAddr: 0x56536b817000, EndAddr: 0x56536b81b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:36:28.069249667Z caller=cpu.go:495 msg="adding unwind tables" pid=84686 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e58e8f2000, StartAddr: 0x55e58e921000, EndAddr: 0x55e58ea04000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:28.070199087Z caller=cpu.go:495 msg="adding unwind tables" pid=84690 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5648b1a67000, StartAddr: 0x5648b1a69000, EndAddr: 0x5648b1a6d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:36:32.454121034Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:36:33.068542483Z caller=cpu.go:495 msg="adding unwind tables" pid=84720 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5620ff40d000, StartAddr: 0x5620ff43c000, EndAddr: 0x5620ff51f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:33.069490094Z caller=cpu.go:495 msg="adding unwind tables" pid=84724 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559c41c0a000, StartAddr: 0x559c41c0c000, EndAddr: 0x559c41c10000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:36:33.172409096Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:36:33.173824822Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:36:33.175182278Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:36:33.176559512Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:36:33.177290493Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:36:33.177827562Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:36:38.065574928Z caller=cpu.go:495 msg="adding unwind tables" pid=84754 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a4e9eaf000, StartAddr: 0x55a4e9ede000, EndAddr: 0x55a4e9fc1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:38.066108725Z caller=cpu.go:495 msg="adding unwind tables" pid=84758 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564754832000, StartAddr: 0x564754834000, EndAddr: 0x564754838000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:36:42.439452405Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:36:43.049648029Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:36:43.055993578Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:36:43.056455113Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:36:43.060773863Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:36:43.060878198Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:36:43.062129689Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:36:43.063363785Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:36:43.068280087Z caller=cpu.go:495 msg="adding unwind tables" pid=84788 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5629711cd000, StartAddr: 0x5629711fc000, EndAddr: 0x5629712df000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:43.069085332Z caller=cpu.go:495 msg="adding unwind tables" pid=84792 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55732717c000, StartAddr: 0x55732717e000, EndAddr: 0x557327182000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:36:48.064308912Z caller=cpu.go:495 msg="adding unwind tables" pid=84822 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560c4dafd000, StartAddr: 0x560c4db2c000, EndAddr: 0x560c4dc0f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:48.064926741Z caller=cpu.go:495 msg="adding unwind tables" pid=84826 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563111151000, StartAddr: 0x563111153000, EndAddr: 0x563111157000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:36:52.464382658Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:36:53.04980043Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:36:53.050332094Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:36:53.051933552Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:36:53.053433235Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:36:53.054704392Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:36:53.058788891Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:36:53.066681539Z caller=cpu.go:495 msg="adding unwind tables" pid=84856 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559a43356000, StartAddr: 0x559a43385000, EndAddr: 0x559a43468000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:53.067304039Z caller=cpu.go:495 msg="adding unwind tables" pid=84860 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5637b85fd000, StartAddr: 0x5637b85ff000, EndAddr: 0x5637b8603000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:36:58.08469712Z caller=cpu.go:495 msg="adding unwind tables" pid=84890 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d0dbe22000, StartAddr: 0x55d0dbe51000, EndAddr: 0x55d0dbf34000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:36:58.086505297Z caller=cpu.go:495 msg="adding unwind tables" pid=84894 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a124a8d000, StartAddr: 0x55a124a8f000, EndAddr: 0x55a124a93000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:37:02.43389658Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:37:03.050116657Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:37:03.0503281Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:37:03.051800002Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:37:03.052567935Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:37:03.054852998Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:37:03.061321111Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:37:03.068101283Z caller=cpu.go:495 msg="adding unwind tables" pid=84924 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5594bbb59000, StartAddr: 0x5594bbb88000, EndAddr: 0x5594bbc6b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:03.068765923Z caller=cpu.go:495 msg="adding unwind tables" pid=84928 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564e7ca55000, StartAddr: 0x564e7ca57000, EndAddr: 0x564e7ca5b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:37:08.064445266Z caller=cpu.go:495 msg="adding unwind tables" pid=84958 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5629c6602000, StartAddr: 0x5629c6631000, EndAddr: 0x5629c6714000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:08.064971313Z caller=cpu.go:495 msg="adding unwind tables" pid=84962 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5650b6507000, StartAddr: 0x5650b6509000, EndAddr: 0x5650b650d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:37:12.464332638Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:37:13.053490171Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:37:13.054902974Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:37:13.056792914Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:37:13.057337024Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:37:13.058165148Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:37:13.069708361Z caller=cpu.go:495 msg="adding unwind tables" pid=84992 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559773e98000, StartAddr: 0x559773ec7000, EndAddr: 0x559773faa000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:13.070403725Z caller=cpu.go:495 msg="adding unwind tables" pid=84996 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560528457000, StartAddr: 0x560528459000, EndAddr: 0x56052845d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:37:18.067443575Z caller=cpu.go:495 msg="adding unwind tables" pid=85026 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5562b9f09000, StartAddr: 0x5562b9f38000, EndAddr: 0x5562ba01b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:18.068190298Z caller=cpu.go:495 msg="adding unwind tables" pid=85030 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bf701f6000, StartAddr: 0x55bf701f8000, EndAddr: 0x55bf701fc000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:37:22.43361683Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:37:23.04961083Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:37:23.049758968Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:37:23.056465385Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:37:23.060689191Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:37:23.061845418Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:37:23.063231498Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:37:23.063347943Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:37:23.068779534Z caller=cpu.go:495 msg="adding unwind tables" pid=85060 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c706674000, StartAddr: 0x55c7066a3000, EndAddr: 0x55c706786000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:23.06930575Z caller=cpu.go:495 msg="adding unwind tables" pid=85064 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556efbb58000, StartAddr: 0x556efbb5a000, EndAddr: 0x556efbb5e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:37:28.101322109Z caller=cpu.go:495 msg="adding unwind tables" pid=85094 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55953d33e000, StartAddr: 0x55953d36d000, EndAddr: 0x55953d450000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:28.102238675Z caller=cpu.go:495 msg="adding unwind tables" pid=85098 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55acf5032000, StartAddr: 0x55acf5034000, EndAddr: 0x55acf5038000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:37:32.439995339Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:37:33.049606946Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:37:33.051340487Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:37:33.051550542Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:37:33.058869054Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:37:33.063103376Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:37:33.063407992Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:37:33.065134161Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:37:33.0673114Z caller=cpu.go:495 msg="adding unwind tables" pid=85128 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556b22d2a000, StartAddr: 0x556b22d59000, EndAddr: 0x556b22e3c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:33.067983577Z caller=cpu.go:495 msg="adding unwind tables" pid=85132 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562fe31b5000, StartAddr: 0x562fe31b7000, EndAddr: 0x562fe31bb000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:37:38.090697031Z caller=cpu.go:495 msg="adding unwind tables" pid=85162 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563ee161e000, StartAddr: 0x563ee164d000, EndAddr: 0x563ee1730000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:38.091368219Z caller=cpu.go:495 msg="adding unwind tables" pid=85166 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5563ba99f000, StartAddr: 0x5563ba9a1000, EndAddr: 0x5563ba9a5000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:37:42.441182338Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:37:43.049372251Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:37:43.049457084Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:37:43.050635645Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:37:43.050829901Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:37:43.052177634Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:37:43.055836255Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:37:43.064607613Z caller=cpu.go:495 msg="adding unwind tables" pid=85196 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55db743f9000, StartAddr: 0x55db74428000, EndAddr: 0x55db7450b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:43.065115258Z caller=cpu.go:495 msg="adding unwind tables" pid=85200 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55655031d000, StartAddr: 0x55655031f000, EndAddr: 0x556550323000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:37:48.069171737Z caller=cpu.go:495 msg="adding unwind tables" pid=85230 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556633cdb000, StartAddr: 0x556633d0a000, EndAddr: 0x556633ded000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:48.070001131Z caller=cpu.go:495 msg="adding unwind tables" pid=85234 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564ad0a1d000, StartAddr: 0x564ad0a1f000, EndAddr: 0x564ad0a23000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:37:52.436424205Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:37:53.049634326Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:37:53.050354171Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:37:53.051905375Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:37:53.052087059Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:37:53.056948678Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:37:53.057993173Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:37:53.065014161Z caller=cpu.go:495 msg="adding unwind tables" pid=85264 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ce2ba8c000, StartAddr: 0x55ce2babb000, EndAddr: 0x55ce2bb9e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:53.065692337Z caller=cpu.go:495 msg="adding unwind tables" pid=85268 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56415edc5000, StartAddr: 0x56415edc7000, EndAddr: 0x56415edcb000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:37:58.099860803Z caller=cpu.go:495 msg="adding unwind tables" pid=85298 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d634416000, StartAddr: 0x55d634445000, EndAddr: 0x55d634528000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:37:58.10083361Z caller=cpu.go:495 msg="adding unwind tables" pid=85302 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d331ff4000, StartAddr: 0x55d331ff6000, EndAddr: 0x55d331ffa000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:38:02.434992578Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:38:03.049328967Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:38:03.054940083Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:38:03.056410699Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:38:03.057675927Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:38:03.057770076Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:38:03.05880557Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:38:03.065031895Z caller=cpu.go:495 msg="adding unwind tables" pid=85332 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5627dcd75000, StartAddr: 0x5627dcda4000, EndAddr: 0x5627dce87000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:03.065745187Z caller=cpu.go:495 msg="adding unwind tables" pid=85336 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dbe28da000, StartAddr: 0x55dbe28dc000, EndAddr: 0x55dbe28e0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:38:08.066689469Z caller=cpu.go:495 msg="adding unwind tables" pid=85366 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5644c6380000, StartAddr: 0x5644c63af000, EndAddr: 0x5644c6492000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:08.067419639Z caller=cpu.go:495 msg="adding unwind tables" pid=85370 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56281c1d7000, StartAddr: 0x56281c1d9000, EndAddr: 0x56281c1dd000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:38:12.452552016Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:38:13.050966961Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:38:13.054197298Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:38:13.057097148Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:38:13.058683059Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:38:13.087134395Z caller=cpu.go:495 msg="adding unwind tables" pid=85400 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f51f202000, StartAddr: 0x55f51f231000, EndAddr: 0x55f51f314000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:13.089520398Z caller=cpu.go:495 msg="adding unwind tables" pid=85404 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556532594000, StartAddr: 0x556532596000, EndAddr: 0x55653259a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:38:18.066683948Z caller=cpu.go:495 msg="adding unwind tables" pid=85434 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fe67b10000, StartAddr: 0x55fe67b3f000, EndAddr: 0x55fe67c22000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:18.067408089Z caller=cpu.go:495 msg="adding unwind tables" pid=85438 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a666164000, StartAddr: 0x55a666166000, EndAddr: 0x55a66616a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:38:22.432330534Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=4 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:38:23.052945644Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:38:23.086459017Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:38:23.088116941Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:38:23.095040551Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:38:23.103508305Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:38:23.104790317Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:38:23.139619925Z caller=cpu.go:495 msg="adding unwind tables" pid=85468 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cbf202e000, StartAddr: 0x55cbf205d000, EndAddr: 0x55cbf2140000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:23.142219399Z caller=cpu.go:495 msg="adding unwind tables" pid=85472 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560e3d37d000, StartAddr: 0x560e3d37f000, EndAddr: 0x560e3d383000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:38:28.071118775Z caller=cpu.go:495 msg="adding unwind tables" pid=85502 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f56303f000, StartAddr: 0x55f56306e000, EndAddr: 0x55f563151000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:28.071923591Z caller=cpu.go:495 msg="adding unwind tables" pid=85506 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c5e93ee000, StartAddr: 0x55c5e93f0000, EndAddr: 0x55c5e93f4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:28.072640126Z caller=cpu.go:495 msg="adding unwind tables" pid=85511 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a286612000, StartAddr: 0x55a286641000, EndAddr: 0x55a286724000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:28.073353648Z caller=cpu.go:495 msg="adding unwind tables" pid=85517 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563bf4bba000, StartAddr: 0x563bf4bbc000, EndAddr: 0x563bf4bc0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:38:32.440786534Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:38:33.049680749Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:38:33.050892351Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:38:33.052933114Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:38:33.053462865Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:38:33.054357299Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:38:33.060123036Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:38:33.066062791Z caller=cpu.go:495 msg="adding unwind tables" pid=85556 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556b76617000, StartAddr: 0x556b76646000, EndAddr: 0x556b76729000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:33.066800087Z caller=cpu.go:495 msg="adding unwind tables" pid=85560 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d31654d000, StartAddr: 0x55d31654f000, EndAddr: 0x55d316553000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:38:38.068678589Z caller=cpu.go:495 msg="adding unwind tables" pid=85590 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558481094000, StartAddr: 0x5584810c3000, EndAddr: 0x5584811a6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:38.069452891Z caller=cpu.go:495 msg="adding unwind tables" pid=85594 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559a36555000, StartAddr: 0x559a36557000, EndAddr: 0x559a3655b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:38:42.439372676Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:38:43.054694439Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:38:43.059778478Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:38:43.067366196Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:38:43.091987941Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:38:43.09254106Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:38:43.100902556Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:38:43.12785835Z caller=cpu.go:495 msg="adding unwind tables" pid=85624 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558f3fa6b000, StartAddr: 0x558f3fa9a000, EndAddr: 0x558f3fb7d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:43.13025636Z caller=cpu.go:495 msg="adding unwind tables" pid=85628 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561d7617f000, StartAddr: 0x561d76181000, EndAddr: 0x561d76185000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:38:48.067381933Z caller=cpu.go:495 msg="adding unwind tables" pid=85658 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f48fe58000, StartAddr: 0x55f48fe87000, EndAddr: 0x55f48ff6a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:48.067985104Z caller=cpu.go:495 msg="adding unwind tables" pid=85662 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5555e8fc3000, StartAddr: 0x5555e8fc5000, EndAddr: 0x5555e8fc9000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:38:52.43253686Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:38:53.050113305Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:38:53.051306498Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:38:53.053246364Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:38:53.053697084Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:38:53.053834062Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:38:53.067860955Z caller=cpu.go:495 msg="adding unwind tables" pid=85692 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56413cd73000, StartAddr: 0x56413cda2000, EndAddr: 0x56413ce85000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:53.068510055Z caller=cpu.go:495 msg="adding unwind tables" pid=85696 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558654574000, StartAddr: 0x558654576000, EndAddr: 0x55865457a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:38:58.064995576Z caller=cpu.go:495 msg="adding unwind tables" pid=85726 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c879140000, StartAddr: 0x55c87916f000, EndAddr: 0x55c879252000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:58.065519583Z caller=cpu.go:495 msg="adding unwind tables" pid=85732 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b5274b2000, StartAddr: 0x55b5274b4000, EndAddr: 0x55b5274b8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:58.066045321Z caller=cpu.go:495 msg="adding unwind tables" pid=85737 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5645650bf000, StartAddr: 0x5645650ee000, EndAddr: 0x5645651d1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:38:58.066559064Z caller=cpu.go:495 msg="adding unwind tables" pid=85741 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d6d7ba0000, StartAddr: 0x55d6d7ba2000, EndAddr: 0x55d6d7ba6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:39:02.45941755Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:39:03.049456637Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:39:03.049818669Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:39:03.051899107Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:39:03.052422553Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:39:03.053535593Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:39:03.057078914Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:39:03.062448719Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:39:03.067287942Z caller=cpu.go:495 msg="adding unwind tables" pid=85780 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c313b4a000, StartAddr: 0x55c313b79000, EndAddr: 0x55c313c5c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:03.06804136Z caller=cpu.go:495 msg="adding unwind tables" pid=85784 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e5faf32000, StartAddr: 0x55e5faf34000, EndAddr: 0x55e5faf38000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:39:08.109030782Z caller=cpu.go:495 msg="adding unwind tables" pid=85814 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a892eed000, StartAddr: 0x55a892f1c000, EndAddr: 0x55a892fff000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:08.110184159Z caller=cpu.go:495 msg="adding unwind tables" pid=85818 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5595782b4000, StartAddr: 0x5595782b6000, EndAddr: 0x5595782ba000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:39:12.461191947Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:39:13.049576964Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:39:13.049760918Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:39:13.054692306Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:39:13.056240121Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:39:13.057152327Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:39:13.07015762Z caller=cpu.go:495 msg="adding unwind tables" pid=85848 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b03e72c000, StartAddr: 0x55b03e75b000, EndAddr: 0x55b03e83e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:13.071053947Z caller=cpu.go:495 msg="adding unwind tables" pid=85852 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56533af56000, StartAddr: 0x56533af58000, EndAddr: 0x56533af5c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:39:18.064561732Z caller=cpu.go:495 msg="adding unwind tables" pid=85882 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557e5460f000, StartAddr: 0x557e5463e000, EndAddr: 0x557e54721000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:18.065082415Z caller=cpu.go:495 msg="adding unwind tables" pid=85886 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d13efab000, StartAddr: 0x55d13efad000, EndAddr: 0x55d13efb1000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:39:22.439631263Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:39:23.049487874Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:39:23.050565452Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:39:23.052566812Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:39:23.054405398Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:39:23.054634777Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:39:23.059049376Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:39:23.06933035Z caller=cpu.go:495 msg="adding unwind tables" pid=85916 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5594a1cc2000, StartAddr: 0x5594a1cf1000, EndAddr: 0x5594a1dd4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:23.070113827Z caller=cpu.go:495 msg="adding unwind tables" pid=85920 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56337203b000, StartAddr: 0x56337203d000, EndAddr: 0x563372041000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:39:28.100359693Z caller=cpu.go:495 msg="adding unwind tables" pid=85950 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56440a8e1000, StartAddr: 0x56440a910000, EndAddr: 0x56440a9f3000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:28.101320494Z caller=cpu.go:495 msg="adding unwind tables" pid=85954 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563b4b822000, StartAddr: 0x563b4b824000, EndAddr: 0x563b4b828000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:39:32.43710271Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:39:33.051102589Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:39:33.051279453Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:39:33.055941574Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:39:33.05632973Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:39:33.05777957Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:39:33.059129975Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:39:33.069357178Z caller=cpu.go:495 msg="adding unwind tables" pid=85984 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b4e8f71000, StartAddr: 0x55b4e8fa0000, EndAddr: 0x55b4e9083000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:33.070141136Z caller=cpu.go:495 msg="adding unwind tables" pid=85988 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b760197000, StartAddr: 0x55b760199000, EndAddr: 0x55b76019d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:39:38.090862216Z caller=cpu.go:495 msg="adding unwind tables" pid=86018 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5557b6c2d000, StartAddr: 0x5557b6c5c000, EndAddr: 0x5557b6d3f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:38.091737145Z caller=cpu.go:495 msg="adding unwind tables" pid=86022 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5569d57ee000, StartAddr: 0x5569d57f0000, EndAddr: 0x5569d57f4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:39:42.444409009Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:39:43.050114229Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:39:43.054778663Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:39:43.055956164Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:39:43.056832925Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:39:43.057654882Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:39:43.057761668Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:39:43.07196955Z caller=cpu.go:495 msg="adding unwind tables" pid=86052 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a1a85cf000, StartAddr: 0x55a1a85fe000, EndAddr: 0x55a1a86e1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:43.072843127Z caller=cpu.go:495 msg="adding unwind tables" pid=86056 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e19f18d000, StartAddr: 0x55e19f18f000, EndAddr: 0x55e19f193000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:39:48.069475982Z caller=cpu.go:495 msg="adding unwind tables" pid=86086 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559cfd37d000, StartAddr: 0x559cfd3ac000, EndAddr: 0x559cfd48f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:48.070299135Z caller=cpu.go:495 msg="adding unwind tables" pid=86090 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c5df755000, StartAddr: 0x55c5df757000, EndAddr: 0x55c5df75b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:39:52.432028727Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:39:53.049382396Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:39:53.050370113Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:39:53.050464604Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:39:53.052415298Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:39:53.052690496Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:39:53.05581848Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:39:53.066368515Z caller=cpu.go:495 msg="adding unwind tables" pid=86120 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c3f4d3e000, StartAddr: 0x55c3f4d6d000, EndAddr: 0x55c3f4e50000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:53.066963951Z caller=cpu.go:495 msg="adding unwind tables" pid=86124 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b86c48d000, StartAddr: 0x55b86c48f000, EndAddr: 0x55b86c493000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:39:58.068209233Z caller=cpu.go:495 msg="adding unwind tables" pid=86154 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55777ccdd000, StartAddr: 0x55777cd0c000, EndAddr: 0x55777cdef000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:39:58.069003442Z caller=cpu.go:495 msg="adding unwind tables" pid=86158 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563832336000, StartAddr: 0x563832338000, EndAddr: 0x56383233c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:40:02.433438863Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:40:03.049825482Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:40:03.050197883Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:40:03.055805188Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:40:03.056929554Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:40:03.058247536Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:40:03.070683045Z caller=cpu.go:495 msg="adding unwind tables" pid=86185 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:40:03.070776396Z caller=cpu.go:495 msg="adding unwind tables" pid=86186 +level=info name=parca-agent ts=2023-01-25T11:40:03.071064661Z caller=cpu.go:495 msg="adding unwind tables" pid=86191 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b094989000, StartAddr: 0x55b0949b8000, EndAddr: 0x55b094a9b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:03.071890366Z caller=cpu.go:495 msg="adding unwind tables" pid=86195 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c63dc93000, StartAddr: 0x55c63dc95000, EndAddr: 0x55c63dc99000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:40:08.100923235Z caller=cpu.go:495 msg="adding unwind tables" pid=86225 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558931320000, StartAddr: 0x55893134f000, EndAddr: 0x558931432000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:08.101915955Z caller=cpu.go:495 msg="adding unwind tables" pid=86229 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55edc829b000, StartAddr: 0x55edc829d000, EndAddr: 0x55edc82a1000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:40:12.434333826Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:40:13.049623433Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:40:13.049874728Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:40:13.05082372Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:40:13.052483667Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:40:13.054061194Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:40:13.05769859Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:40:13.06516138Z caller=cpu.go:495 msg="adding unwind tables" pid=86259 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cce69d3000, StartAddr: 0x55cce6a02000, EndAddr: 0x55cce6ae5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:13.065724615Z caller=cpu.go:495 msg="adding unwind tables" pid=86263 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558c43dd4000, StartAddr: 0x558c43dd6000, EndAddr: 0x558c43dda000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:40:18.069535679Z caller=cpu.go:495 msg="adding unwind tables" pid=86280 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555d2e405000, StartAddr: 0x555d2e407000, EndAddr: 0x555d2e40a000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 668 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:18.072954068Z caller=cpu.go:495 msg="adding unwind tables" pid=86294 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d5a9fc1000, StartAddr: 0x55d5a9ff0000, EndAddr: 0x55d5aa0d3000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:18.073776529Z caller=cpu.go:495 msg="adding unwind tables" pid=86298 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f5ce51b000, StartAddr: 0x55f5ce51d000, EndAddr: 0x55f5ce521000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:40:22.437849564Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:40:23.049235683Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:40:23.053202328Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:40:23.053616096Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:40:23.054534627Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:40:23.055764188Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:40:23.055890673Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:40:23.065313962Z caller=cpu.go:495 msg="adding unwind tables" pid=86328 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x565489aec000, StartAddr: 0x565489b1b000, EndAddr: 0x565489bfe000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:23.065895229Z caller=cpu.go:495 msg="adding unwind tables" pid=86332 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56466f98c000, StartAddr: 0x56466f98e000, EndAddr: 0x56466f992000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:40:28.065664453Z caller=cpu.go:495 msg="adding unwind tables" pid=86362 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5633ec75a000, StartAddr: 0x5633ec789000, EndAddr: 0x5633ec86c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:28.06622058Z caller=cpu.go:495 msg="adding unwind tables" pid=86366 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bf80aac000, StartAddr: 0x55bf80aae000, EndAddr: 0x55bf80ab2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:40:32.440102394Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:40:33.049714989Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:40:33.053732685Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:40:33.054690978Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:40:33.060392447Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:40:33.060501111Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:40:33.061350704Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:40:33.066417436Z caller=cpu.go:495 msg="adding unwind tables" pid=86396 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c6a1f4f000, StartAddr: 0x55c6a1f7e000, EndAddr: 0x55c6a2061000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:33.067478508Z caller=cpu.go:495 msg="adding unwind tables" pid=86400 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55903702d000, StartAddr: 0x55903702f000, EndAddr: 0x559037033000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:40:38.06933589Z caller=cpu.go:495 msg="adding unwind tables" pid=86406 +level=info name=parca-agent ts=2023-01-25T11:40:38.069646323Z caller=cpu.go:495 msg="adding unwind tables" pid=86431 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559ec44c7000, StartAddr: 0x559ec44f6000, EndAddr: 0x559ec45d9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:38.07038878Z caller=cpu.go:495 msg="adding unwind tables" pid=86435 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e5cea7d000, StartAddr: 0x55e5cea7f000, EndAddr: 0x55e5cea83000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:40:42.43283436Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:40:43.052502485Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:40:43.069843673Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:40:43.074134532Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:40:43.079326927Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:40:43.080830769Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:40:43.081942384Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:40:43.113282649Z caller=cpu.go:495 msg="adding unwind tables" pid=86465 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55938df6d000, StartAddr: 0x55938df9c000, EndAddr: 0x55938e07f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:43.114492925Z caller=cpu.go:495 msg="adding unwind tables" pid=86469 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d5c4be0000, StartAddr: 0x55d5c4be2000, EndAddr: 0x55d5c4be6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:40:48.068928648Z caller=cpu.go:495 msg="adding unwind tables" pid=86499 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c9179d3000, StartAddr: 0x55c917a02000, EndAddr: 0x55c917ae5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:48.06972217Z caller=cpu.go:495 msg="adding unwind tables" pid=86503 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d94dd07000, StartAddr: 0x55d94dd09000, EndAddr: 0x55d94dd0d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:40:52.433872567Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:40:53.049893474Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:40:53.05065941Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:40:53.051479943Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:40:53.05934665Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:40:53.059544386Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=info name=parca-agent ts=2023-01-25T11:40:53.068949609Z caller=cpu.go:495 msg="adding unwind tables" pid=86504 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5645ad524000, StartAddr: 0x5645ad526000, EndAddr: 0x5645ad529000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 668 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:53.072387606Z caller=cpu.go:495 msg="adding unwind tables" pid=86534 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555a9f458000, StartAddr: 0x555a9f487000, EndAddr: 0x555a9f56a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:53.073143827Z caller=cpu.go:495 msg="adding unwind tables" pid=86538 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557714e98000, StartAddr: 0x557714e9a000, EndAddr: 0x557714e9e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:40:58.068764606Z caller=cpu.go:495 msg="adding unwind tables" pid=86564 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556c559a4000, StartAddr: 0x556c559a6000, EndAddr: 0x556c559a9000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 668 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:58.071193992Z caller=cpu.go:495 msg="adding unwind tables" pid=86569 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5589114d3000, StartAddr: 0x558911502000, EndAddr: 0x5589115e5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:40:58.071703361Z caller=cpu.go:495 msg="adding unwind tables" pid=86573 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bd53182000, StartAddr: 0x55bd53184000, EndAddr: 0x55bd53188000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:41:02.433056925Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:41:03.050255732Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:41:03.051474054Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:41:03.053353415Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:41:03.054234136Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:41:03.054414258Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:41:03.068724041Z caller=cpu.go:495 msg="adding unwind tables" pid=86604 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56514ab3c000, StartAddr: 0x56514ab6b000, EndAddr: 0x56514ac4e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:03.069466243Z caller=cpu.go:495 msg="adding unwind tables" pid=86608 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5622237fd000, StartAddr: 0x5622237ff000, EndAddr: 0x562223803000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:41:08.067264664Z caller=cpu.go:495 msg="adding unwind tables" pid=86638 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55f9a2d41000, StartAddr: 0x55f9a2d70000, EndAddr: 0x55f9a2e53000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:08.067953515Z caller=cpu.go:495 msg="adding unwind tables" pid=86642 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563c36ba5000, StartAddr: 0x563c36ba7000, EndAddr: 0x563c36bab000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:41:12.464582493Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:41:13.050395175Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:41:13.051644357Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:41:13.053915782Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:41:13.054173067Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:41:13.055649726Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:41:13.060605822Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:41:13.068829261Z caller=cpu.go:495 msg="adding unwind tables" pid=86672 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563e21a42000, StartAddr: 0x563e21a71000, EndAddr: 0x563e21b54000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:13.069575026Z caller=cpu.go:495 msg="adding unwind tables" pid=86676 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b499350000, StartAddr: 0x55b499352000, EndAddr: 0x55b499356000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:41:18.064219957Z caller=cpu.go:495 msg="adding unwind tables" pid=86706 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aceff52000, StartAddr: 0x55aceff81000, EndAddr: 0x55acf0064000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:18.064821547Z caller=cpu.go:495 msg="adding unwind tables" pid=86710 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5608d1b16000, StartAddr: 0x5608d1b18000, EndAddr: 0x5608d1b1c000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:41:22.433349493Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:41:23.049801472Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:41:23.050999319Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:41:23.051654371Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:41:23.053062949Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:41:23.053906934Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:41:23.068055254Z caller=cpu.go:495 msg="adding unwind tables" pid=86740 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cc2aad2000, StartAddr: 0x55cc2ab01000, EndAddr: 0x55cc2abe4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:23.068627641Z caller=cpu.go:495 msg="adding unwind tables" pid=86744 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5595e87d9000, StartAddr: 0x5595e87db000, EndAddr: 0x5595e87df000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:41:28.065646862Z caller=cpu.go:495 msg="adding unwind tables" pid=86774 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c6c256c000, StartAddr: 0x55c6c259b000, EndAddr: 0x55c6c267e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:28.066426685Z caller=cpu.go:495 msg="adding unwind tables" pid=86778 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e5bbfb7000, StartAddr: 0x55e5bbfb9000, EndAddr: 0x55e5bbfbd000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:41:32.43580061Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:41:33.050149637Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:41:33.051247873Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:41:33.053728938Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:41:33.055279104Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:41:33.055407825Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:41:33.060390596Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:41:33.069720025Z caller=cpu.go:495 msg="adding unwind tables" pid=86808 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558666674000, StartAddr: 0x5586666a3000, EndAddr: 0x558666786000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:33.070498863Z caller=cpu.go:495 msg="adding unwind tables" pid=86812 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55592d8ec000, StartAddr: 0x55592d8ee000, EndAddr: 0x55592d8f2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:41:38.109637903Z caller=cpu.go:495 msg="adding unwind tables" pid=86842 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d380a65000, StartAddr: 0x55d380a94000, EndAddr: 0x55d380b77000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:38.111919465Z caller=cpu.go:495 msg="adding unwind tables" pid=86846 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c74b204000, StartAddr: 0x55c74b206000, EndAddr: 0x55c74b20a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:41:42.460555845Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:41:43.08033045Z caller=cpu.go:495 msg="adding unwind tables" pid=86876 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5571b48ce000, StartAddr: 0x5571b48fd000, EndAddr: 0x5571b49e0000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:43.081002446Z caller=cpu.go:495 msg="adding unwind tables" pid=86880 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a9746b1000, StartAddr: 0x55a9746b3000, EndAddr: 0x55a9746b7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:41:43.179388329Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:41:43.182350132Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:41:43.183479884Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:41:43.184293171Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:41:43.185438481Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:41:43.185810885Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:41:48.068375718Z caller=cpu.go:495 msg="adding unwind tables" pid=86910 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557f766ea000, StartAddr: 0x557f76719000, EndAddr: 0x557f767fc000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:48.069339325Z caller=cpu.go:495 msg="adding unwind tables" pid=86914 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5637d1d58000, StartAddr: 0x5637d1d5a000, EndAddr: 0x5637d1d5e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:41:52.43466883Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:41:53.049018932Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:41:53.050067108Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:41:53.050729316Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:41:53.052545432Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:41:53.053033305Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:41:53.056367141Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:41:53.066543135Z caller=cpu.go:495 msg="adding unwind tables" pid=86944 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c674f5a000, StartAddr: 0x55c674f89000, EndAddr: 0x55c67506c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:53.067409719Z caller=cpu.go:495 msg="adding unwind tables" pid=86948 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bdb9a1b000, StartAddr: 0x55bdb9a1d000, EndAddr: 0x55bdb9a21000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:41:58.067159535Z caller=cpu.go:495 msg="adding unwind tables" pid=86978 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5612108a5000, StartAddr: 0x5612108d4000, EndAddr: 0x5612109b7000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:41:58.067801901Z caller=cpu.go:495 msg="adding unwind tables" pid=86982 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cfe6d47000, StartAddr: 0x55cfe6d49000, EndAddr: 0x55cfe6d4d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:42:02.44033728Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:42:03.049865506Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:42:03.050013737Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:42:03.05092572Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:42:03.052231234Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:42:03.054280357Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:42:03.054715631Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=info name=parca-agent ts=2023-01-25T11:42:03.068336321Z caller=cpu.go:495 msg="adding unwind tables" pid=87012 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55af52400000, StartAddr: 0x55af5242f000, EndAddr: 0x55af52512000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:03.069040465Z caller=cpu.go:495 msg="adding unwind tables" pid=87016 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e2e1664000, StartAddr: 0x55e2e1666000, EndAddr: 0x55e2e166a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:42:08.070308389Z caller=cpu.go:495 msg="adding unwind tables" pid=87046 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556f01659000, StartAddr: 0x556f01688000, EndAddr: 0x556f0176b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:08.0709506Z caller=cpu.go:495 msg="adding unwind tables" pid=87050 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564d27300000, StartAddr: 0x564d27302000, EndAddr: 0x564d27306000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:42:12.436713028Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:42:13.049338395Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:42:13.049577186Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:42:13.0503856Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:42:13.050616046Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:42:13.051897076Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:42:13.066552048Z caller=cpu.go:495 msg="adding unwind tables" pid=87080 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561a3ecc2000, StartAddr: 0x561a3ecf1000, EndAddr: 0x561a3edd4000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:13.067266536Z caller=cpu.go:495 msg="adding unwind tables" pid=87084 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56000c74f000, StartAddr: 0x56000c751000, EndAddr: 0x56000c755000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:42:18.065029053Z caller=cpu.go:495 msg="adding unwind tables" pid=87114 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5651f3dec000, StartAddr: 0x5651f3e1b000, EndAddr: 0x5651f3efe000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:18.065621118Z caller=cpu.go:495 msg="adding unwind tables" pid=87118 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55eb3f992000, StartAddr: 0x55eb3f994000, EndAddr: 0x55eb3f998000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:42:22.440748812Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:42:23.049337803Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:42:23.049550425Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:42:23.050586767Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:42:23.05314857Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:42:23.05521169Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:42:23.055414246Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:42:23.071207529Z caller=cpu.go:495 msg="adding unwind tables" pid=87148 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5561ccaa8000, StartAddr: 0x5561ccad7000, EndAddr: 0x5561ccbba000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:23.072004863Z caller=cpu.go:495 msg="adding unwind tables" pid=87152 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ddfe7b5000, StartAddr: 0x55ddfe7b7000, EndAddr: 0x55ddfe7bb000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:42:28.099803214Z caller=cpu.go:495 msg="adding unwind tables" pid=87182 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55df4fe1f000, StartAddr: 0x55df4fe4e000, EndAddr: 0x55df4ff31000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:28.101096423Z caller=cpu.go:495 msg="adding unwind tables" pid=87186 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5645391cd000, StartAddr: 0x5645391cf000, EndAddr: 0x5645391d3000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:42:32.442181735Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:42:33.049505962Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:42:33.050418809Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:42:33.052271758Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:42:33.05629382Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:42:33.062178157Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:42:33.062513081Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:42:33.063869847Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:42:33.068487085Z caller=cpu.go:495 msg="adding unwind tables" pid=87216 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557a189b0000, StartAddr: 0x557a189df000, EndAddr: 0x557a18ac2000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:33.069206214Z caller=cpu.go:495 msg="adding unwind tables" pid=87220 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559df4841000, StartAddr: 0x559df4843000, EndAddr: 0x559df4847000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:42:38.067695324Z caller=cpu.go:495 msg="adding unwind tables" pid=87250 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5606e9f60000, StartAddr: 0x5606e9f8f000, EndAddr: 0x5606ea072000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:38.068395957Z caller=cpu.go:495 msg="adding unwind tables" pid=87254 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ccd59b6000, StartAddr: 0x55ccd59b8000, EndAddr: 0x55ccd59bc000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:42:42.44081303Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:42:43.051484455Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:42:43.052014807Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:42:43.07347087Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:42:43.074805888Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:42:43.079677982Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:42:43.083972779Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:42:43.118531829Z caller=cpu.go:495 msg="adding unwind tables" pid=87304 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562496a43000, StartAddr: 0x562496a72000, EndAddr: 0x562496b55000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:43.121192145Z caller=cpu.go:495 msg="adding unwind tables" pid=87308 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c7e49c0000, StartAddr: 0x55c7e49c2000, EndAddr: 0x55c7e49c6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:42:48.067119378Z caller=cpu.go:495 msg="adding unwind tables" pid=87339 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5641f2d48000, StartAddr: 0x5641f2d77000, EndAddr: 0x5641f2e5a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:48.067724191Z caller=cpu.go:495 msg="adding unwind tables" pid=87343 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558905fc1000, StartAddr: 0x558905fc3000, EndAddr: 0x558905fc7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:42:52.437106987Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:42:53.051505566Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:42:53.051925496Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:42:53.056046536Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:42:53.059776873Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:42:53.063456256Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:42:53.109068848Z caller=cpu.go:495 msg="adding unwind tables" pid=87373 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562ccfaf8000, StartAddr: 0x562ccfb27000, EndAddr: 0x562ccfc0a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:53.112396372Z caller=cpu.go:495 msg="adding unwind tables" pid=87377 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5647c93ba000, StartAddr: 0x5647c93bc000, EndAddr: 0x5647c93c0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:42:58.069764505Z caller=cpu.go:495 msg="adding unwind tables" pid=87407 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5630874a6000, StartAddr: 0x5630874d5000, EndAddr: 0x5630875b8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:42:58.070560179Z caller=cpu.go:495 msg="adding unwind tables" pid=87411 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562219948000, StartAddr: 0x56221994a000, EndAddr: 0x56221994e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:43:02.434473037Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:43:03.049349356Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:43:03.054452649Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:43:03.055156304Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:43:03.05602783Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:43:03.056964204Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:43:03.05704039Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:43:03.064814441Z caller=cpu.go:495 msg="adding unwind tables" pid=87441 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555e3c4e9000, StartAddr: 0x555e3c518000, EndAddr: 0x555e3c5fb000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:03.065321024Z caller=cpu.go:495 msg="adding unwind tables" pid=87445 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561cf4a5d000, StartAddr: 0x561cf4a5f000, EndAddr: 0x561cf4a63000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:43:08.065616043Z caller=cpu.go:495 msg="adding unwind tables" pid=87475 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5594b3c3c000, StartAddr: 0x5594b3c6b000, EndAddr: 0x5594b3d4e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:08.066150014Z caller=cpu.go:495 msg="adding unwind tables" pid=87479 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555bdf4ce000, StartAddr: 0x555bdf4d0000, EndAddr: 0x555bdf4d4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:43:12.438137303Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:43:13.05346294Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:43:13.055348904Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:43:13.056414812Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:43:13.056832091Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:43:13.06339137Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:43:13.071030144Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:43:13.105043191Z caller=cpu.go:495 msg="adding unwind tables" pid=87509 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56066cfe7000, StartAddr: 0x56066d016000, EndAddr: 0x56066d0f9000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:13.106144228Z caller=cpu.go:495 msg="adding unwind tables" pid=87513 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bad10fe000, StartAddr: 0x55bad1100000, EndAddr: 0x55bad1104000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:43:18.06740131Z caller=cpu.go:495 msg="adding unwind tables" pid=87520 +level=info name=parca-agent ts=2023-01-25T11:43:18.06798361Z caller=cpu.go:495 msg="adding unwind tables" pid=87521 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b1aa18b000, StartAddr: 0x55b1aa1ba000, EndAddr: 0x55b1aa29d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:18.070465586Z caller=cpu.go:495 msg="adding unwind tables" pid=87782 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b827144000, StartAddr: 0x55b82716c000, EndAddr: 0x55b82742c000, Executable:/home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby} +[info] adding memory mappings in for executable with ID 668 buildId bae4d9744266cf1f3e27a1ba7512c1c97b5e4a86 exec /home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 79d7152c050e7dc3af6d257e7c1d6bf0431de1f1 exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/io/console.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 440ecb4e02d40e4aee29b0473a470afcf3ed3c6c exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/ripper.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 51ccd2377c851b68898be53bdf81595a2b3a230d exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/etc.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 1789047e437eb3b5ab06060560e12c5b9ddd684b exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/monitor.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 3825c34fbaaef59c24e0e7dda2877564f6e8b44a exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/trans/transdb.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 9993a33caa8f95603dce44f02af10df2dd01a86a exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/encdb.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:43:22.434158125Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:43:23.051180473Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:43:23.05640732Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=74202 +level=debug name=parca-agent ts=2023-01-25T11:43:23.057326844Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:43:23.057676689Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:43:23.069380488Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:43:23.071353592Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:43:23.07690217Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:43:23.077421755Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:43:23.09486988Z caller=cpu.go:495 msg="adding unwind tables" pid=87853 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d0d9f99000, StartAddr: 0x55d0d9fc8000, EndAddr: 0x55d0da0ab000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:23.095543433Z caller=cpu.go:495 msg="adding unwind tables" pid=87857 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55947b2c1000, StartAddr: 0x55947b2c3000, EndAddr: 0x55947b2c7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:43:28.06525095Z caller=cpu.go:495 msg="adding unwind tables" pid=87895 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559662aab000, StartAddr: 0x559662ada000, EndAddr: 0x559662bbd000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:28.066039832Z caller=cpu.go:495 msg="adding unwind tables" pid=87899 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561c09798000, StartAddr: 0x561c0979a000, EndAddr: 0x561c0979e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:43:32.438272322Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:43:33.049319137Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:43:33.049498489Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:43:33.056251423Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:43:33.056477837Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:43:33.056531702Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:43:33.057562161Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:43:33.067274849Z caller=cpu.go:495 msg="adding unwind tables" pid=87937 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5567ec25c000, StartAddr: 0x5567ec28b000, EndAddr: 0x5567ec36e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:33.067948401Z caller=cpu.go:495 msg="adding unwind tables" pid=87941 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x560b7944c000, StartAddr: 0x560b7944e000, EndAddr: 0x560b79452000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:43:38.063849909Z caller=cpu.go:495 msg="adding unwind tables" pid=87971 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5590d06b4000, StartAddr: 0x5590d06e3000, EndAddr: 0x5590d07c6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:38.064485352Z caller=cpu.go:495 msg="adding unwind tables" pid=87975 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564fea3b3000, StartAddr: 0x564fea3b5000, EndAddr: 0x564fea3b9000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:43:42.463250369Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:43:43.049781224Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:43:43.049875354Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:43:43.055453609Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:43:43.05695068Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:43:43.057070308Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:43:43.057122903Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:43:43.058251863Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:43:43.066824915Z caller=cpu.go:495 msg="adding unwind tables" pid=88009 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aa82acc000, StartAddr: 0x55aa82afb000, EndAddr: 0x55aa82bde000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:43.06742636Z caller=cpu.go:495 msg="adding unwind tables" pid=88236 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e55e53e000, StartAddr: 0x55e55e56d000, EndAddr: 0x55e55e650000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:43.067908253Z caller=cpu.go:495 msg="adding unwind tables" pid=88239 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557534b57000, StartAddr: 0x557534b59000, EndAddr: 0x557534b5d000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:43.06835996Z caller=cpu.go:495 msg="adding unwind tables" pid=88244 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555a3a9ed000, StartAddr: 0x555a3aa1c000, EndAddr: 0x555a3aaff000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:43.068841507Z caller=cpu.go:495 msg="adding unwind tables" pid=88248 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563f24adc000, StartAddr: 0x563f24ade000, EndAddr: 0x563f24ae2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:43:48.072407957Z caller=cpu.go:495 msg="adding unwind tables" pid=88317 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a24b488000, StartAddr: 0x55a24b4b7000, EndAddr: 0x55a24b59a000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:48.073505818Z caller=cpu.go:495 msg="adding unwind tables" pid=88321 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557348f35000, StartAddr: 0x557348f37000, EndAddr: 0x557348f3b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:43:52.454396018Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:43:53.049343466Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:43:53.049441864Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:43:53.049673143Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=88009 +level=debug name=parca-agent ts=2023-01-25T11:43:53.049974871Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:43:53.050023525Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:43:53.051065699Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:43:53.052260627Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:43:53.068775566Z caller=cpu.go:495 msg="adding unwind tables" pid=88414 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563c12bc4000, StartAddr: 0x563c12bf3000, EndAddr: 0x563c12cd6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:53.069461913Z caller=cpu.go:495 msg="adding unwind tables" pid=88418 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x562da7774000, StartAddr: 0x562da7776000, EndAddr: 0x562da777a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:43:58.098788128Z caller=cpu.go:495 msg="adding unwind tables" pid=88456 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55da3bb10000, StartAddr: 0x55da3bb3f000, EndAddr: 0x55da3bc22000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:43:58.09987506Z caller=cpu.go:495 msg="adding unwind tables" pid=88460 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556022cc2000, StartAddr: 0x556022cc4000, EndAddr: 0x556022cc8000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:44:02.433461751Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:44:03.049658077Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:44:03.056749287Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:44:03.058903969Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:44:03.060144713Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:44:03.060415704Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:44:03.062052749Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:44:03.062345592Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=info name=parca-agent ts=2023-01-25T11:44:03.067658428Z caller=cpu.go:495 msg="adding unwind tables" pid=88521 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55874dada000, StartAddr: 0x55874db09000, EndAddr: 0x55874dbec000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:03.068432634Z caller=cpu.go:495 msg="adding unwind tables" pid=88525 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558b5bf0c000, StartAddr: 0x558b5bf0e000, EndAddr: 0x558b5bf12000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:44:08.09373144Z caller=cpu.go:495 msg="adding unwind tables" pid=88612 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564dadf41000, StartAddr: 0x564dadf70000, EndAddr: 0x564dae053000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:08.094428368Z caller=cpu.go:495 msg="adding unwind tables" pid=88616 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ebc12e9000, StartAddr: 0x55ebc12eb000, EndAddr: 0x55ebc12ef000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:44:12.432554999Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:44:13.049469065Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:44:13.049634693Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:44:13.049670905Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:44:13.05032458Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:44:13.051196353Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:44:13.051282178Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:44:13.066236318Z caller=cpu.go:495 msg="adding unwind tables" pid=88665 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5620e692c000, StartAddr: 0x5620e695b000, EndAddr: 0x5620e6a3e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:13.066760167Z caller=cpu.go:495 msg="adding unwind tables" pid=88669 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557cfb6ca000, StartAddr: 0x557cfb6cc000, EndAddr: 0x557cfb6d0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:44:18.066820266Z caller=cpu.go:495 msg="adding unwind tables" pid=88707 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cc2d260000, StartAddr: 0x55cc2d28f000, EndAddr: 0x55cc2d372000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:18.067425137Z caller=cpu.go:495 msg="adding unwind tables" pid=88711 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557a62485000, StartAddr: 0x557a62487000, EndAddr: 0x557a6248b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:44:22.435419147Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:44:23.04979654Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:44:23.049915659Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:44:23.051461834Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:44:23.051660817Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:44:23.052086681Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:44:23.065124459Z caller=cpu.go:495 msg="adding unwind tables" pid=88747 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556aeb6e4000, StartAddr: 0x556aeb713000, EndAddr: 0x556aeb7f6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:23.065819787Z caller=cpu.go:495 msg="adding unwind tables" pid=88751 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5600c35cf000, StartAddr: 0x5600c35d1000, EndAddr: 0x5600c35d5000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:44:28.066955789Z caller=cpu.go:495 msg="adding unwind tables" pid=88821 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x564096b29000, StartAddr: 0x564096b58000, EndAddr: 0x564096c3b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 668 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:28.067659001Z caller=cpu.go:495 msg="adding unwind tables" pid=88825 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c37fc8b000, StartAddr: 0x55c37fc8d000, EndAddr: 0x55c37fc91000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 668 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 668 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +Special section +unwind rows 42974 +~~ worked:, rows: 42974 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:44:32.430870751Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:44:33.049221795Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:44:33.049422887Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:44:33.050551261Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:44:33.050618176Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:44:33.068435513Z caller=cpu.go:495 msg="adding unwind tables" pid=88856 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5542974 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bd5eaec000, StartAddr: 0x55bd5eb27000, EndAddr: 0x55bd5ee16000, Executable:/usr/bin/vim} +[info] adding memory mappings in for executable with ID 668 buildId b05802704d883d409fe85b68aa79c96583922308 exec /usr/bin/vim +-> caching - new mapping +=> found 54848 unwind entries for /usr/bin/vim low pc 3b020 high pc 3294d1 +- current chunk size 54848 +- rest of chunk size 0 +- lowindex [ 42974 : 97822 ] highIndex +- executable 668 mapping /usr/bin/vim shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5597822 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 669 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5597822 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 669 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5597822 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 669 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5597822 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 669 buildId ef2c81dc801bf1cb2147f38af538174db637027f exec /usr/lib64/libgpm.so.2.1.0 +-> caching - new mapping +=> found 265 unwind entries for /usr/lib64/libgpm.so.2.1.0 low pc 2020 high pc 4d9c +- current chunk size 265 +- rest of chunk size 0 +- lowindex [ 97822 : 98087 ] highIndex +- executable 669 mapping /usr/lib64/libgpm.so.2.1.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5598087 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 670 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5598087 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 670 buildId 70ef127ba835f69d0cb05edfa0ab953b1848d760 exec /usr/lib64/libsodium.so.23.3.0 +-> caching - new mapping +=> found 3687 unwind entries for /usr/lib64/libsodium.so.23.3.0 low pc c020 high pc 3f4bc +- current chunk size 3687 +- rest of chunk size 0 +- lowindex [ 98087 : 101774 ] highIndex +- executable 670 mapping /usr/lib64/libsodium.so.23.3.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:33.10263978Z caller=cpu.go:495 msg="adding unwind tables" pid=88868 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fd01a9d000, StartAddr: 0x55fd01acc000, EndAddr: 0x55fd01baf000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:33.103333817Z caller=cpu.go:495 msg="adding unwind tables" pid=88872 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559f5a6f9000, StartAddr: 0x559f5a6fb000, EndAddr: 0x559f5a6ff000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:44:38.073620326Z caller=cpu.go:495 msg="adding unwind tables" pid=88918 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5597c0efd000, StartAddr: 0x5597c0f2c000, EndAddr: 0x5597c100f000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:38.074640319Z caller=cpu.go:495 msg="adding unwind tables" pid=88922 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563f6e0a0000, StartAddr: 0x563f6e0a2000, EndAddr: 0x563f6e0a6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:44:42.430955419Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=4 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:44:43.049156369Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:44:43.050291885Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:44:43.051755907Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:44:43.052373884Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:44:43.052558867Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:44:43.05299662Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:44:43.06509239Z caller=cpu.go:495 msg="adding unwind tables" pid=88966 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5558114b4000, StartAddr: 0x5558114e3000, EndAddr: 0x5558115c6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:43.065755038Z caller=cpu.go:495 msg="adding unwind tables" pid=88970 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5651386cc000, StartAddr: 0x5651386ce000, EndAddr: 0x5651386d2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:44:48.064276606Z caller=cpu.go:495 msg="adding unwind tables" pid=89008 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563880633000, StartAddr: 0x563880662000, EndAddr: 0x563880745000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:48.064839019Z caller=cpu.go:495 msg="adding unwind tables" pid=89012 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5597b4fb5000, StartAddr: 0x5597b4fb7000, EndAddr: 0x5597b4fbb000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:44:52.432799334Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:44:53.049905579Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:44:53.050113257Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=88856 +level=debug name=parca-agent ts=2023-01-25T11:44:53.050671748Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:44:53.050728872Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:44:53.052132476Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:44:53.053784889Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:44:53.054097249Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=info name=parca-agent ts=2023-01-25T11:44:53.066500107Z caller=cpu.go:495 msg="adding unwind tables" pid=89050 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e893db6000, StartAddr: 0x55e893de5000, EndAddr: 0x55e893ec8000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:53.067137306Z caller=cpu.go:495 msg="adding unwind tables" pid=89054 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d752b28000, StartAddr: 0x55d752b2a000, EndAddr: 0x55d752b2e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:44:58.066017124Z caller=cpu.go:495 msg="adding unwind tables" pid=89106 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559e9621b000, StartAddr: 0x559e9624a000, EndAddr: 0x559e9632d000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:44:58.066754386Z caller=cpu.go:495 msg="adding unwind tables" pid=89110 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563837424000, StartAddr: 0x563837426000, EndAddr: 0x56383742a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:45:02.456298357Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:45:03.049218674Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:45:03.055578057Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:45:03.055751431Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:45:03.05694707Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:45:03.057057679Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:45:03.057920775Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:45:03.058002969Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=88856 +level=info name=parca-agent ts=2023-01-25T11:45:03.065980498Z caller=cpu.go:495 msg="adding unwind tables" pid=89176 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56513a8e1000, StartAddr: 0x56513a910000, EndAddr: 0x56513a9f3000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:03.066598218Z caller=cpu.go:495 msg="adding unwind tables" pid=89180 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563ebe265000, StartAddr: 0x563ebe267000, EndAddr: 0x563ebe26b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:03.067205166Z caller=cpu.go:495 msg="adding unwind tables" pid=89185 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x56446cdaf000, StartAddr: 0x56446cdde000, EndAddr: 0x56446cec1000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:03.067833937Z caller=cpu.go:495 msg="adding unwind tables" pid=89189 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x558d398ec000, StartAddr: 0x558d398ee000, EndAddr: 0x558d398f2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:45:08.066309733Z caller=cpu.go:495 msg="adding unwind tables" pid=89246 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55897377f000, StartAddr: 0x5589737ae000, EndAddr: 0x558973891000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:08.066974181Z caller=cpu.go:495 msg="adding unwind tables" pid=89250 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cbf4fd0000, StartAddr: 0x55cbf4fd2000, EndAddr: 0x55cbf4fd6000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:45:12.447147038Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:45:13.050049686Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:45:13.055851695Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:45:13.057329845Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:45:13.057681652Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:45:13.065326013Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:45:13.067188534Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:45:13.067319968Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=info name=parca-agent ts=2023-01-25T11:45:13.068486244Z caller=cpu.go:495 msg="adding unwind tables" pid=89294 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ffbea95000, StartAddr: 0x55ffbeac4000, EndAddr: 0x55ffbeba7000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:13.069307112Z caller=cpu.go:495 msg="adding unwind tables" pid=89298 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ac7a004000, StartAddr: 0x55ac7a006000, EndAddr: 0x55ac7a00a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:13.069987736Z caller=cpu.go:495 msg="adding unwind tables" pid=89309 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ec95f95000, StartAddr: 0x55ec95fc4000, EndAddr: 0x55ec960a7000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:13.070721424Z caller=cpu.go:495 msg="adding unwind tables" pid=89313 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55fb023bc000, StartAddr: 0x55fb023be000, EndAddr: 0x55fb023c2000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:45:18.070959098Z caller=cpu.go:495 msg="adding unwind tables" pid=89360 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5564eeb92000, StartAddr: 0x5564eeb94000, EndAddr: 0x5564eeb97000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 671 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:18.075013979Z caller=cpu.go:495 msg="adding unwind tables" pid=89365 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c85c1d3000, StartAddr: 0x55c85c202000, EndAddr: 0x55c85c2e5000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:18.075815502Z caller=cpu.go:495 msg="adding unwind tables" pid=89369 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x557d35658000, StartAddr: 0x557d3565a000, EndAddr: 0x557d3565e000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:18.076584339Z caller=cpu.go:495 msg="adding unwind tables" pid=89380 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5633f714a000, StartAddr: 0x5633f7179000, EndAddr: 0x5633f725c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:18.077411117Z caller=cpu.go:495 msg="adding unwind tables" pid=89384 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d5d5653000, StartAddr: 0x55d5d5655000, EndAddr: 0x55d5d5659000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:45:22.443606167Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:45:23.053191581Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:45:23.053581175Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=88856 +level=debug name=parca-agent ts=2023-01-25T11:45:23.054540201Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:45:23.058675978Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:45:23.058941999Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:45:23.066139354Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:45:23.068012336Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:23.124729442Z caller=cpu.go:495 msg="adding unwind tables" pid=89433 +level=debug name=parca-agent ts=2023-01-25T11:45:23.124828467Z caller=cpu.go:500 msg="failed to add unwind table" pid=89433 err="stat /proc/89433: no such file or directory" +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:23.124911157Z caller=cpu.go:495 msg="adding unwind tables" pid=89434 +level=debug name=parca-agent ts=2023-01-25T11:45:23.125003486Z caller=cpu.go:500 msg="failed to add unwind table" pid=89434 err="stat /proc/89434: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:45:28.067550274Z caller=cpu.go:495 msg="adding unwind tables" pid=89491 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555bf7d2c000, StartAddr: 0x555bf7d5b000, EndAddr: 0x555bf7e3e000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:28.06826814Z caller=cpu.go:495 msg="adding unwind tables" pid=89495 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cddbce1000, StartAddr: 0x55cddbce3000, EndAddr: 0x55cddbce7000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:28.06870032Z caller=cpu.go:495 msg="adding unwind tables" pid=89499 +level=debug name=parca-agent ts=2023-01-25T11:45:28.068720319Z caller=cpu.go:500 msg="failed to add unwind table" pid=89499 err="stat /proc/89499: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:45:32.461824485Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:45:33.04950929Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:45:33.049700885Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:45:33.049794047Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:45:33.05075645Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:45:33.050833409Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:45:33.070497936Z caller=cpu.go:495 msg="adding unwind tables" pid=89561 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5556af4aa000, StartAddr: 0x5556af4d9000, EndAddr: 0x5556af5bc000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:33.071148035Z caller=cpu.go:495 msg="adding unwind tables" pid=89565 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x5579a5c9e000, StartAddr: 0x5579a5ca0000, EndAddr: 0x5579a5ca4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:33.071601085Z caller=cpu.go:495 msg="adding unwind tables" pid=89566 +level=debug name=parca-agent ts=2023-01-25T11:45:33.071623054Z caller=cpu.go:500 msg="failed to add unwind table" pid=89566 err="stat /proc/89566: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:38.064855366Z caller=cpu.go:495 msg="adding unwind tables" pid=89619 +level=debug name=parca-agent ts=2023-01-25T11:45:38.064880777Z caller=cpu.go:500 msg="failed to add unwind table" pid=89619 err="stat /proc/89619: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:45:42.453218146Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:45:43.049179005Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:45:43.050337935Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:45:43.050469848Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:45:43.055125805Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:45:43.059603425Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:45:43.059770195Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:45:43.060027444Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:43.072887923Z caller=cpu.go:495 msg="adding unwind tables" pid=89681 +level=debug name=parca-agent ts=2023-01-25T11:45:43.072959056Z caller=cpu.go:500 msg="failed to add unwind table" pid=89681 err="stat /proc/89681: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:45:48.064788398Z caller=cpu.go:495 msg="adding unwind tables" pid=89758 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c5e763a000, StartAddr: 0x55c5e7669000, EndAddr: 0x55c5e774c000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:48.06537237Z caller=cpu.go:495 msg="adding unwind tables" pid=89761 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55eedc900000, StartAddr: 0x55eedc902000, EndAddr: 0x55eedc906000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:48.065713983Z caller=cpu.go:495 msg="adding unwind tables" pid=89762 +level=debug name=parca-agent ts=2023-01-25T11:45:48.065729685Z caller=cpu.go:500 msg="failed to add unwind table" pid=89762 err="stat /proc/89762: no such file or directory" +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:48.065748233Z caller=cpu.go:495 msg="adding unwind tables" pid=89764 +level=debug name=parca-agent ts=2023-01-25T11:45:48.06576471Z caller=cpu.go:500 msg="failed to add unwind table" pid=89764 err="stat /proc/89764: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:45:52.438661858Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:45:53.049665251Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:45:53.051234695Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:45:53.051371228Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:45:53.059614289Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:45:53.060037024Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:45:53.061349955Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=info name=parca-agent ts=2023-01-25T11:45:53.068884233Z caller=cpu.go:495 msg="adding unwind tables" pid=89780 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x556eaedfc000, StartAddr: 0x556eaee37000, EndAddr: 0x556eaf126000, Executable:/usr/bin/vim} +[info] adding memory mappings in for executable with ID 671 buildId b05802704d883d409fe85b68aa79c96583922308 exec /usr/bin/vim +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ef2c81dc801bf1cb2147f38af538174db637027f exec /usr/lib64/libgpm.so.2.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 70ef127ba835f69d0cb05edfa0ab953b1848d760 exec /usr/lib64/libsodium.so.23.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:45:53.070498893Z caller=cpu.go:495 msg="adding unwind tables" pid=89792 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55749d8a0000, StartAddr: 0x55749d8a2000, EndAddr: 0x55749d8a5000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 671 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:53.073730666Z caller=cpu.go:495 msg="adding unwind tables" pid=89827 +level=debug name=parca-agent ts=2023-01-25T11:45:53.07376888Z caller=cpu.go:500 msg="failed to add unwind table" pid=89827 err="stat /proc/89827: no such file or directory" +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:53.073805839Z caller=cpu.go:495 msg="adding unwind tables" pid=89828 +level=debug name=parca-agent ts=2023-01-25T11:45:53.073831008Z caller=cpu.go:500 msg="failed to add unwind table" pid=89828 err="stat /proc/89828: no such file or directory" +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:53.073857818Z caller=cpu.go:495 msg="adding unwind tables" pid=89829 +level=debug name=parca-agent ts=2023-01-25T11:45:53.073866152Z caller=cpu.go:500 msg="failed to add unwind table" pid=89829 err="stat /proc/89829: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:45:58.072455971Z caller=cpu.go:495 msg="adding unwind tables" pid=89869 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561babcd5000, StartAddr: 0x561babcd7000, EndAddr: 0x561babcda000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 671 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:45:58.076162229Z caller=cpu.go:495 msg="adding unwind tables" pid=89870 +level=debug name=parca-agent ts=2023-01-25T11:45:58.076188294Z caller=cpu.go:500 msg="failed to add unwind table" pid=89870 err="stat /proc/89870: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:46:02.434508228Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:46:03.049811321Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:46:03.05631726Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:46:03.056693083Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:46:03.056777231Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:46:03.05764365Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:46:03.057685031Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:46:03.066466686Z caller=cpu.go:495 msg="adding unwind tables" pid=89926 +level=debug name=parca-agent ts=2023-01-25T11:46:03.066494525Z caller=cpu.go:500 msg="failed to add unwind table" pid=89926 err="stat /proc/89926: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:46:08.109746379Z caller=cpu.go:495 msg="adding unwind tables" pid=89982 +level=debug name=parca-agent ts=2023-01-25T11:46:08.109855855Z caller=cpu.go:500 msg="failed to add unwind table" pid=89982 err="stat /proc/89982: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:46:12.433369107Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:46:13.054565763Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:46:13.058306038Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:46:13.058466508Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:46:13.058519665Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:46:13.064475505Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:46:13.064703037Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:46:13.07511173Z caller=cpu.go:495 msg="adding unwind tables" pid=90043 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559134cc4000, StartAddr: 0x559134cf3000, EndAddr: 0x559134dd6000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:46:13.075839672Z caller=cpu.go:495 msg="adding unwind tables" pid=90047 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cd222de000, StartAddr: 0x55cd222e0000, EndAddr: 0x55cd222e4000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:46:18.067360724Z caller=cpu.go:495 msg="adding unwind tables" pid=90087 +level=debug name=parca-agent ts=2023-01-25T11:46:18.067396948Z caller=cpu.go:500 msg="failed to add unwind table" pid=90087 err="stat /proc/90087: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:46:22.442230423Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:46:23.049410868Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:46:23.049640726Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:46:23.05029184Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:46:23.050368714Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:46:23.069102795Z caller=cpu.go:495 msg="adding unwind tables" pid=90121 +level=debug name=parca-agent ts=2023-01-25T11:46:23.069146539Z caller=cpu.go:500 msg="failed to add unwind table" pid=90121 err="stat /proc/90121: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:46:32.432810501Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=4 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:46:33.049258345Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:46:33.049563084Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:46:33.050780634Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:46:33.050839035Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:46:33.050929129Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:46:33.052662411Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:46:38.066914163Z caller=cpu.go:495 msg="adding unwind tables" pid=90223 +level=debug name=parca-agent ts=2023-01-25T11:46:38.066952965Z caller=cpu.go:500 msg="failed to add unwind table" pid=90223 err="stat /proc/90223: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:46:42.432936413Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:46:43.049139077Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:46:43.05364482Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:46:43.054636135Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:46:43.054698059Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:46:43.054781793Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:46:43.055971787Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:46:43.060328584Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:46:48.067075364Z caller=cpu.go:495 msg="adding unwind tables" pid=90291 +level=debug name=parca-agent ts=2023-01-25T11:46:48.067104835Z caller=cpu.go:500 msg="failed to add unwind table" pid=90291 err="stat /proc/90291: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:46:52.43309284Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:46:53.065034022Z caller=cpu.go:495 msg="adding unwind tables" pid=90325 +level=debug name=parca-agent ts=2023-01-25T11:46:53.065060573Z caller=cpu.go:500 msg="failed to add unwind table" pid=90325 err="stat /proc/90325: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:46:53.151691419Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:46:53.152420863Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:46:53.152485673Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:46:53.152584129Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:46:53.153908848Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:47:02.435153612Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:47:03.050041343Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:47:03.050223126Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:47:03.050622526Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=661 +level=debug name=parca-agent ts=2023-01-25T11:47:03.051234847Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:47:03.05874993Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:47:03.059918701Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:47:03.05996943Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:47:03.068668537Z caller=cpu.go:495 msg="adding unwind tables" pid=90393 +level=debug name=parca-agent ts=2023-01-25T11:47:03.068693795Z caller=cpu.go:500 msg="failed to add unwind table" pid=90393 err="stat /proc/90393: no such file or directory" +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:47:12.458547977Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:47:13.04955086Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:47:13.056055563Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:47:13.05613845Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:47:13.056239435Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:47:13.057513075Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:47:13.058597937Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:47:13.062579359Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:47:22.431478657Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:47:23.052955736Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:47:23.056679646Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:47:23.061134827Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:47:23.086668195Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:47:23.087350034Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:47:23.088766553Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:47:32.442545883Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:47:33.049348114Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:47:33.04944885Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:47:33.055782104Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:47:33.059359942Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:47:33.059459479Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:47:33.060652813Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:47:33.060899817Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:47:42.441664982Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:47:43.053791682Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:47:43.05496576Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:47:43.055008355Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:47:43.055082304Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:47:43.056573034Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:47:43.057051314Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:47:43.06319061Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:47:43.071499474Z caller=cpu.go:495 msg="adding unwind tables" pid=90711 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:47:52.432728464Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:47:53.049201356Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:47:53.049360207Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:47:53.049400282Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:47:53.050225013Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:47:53.05124711Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:47:53.051343441Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:48:02.461460885Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:48:03.04969956Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:48:03.051117193Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:48:03.051658902Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:48:03.051778311Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:48:03.05333497Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:48:03.057185511Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:48:12.437051088Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:48:13.049440716Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:48:13.049758159Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:48:13.051021253Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:48:13.051123192Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:48:13.052387137Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:48:22.434047937Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:48:23.049663324Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:48:23.050033246Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:48:23.05012542Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:48:23.05017319Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:48:23.051158227Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:48:23.052946651Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:48:32.434088718Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:48:33.050018191Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:48:33.051498759Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:48:33.056179993Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:48:33.057265854Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:48:33.057338505Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:48:33.057438427Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:48:33.057734995Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:48:42.437069464Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:48:43.049964311Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:48:43.050281349Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:48:43.050396735Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:48:43.051659957Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:48:43.053754252Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:48:43.053906297Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:48:52.436134257Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:48:53.049328952Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:48:53.049455988Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:48:53.054812375Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:48:53.055922858Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:48:53.056148058Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:48:53.056219656Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:48:58.066895777Z caller=cpu.go:495 msg="adding unwind tables" pid=91288 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aad6e6e000, StartAddr: 0x55aad6e9d000, EndAddr: 0x55aad6f80000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:48:58.067564886Z caller=cpu.go:495 msg="adding unwind tables" pid=91294 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55573f8a3000, StartAddr: 0x55573f8a5000, EndAddr: 0x55573f8a9000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:49:02.432349063Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:49:03.04983077Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:49:03.049959232Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:49:03.051328447Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:49:03.051387878Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:49:03.052655765Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:49:03.052850327Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:49:12.434989178Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:49:13.049901689Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:49:13.050328342Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:49:13.058722673Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:49:13.059866192Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:49:13.060190106Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:49:13.06031382Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:49:22.439771917Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:49:23.04988892Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:49:23.050030586Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:49:23.057814016Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:49:23.05795939Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:49:23.060037107Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:49:23.062051931Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:49:23.06250854Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:49:32.433122196Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:49:33.04921901Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:49:33.049353238Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:49:33.049478257Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:49:33.049543266Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:49:33.055122948Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:49:33.056538851Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:49:42.436376056Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:49:43.053665527Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:49:43.055162478Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:49:43.061832351Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:49:43.089694891Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:49:43.090447299Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:49:43.096024867Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:49:52.437008177Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:49:53.049372814Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:49:53.049449124Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:49:53.050381998Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:49:53.051315815Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:49:53.057788568Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:49:53.05803221Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:50:02.462172921Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:50:03.049531474Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:50:03.049858574Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:50:03.049904171Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:50:03.051798599Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:50:03.053451753Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:50:03.053677419Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:50:03.068581035Z caller=cpu.go:495 msg="adding unwind tables" pid=91775 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:50:03.068672433Z caller=cpu.go:495 msg="adding unwind tables" pid=91776 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:50:08.064599167Z caller=cpu.go:495 msg="adding unwind tables" pid=91810 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55651b4db000, StartAddr: 0x55651b50a000, EndAddr: 0x55651b5ed000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:50:08.065294954Z caller=cpu.go:495 msg="adding unwind tables" pid=92056 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ed863cb000, StartAddr: 0x55ed863fa000, EndAddr: 0x55ed864dd000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:50:08.065767015Z caller=cpu.go:495 msg="adding unwind tables" pid=92059 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55aedb76b000, StartAddr: 0x55aedb76d000, EndAddr: 0x55aedb771000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:50:12.439747506Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:50:13.049539553Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:50:13.055319058Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:50:13.055512563Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:50:13.058181246Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:50:13.05824758Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:50:13.058894127Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:50:13.05908226Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=info name=parca-agent ts=2023-01-25T11:50:13.066706441Z caller=cpu.go:495 msg="adding unwind tables" pid=92139 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55a6f61cd000, StartAddr: 0x55a6f61fc000, EndAddr: 0x55a6f62df000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:50:13.067333323Z caller=cpu.go:495 msg="adding unwind tables" pid=92142 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555fca5ea000, StartAddr: 0x555fca5ec000, EndAddr: 0x555fca5f0000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:50:18.064385659Z caller=cpu.go:495 msg="adding unwind tables" pid=92206 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x561778cf0000, StartAddr: 0x561778cf2000, EndAddr: 0x561778cf5000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 671 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:50:18.067319134Z caller=cpu.go:495 msg="adding unwind tables" pid=92211 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c8b7149000, StartAddr: 0x55c8b7178000, EndAddr: 0x55c8b725b000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:50:18.067937627Z caller=cpu.go:495 msg="adding unwind tables" pid=92214 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55dd83e23000, StartAddr: 0x55dd83e25000, EndAddr: 0x55dd83e29000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:50:22.438026362Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:50:23.04966021Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:50:23.050841768Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:50:23.055832802Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:50:23.057500686Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:50:23.057936886Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:50:23.05808122Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:50:23.058175754Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:50:23.064917128Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:50:32.458054383Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:50:33.049684512Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:50:33.049825796Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:50:33.050807175Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:50:33.053010768Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:50:33.053224407Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:50:42.431264278Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:50:43.049656789Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:50:43.049819218Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:50:43.050861857Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:50:43.052418107Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:50:43.052658483Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:50:43.058670555Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:50:52.457080165Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:50:53.050082237Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:50:53.050288446Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:50:53.057547608Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:50:53.057744989Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:50:53.059652426Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=info name=parca-agent ts=2023-01-25T11:50:53.068734651Z caller=cpu.go:495 msg="adding unwind tables" pid=92622 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55b5b2847000, StartAddr: 0x55b5b2849000, EndAddr: 0x55b5b284c000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 671 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:51:02.436163124Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:51:03.049077027Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:51:03.050176496Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:51:03.050284805Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:51:03.05055979Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:51:03.050741178Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=876 +level=debug name=parca-agent ts=2023-01-25T11:51:03.05126539Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:51:03.053396903Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=info name=parca-agent ts=2023-01-25T11:51:03.067062348Z caller=cpu.go:495 msg="adding unwind tables" pid=92745 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55684f9a4000, StartAddr: 0x55684f9a6000, EndAddr: 0x55684f9a9000, Executable:/usr/lib/systemd/systemd-userwork} +[info] adding memory mappings in for executable with ID 671 buildId b98774dee6a839215b47b9c050c248f4ef6e023b exec /usr/lib/systemd/systemd-userwork +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 191e72090c569573ff6f834c2a6642ba33214131 exec /usr/lib64/libnss_systemd.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0258eb724b984c1e653fe4ca1f55f1ed6a295194 exec /usr/lib64/libcap-ng.so.0.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2b00b5e6a94295da1579dea067e6de6f6aebf0da exec /usr/lib64/libaudit.so.1.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 726903b8f0255779c638b9e54c98145ce644550c exec /usr/lib64/libeconf.so.0.4.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a53c231739d55cc39b97e28c36cd8b3e58a8f8f8 exec /usr/lib64/libgpg-error.so.0.33.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 47222db27922d1fa6510c21d8aec5b06a3313b1a exec /usr/lib64/libp11-kit.so.0.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2c961f7c5d4671f7a115555bfd29ca818d932f7b exec /usr/lib64/libseccomp.so.2.5.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ba0361d44f0171891691f3d47fa2026bff8593b7 exec /usr/lib64/libmount.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dfb3a03f805cecc2bb1f82c958f1be2d86d2512e exec /usr/lib64/liblz4.so.1.9.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId dedc25abf8f2ca790b2f899a4dbedfca5c174a64 exec /usr/lib64/libkmod.so.2.3.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ab80eae398f8814c7dc7bfc27fa3724491a47294 exec /usr/lib64/libgcrypt.so.20.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId e637f218c0a3f9632a19aff82ba64e7163b8a575 exec /usr/lib/systemd/libsystemd-shared-250.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 7da449f1ac716a7bbfef56dbcf2ed45d6cdb6463 exec /usr/lib64/libpam.so.0.85.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 06c9ea0937a5ca054e8954003b4006ab4aeb2aaa exec /usr/lib64/libcap.so.2.48 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 487c9b8a063b3a42a29163f14e8d92637d8b6116 exec /usr/lib64/libblkid.so.1.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:51:08.068774752Z caller=cpu.go:495 msg="adding unwind tables" pid=92886 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e2f61b4000, StartAddr: 0x55e2f61ef000, EndAddr: 0x55e2f64de000, Executable:/usr/bin/vim} +[info] adding memory mappings in for executable with ID 671 buildId b05802704d883d409fe85b68aa79c96583922308 exec /usr/bin/vim +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId b000b1b67599f328e69431d4ac2d896996f4d743 exec /usr/lib64/libpython3.10.so.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 4ad7e55dd83c73134eea5018a729a71c170edcc5 exec /usr/lib64/libattr.so.1.1.2501 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId ef2c81dc801bf1cb2147f38af538174db637027f exec /usr/lib64/libgpm.so.2.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 1f8547b434d8ae3dcf4e30e7aa890e2df4b33c5f exec /usr/lib64/libacl.so.1.1.2301 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 70ef127ba835f69d0cb05edfa0ab953b1848d760 exec /usr/lib64/libsodium.so.23.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:51:12.436573616Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=7 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:51:13.049470543Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:51:13.050315528Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:51:13.051756034Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:51:13.052379542Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:51:13.052535497Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:51:13.05261157Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=876 +level=debug name=parca-agent ts=2023-01-25T11:51:13.052696386Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:51:13.057444861Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:51:22.436536137Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:51:23.04968216Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:51:23.049789159Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:51:23.050025159Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1 +level=debug name=parca-agent ts=2023-01-25T11:51:23.050064155Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:51:23.056486881Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:51:23.056721872Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:51:23.060269082Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:51:23.06134295Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:51:23.062737089Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:51:32.432102896Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=9 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:51:33.049123148Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:51:33.049269244Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:51:33.050186136Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:51:33.050225539Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:51:33.050310914Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:51:33.055691414Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:51:42.436729386Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:51:43.053886237Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:51:43.055421415Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:51:43.06089355Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:51:43.0966843Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:51:43.098701507Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:51:43.1051944Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:51:48.069077594Z caller=cpu.go:495 msg="adding unwind tables" pid=93269 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e7ed6c9000, StartAddr: 0x55e7ed6f8000, EndAddr: 0x55e7ed7db000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 671 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:51:48.069859294Z caller=cpu.go:495 msg="adding unwind tables" pid=93273 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x563801715000, StartAddr: 0x563801717000, EndAddr: 0x56380171b000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 671 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 671 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +Special section +unwind rows 101774 +~~ worked:, rows: 101774 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:51:52.434346536Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:51:53.0531717Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:51:53.053713685Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:51:53.088284095Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=1476 +level=debug name=parca-agent ts=2023-01-25T11:51:53.105770557Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:51:53.106211698Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:51:53.109069799Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:51:53.111556697Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:51:53.111780173Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=89780 +level=info name=parca-agent ts=2023-01-25T11:51:53.11263619Z caller=cpu.go:495 msg="adding unwind tables" pid=93358 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5601774 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55e08b3ae000, StartAddr: 0x55e08b3b8000, EndAddr: 0x55e08b3c4000, Executable:/usr/bin/ps} +[info] adding memory mappings in for executable with ID 671 buildId 89ba6f50c975cbbe499bf756e4ad9e3dd48d306b exec /usr/bin/ps +-> caching - new mapping +=> found 974 unwind entries for /usr/bin/ps low pc a020 high pc 15da2 +- current chunk size 974 +- rest of chunk size 0 +- lowindex [ 101774 : 102748 ] highIndex +- executable 671 mapping /usr/bin/ps shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:51:58.080201883Z caller=cpu.go:495 msg="adding unwind tables" pid=93431 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55d2391bb000, StartAddr: 0x55d2391ea000, EndAddr: 0x55d2392cd000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 672 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:51:58.081033455Z caller=cpu.go:495 msg="adding unwind tables" pid=93434 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55c841e24000, StartAddr: 0x55c841e26000, EndAddr: 0x55c841e2a000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 672 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:52:02.437663959Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=8 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:52:03.071344851Z caller=cpu.go:495 msg="adding unwind tables" pid=93442 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555aa7d8b000, StartAddr: 0x555aa7db3000, EndAddr: 0x555aa8073000, Executable:/home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby} +[info] adding memory mappings in for executable with ID 672 buildId bae4d9744266cf1f3e27a1ba7512c1c97b5e4a86 exec /home/javierhonduco/.rbenv/versions/3.0.4/bin/ruby +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 51ccd2377c851b68898be53bdf81595a2b3a230d exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/etc.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 79d7152c050e7dc3af6d257e7c1d6bf0431de1f1 exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/io/console.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 440ecb4e02d40e4aee29b0473a470afcf3ed3c6c exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/ripper.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 1789047e437eb3b5ab06060560e12c5b9ddd684b exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/monitor.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 3825c34fbaaef59c24e0e7dda2877564f6e8b44a exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/trans/transdb.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 9993a33caa8f95603dce44f02af10df2dd01a86a exec /home/javierhonduco/.rbenv/versions/3.0.4/lib/ruby/3.0.0/x86_64-linux/enc/encdb.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:52:03.155549458Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:52:03.156523441Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:52:03.156586379Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=87782 +level=debug name=parca-agent ts=2023-01-25T11:52:03.156637506Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:52:03.157548885Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2648 +level=debug name=parca-agent ts=2023-01-25T11:52:03.15934946Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +>=========== about to call enableDWARFUnwinding +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:52:12.460048818Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:52:13.054114658Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:52:13.054886728Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:52:13.079768794Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:52:13.080466466Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:52:13.084285845Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:52:13.090089644Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=93442 +level=info name=parca-agent ts=2023-01-25T11:52:13.125125329Z caller=cpu.go:495 msg="adding unwind tables" pid=93595 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x555b268e1000, StartAddr: 0x555b26910000, EndAddr: 0x555b269f3000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 672 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:52:13.126936954Z caller=cpu.go:495 msg="adding unwind tables" pid=93598 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55bbe963f000, StartAddr: 0x55bbe9641000, EndAddr: 0x55bbe9645000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 672 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:52:18.064696182Z caller=cpu.go:495 msg="adding unwind tables" pid=93640 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55cd3dd40000, StartAddr: 0x55cd3dd6f000, EndAddr: 0x55cd3de52000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 672 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +level=info name=parca-agent ts=2023-01-25T11:52:18.065411288Z caller=cpu.go:495 msg="adding unwind tables" pid=93643 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x559878ed5000, StartAddr: 0x559878ed7000, EndAddr: 0x559878edb000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 672 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 672 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +Special section +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:52:22.459806608Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:52:23.049790229Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67758 +level=debug name=parca-agent ts=2023-01-25T11:52:23.050113507Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:52:23.050819066Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=93442 +level=debug name=parca-agent ts=2023-01-25T11:52:23.050866096Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:52:23.052347209Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=67759 +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +>=========== about to call enableDWARFUnwinding +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:52:32.435948485Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=5 +>=========== about to call enableDWARFUnwinding +level=debug name=parca-agent ts=2023-01-25T11:52:33.049570724Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67759 +level=debug name=parca-agent ts=2023-01-25T11:52:33.049716756Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2381 +level=debug name=parca-agent ts=2023-01-25T11:52:33.05124458Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2102 +level=debug name=parca-agent ts=2023-01-25T11:52:33.057305609Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=93442 +level=debug name=parca-agent ts=2023-01-25T11:52:33.057422558Z caller=manager.go:183 msg="label cache miss" provider=parca_agent_cpu pid=2429 +level=debug name=parca-agent ts=2023-01-25T11:52:33.058427096Z caller=manager.go:177 msg="label cache hit" provider=parca_agent_cpu pid=67758 +unwind rows 102748 +~~ worked:, rows: 102748 try: 0 +>=========== about to call enableDWARFUnwinding +level=info name=parca-agent ts=2023-01-25T11:52:38.078955715Z caller=cpu.go:495 msg="adding unwind tables" pid=93836 +======================================================================================== +setUnwindTable called (total shards: 22 , total entries: 5602748 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55936e8f5000, StartAddr: 0x55936ea68000, EndAddr: 0x55936f190000, Executable:/usr/libexec/gdb} +[info] adding memory mappings in for executable with ID 672 buildId b2f23096196b2a38cfd411d6c1380fa1798b5787 exec /usr/libexec/gdb +-> caching - new mapping +=> found 171616 unwind entries for /usr/libexec/gdb low pc 173020 high pc 89acf2 +- current chunk size 147252 +- rest of chunk size 24364 +- lowindex [ 102748 : 250000 ] highIndex +- executable 672 mapping /usr/libexec/gdb shard 0 +run out of space in the 'live' shard, creating a new one +unwind rows 250000 +~~ worked:, rows: 250000 try: 0 +- current chunk size 24364 +- rest of chunk size 0 +- lowindex [ 0 : 24364 ] highIndex +- executable 672 mapping /usr/libexec/gdb shard 1 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 0d207ce0c9db9ba59d4a8264b95c5ebf3ddec190 exec /usr/lib64/libpcre2-8.so.0.11.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 9ee47929aa5779a0fe6469346be26bfa6426a516 exec /usr/lib64/libselinux.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId e2790c03a5c688b7e75e89676cdd2b5fcf247a6f exec /usr/lib64/libbrotlicommon.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId db4b190f8f8dc222aebeb2b42905d93204f8aeb8 exec /usr/lib64/libsasl2.so.3.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId f6e4e70b6ca6ab522b59e089c865e1a33d3760bf exec /usr/lib64/libevent-2.1.so.7.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId e0a716fa3fc2fc256f1133c185a1d7cb532dabf9 exec /usr/lib64/libresolv.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 3c1b40eeebd055df267c67775fe8d9a877c45ce1 exec /usr/lib64/libcrypto.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 5cf0e47a96142c31ff969958e8465ee139029455 exec /usr/lib64/libkrb5.so.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId fc3e1a5a028db0412823b610fffb1a3a5e7f72d4 exec /usr/lib64/libldap.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId fe834a609af3487913ad9d5992470268774e1b70 exec /usr/lib64/libssl.so.3.0.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 5110325b3142bfcaf4a97597f48b08e0fb01d343 exec /usr/lib64/libicuuc.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId b9d48c5c3691bde2b524a24e4aeffe94f9ee61de exec /usr/lib64/libicui18n.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId de91d7aaac0219f29db8c95bdfe82cc439421210 exec /usr/lib64/libkrb5support.so.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId fb210dff39159a604b89af7bc2e0c9790d5e9b2e exec /usr/lib64/libgssapi_krb5.so.2.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 0a88dc8884357041dcd174412f2cc14ce0071289 exec /usr/lib64/libssh.so.4.8.7 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 4d19cd548e77f2f9778d81cf9c27831200804bc4 exec /usr/lib64/libicudata.so.69.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId da9c7ac09e992ba7c560d8fda4279f6d29a62022 exec /usr/lib64/libkeyutils.so.1.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId c980b4303c51332b16b98f799a158445eae81aa0 exec /usr/lib64/libcom_err.so.2.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 9c950149a547aafa73300c2b372888184c209d0b exec /usr/lib64/libk5crypto.so.3.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 2b6d234b851d7a75196b6e8895a24830a14f2f9c exec /usr/lib64/libbrotlidec.so.1.0.9 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 48e28a96f469bfe37ed5d524ea276b675e7f0cb8 exec /usr/lib64/libidn2.so.0.3.8 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId f43c7764ef0aee86ce7adf313b31abe6d80d9c84 exec /usr/lib64/libpcre.so.1.2.13 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId e9ef04083d00304da3a4e6638d4d21cf65518077 exec /usr/lib64/libzstd.so.1.5.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 1511f3df5a8d1ea63657c4b50cc7bb5de05d6edc exec /usr/lib64/libcurl.so.4.7.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5774364 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 673 buildId 1e4fb6bcd72ab4d7fa07aea9fdce983eb37d5d89 exec /usr/lib64/libboost_regex.so.1.76.0 +-> caching - new mapping +=> found 3632 unwind entries for /usr/lib64/libboost_regex.so.1.76.0 low pc 6020 high pc 35e5a +- current chunk size 3632 +- rest of chunk size 0 +- lowindex [ 24364 : 27996 ] highIndex +- executable 673 mapping /usr/lib64/libboost_regex.so.1.76.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5777996 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 674 buildId 4681f8963863e5973c1a92cfe70d72ea53ef6ae2 exec /usr/lib64/libgc.so.1.4.4 +-> caching - new mapping +=> found 3231 unwind entries for /usr/lib64/libgc.so.1.4.4 low pc 7020 high pc 21d80 +- current chunk size 3231 +- rest of chunk size 0 +- lowindex [ 27996 : 31227 ] highIndex +- executable 674 mapping /usr/lib64/libgc.so.1.4.4 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId d0c566f68e557cbd53496243a96fbfb2ac945df3 exec /usr/lib64/liblber.so.2.0.200 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId c193404811a60b405cfd506cbbd74a296cf04b1b exec /usr/lib64/libnghttp2.so.14.24.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId 8a4c270219135729dff508e4bb3cc03099af40e8 exec /usr/lib64/libglib-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId 6c0cf7ed0ae68dfd766f9b51f0fafec148f26f48 exec /usr/lib64/libpsl.so.5.3.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId fc30087292a26d0745355c9e651a30cbdbbacab6 exec /usr/lib64/libgmodule-2.0.so.0.7200.3 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId a5009041f85b1ec5b58f06105aeb0319524ef526 exec /usr/lib64/libuuid.so.1.3.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId 2dfb97cfb49645a06cab7b1e20f3cbed95bf599f exec /usr/lib64/libelf-0.187.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId 08c59845b4a3798c8c8f780a26cb9eb59e212988 exec /usr/lib64/libunistring.so.2.2.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId 6ce2a41dee893f9ede3c63f9aadad3826220476e exec /usr/lib64/libstdc++.so.6.0.30 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId c3f24c7ba050a70c1d297dfcf1cbbd82f1124643 exec /usr/lib64/libpopt.so.0.0.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId e63ed8f34565089e8482c8fa1bae1b48ab21893f exec /usr/lib64/libdw-0.188.so +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId a8ca68e321a4a1d45d15cdd85e8a7a40b7d052ce exec /usr/lib64/libcrypt.so.2.0.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId 9edcbed4921b56b70cc85d0de957223ffb025f62 exec /usr/lib64/libltdl.so.7.3.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId bfe3659c787e4ca7b1c367d1353ce552da06f75d exec /usr/lib64/libffi.so.8.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId cbcf5689acb247f987a22375c392c19a530a85c0 exec /usr/lib64/libgcc_s-12-20221121.so.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781227 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 675 buildId 2418d4ef78902ec0aab7e1e71fcdcec797ccd341 exec /usr/lib64/libdebuginfod-0.188.so +-> caching - new mapping +=> found 161 unwind entries for /usr/lib64/libdebuginfod-0.188.so low pc 2020 high pc 5d78 +- current chunk size 161 +- rest of chunk size 0 +- lowindex [ 31227 : 31388 ] highIndex +- executable 675 mapping /usr/lib64/libdebuginfod-0.188.so shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5781388 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 676 buildId 6acc9c79cd940e013d61804d45431214603fe673 exec /usr/lib64/libsource-highlight.so.4.0.1 +-> caching - new mapping +=> found 8840 unwind entries for /usr/lib64/libsource-highlight.so.4.0.1 low pc 24020 high pc 8ea92 +- current chunk size 8840 +- rest of chunk size 0 +- lowindex [ 31388 : 40228 ] highIndex +- executable 676 mapping /usr/lib64/libsource-highlight.so.4.0.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5790228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 677 buildId 79a0750eae50d2cffb280a7e92ede53016c42ec9 exec /usr/lib64/libgmp.so.10.4.1 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5790228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 677 buildId 466c44d39f9a44bfca6ac266cc13db7aa0af21a7 exec /usr/lib64/libmpfr.so.6.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5790228 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 677 buildId 89d8efca21d2e908d83e8cf222588dcd7851151a exec /usr/lib64/libipt.so.2.0.5 +-> caching - new mapping +=> found 1477 unwind entries for /usr/lib64/libipt.so.2.0.5 low pc 4020 high pc 14374 +- current chunk size 1477 +- rest of chunk size 0 +- lowindex [ 40228 : 41705 ] highIndex +- executable 677 mapping /usr/lib64/libipt.so.2.0.5 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5791705 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 678 buildId c29b549940f125265b2a5e3310f0270fcffba4f3 exec /usr/lib64/libbabeltrace-ctf.so.1.0.0 +-> caching - new mapping +=> found 3385 unwind entries for /usr/lib64/libbabeltrace-ctf.so.1.0.0 low pc 9020 high pc 34931 +- current chunk size 3385 +- rest of chunk size 0 +- lowindex [ 41705 : 45090 ] highIndex +- executable 678 mapping /usr/lib64/libbabeltrace-ctf.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5795090 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 679 buildId b000b1b67599f328e69431d4ac2d896996f4d743 exec /usr/lib64/libpython3.10.so.1.0 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5795090 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 679 buildId fdce106ca8e29bfaed01caf155180b8931e553a1 exec /usr/lib64/libxxhash.so.0.8.1 +-> caching - new mapping +=> found 730 unwind entries for /usr/lib64/libxxhash.so.0.8.1 low pc 2020 high pc 1012c +- current chunk size 730 +- rest of chunk size 0 +- lowindex [ 45090 : 45820 ] highIndex +- executable 679 mapping /usr/lib64/libxxhash.so.0.8.1 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5795820 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 680 buildId 785f6960baf501765452f2504c9dbb9216e09ca7 exec /usr/lib64/libbabeltrace.so.1.0.0 +-> caching - new mapping +=> found 1078 unwind entries for /usr/lib64/libbabeltrace.so.1.0.0 low pc 3020 high pc 96d6 +- current chunk size 1078 +- rest of chunk size 0 +- lowindex [ 45820 : 46898 ] highIndex +- executable 680 mapping /usr/lib64/libbabeltrace.so.1.0.0 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5796898 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 681 buildId 99fa3343b2dad5a67bdb525e56367a260ae05df2 exec /usr/lib64/liblzma.so.5.2.5 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5796898 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 681 buildId 6b8e66c3c770c5e6a5a65f071eca0341df1afb74 exec /usr/lib64/libexpat.so.1.8.10 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5796898 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 681 buildId bb4e131d89132b4f4f70f131218052e223310b15 exec /usr/lib64/libm.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5796898 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 681 buildId 6f7158e5f8a14b81d6894ca149990852ef6678d9 exec /usr/lib64/libguile-2.2.so.1.4.2 +-> caching - new mapping +=> found 21796 unwind entries for /usr/lib64/libguile-2.2.so.1.4.2 low pc 32020 high pc e6542 +- current chunk size 21796 +- rest of chunk size 0 +- lowindex [ 46898 : 68694 ] highIndex +- executable 681 mapping /usr/lib64/libguile-2.2.so.1.4.2 shard 0 +- current chunk size 0 +- rest of chunk size 0 +!! done with the last chunk +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 4f2afcf98cb9871a8be267f34e35f187435b13a4 exec /usr/lib64/libncursesw.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId d94299d7572e23295ceaf7674110eb6f2689cd91 exec /usr/lib64/libz.so.1.2.12 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 6400a9ff5aacf24bd96e2ae96b028f60a8ac91f7 exec /usr/lib64/libreadline.so.8.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:52:38.167404365Z caller=cpu.go:495 msg="adding unwind tables" pid=93837 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:52:38.167481346Z caller=cpu.go:495 msg="adding unwind tables" pid=93838 +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:52:38.167527916Z caller=cpu.go:495 msg="adding unwind tables" pid=93839 +level=info name=parca-agent ts=2023-01-25T11:52:38.167842285Z caller=cpu.go:495 msg="adding unwind tables" pid=93868 +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55ac8e501000, StartAddr: 0x55ac8e530000, EndAddr: 0x55ac8e613000, Executable:/usr/bin/bash} +[info] adding memory mappings in for executable with ID 682 buildId 160df51238a38ca27d03290f3ad5f7df75560ae0 exec /usr/bin/bash +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 954d12f7d8216fde821db122a4768ee255382a63 exec /usr/lib64/libtinfo.so.6.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +Special section +HasFramePointers failed +level=info name=parca-agent ts=2023-01-25T11:52:38.168315365Z caller=cpu.go:495 msg="adding unwind tables" pid=93869 +level=info name=parca-agent ts=2023-01-25T11:52:38.168504903Z caller=cpu.go:495 msg="adding unwind tables" pid=93875 +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +!!!!!!! main object ExecutableMapping {LoadAddr: 0x55826dba8000, StartAddr: 0x55826dbaa000, EndAddr: 0x55826dbae000, Executable:/usr/bin/sleep} +[info] adding memory mappings in for executable with ID 682 buildId d5198b0c63efcb64e548b22d75f0349f8cac8e30 exec /usr/bin/sleep +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 85c438f4ff93e21675ff174371c9c583dca00b2c exec /usr/lib64/libc.so.6 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +[info] adding memory mappings in for executable with ID 682 buildId 2aa5962e15d15765ad42186dfbfe781fe04ca380 exec /usr/lib64/ld-linux-x86-64.so.2 +-> caching - seen this mapping before +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +Special section +======================================================================================== +setUnwindTable called (total shards: 23 , total entries: 5818694 ) +======================================================================================== +Special section +unwind rows 68694 +~~ worked:, rows: 68694 try: 0 +level=debug name=parca-agent ts=2023-01-25T11:52:42.454347862Z caller=batch_remote_write_client.go:139 msg="batch write client sent profiles" count=6 diff --git a/pkg/discovery/systemd.go b/pkg/discovery/systemd.go index f2ccf16e1f..954645b0cf 100644 --- a/pkg/discovery/systemd.go +++ b/pkg/discovery/systemd.go @@ -89,7 +89,7 @@ func (c *SystemdDiscoverer) Run(ctx context.Context, up chan<- []*Group) error { adj, err := namespace.PIDNamespaceAdjacentPIDs(int(pid)) if err != nil { - level.Warn(c.logger).Log("msg", "failed to find PIDs that share the same namespace", "err", err, "unit", unit) + level.Debug(c.logger).Log("msg", "failed to find PIDs that share the same namespace", "err", err, "unit", unit) continue } groups = append(groups, &Group{ diff --git a/pkg/profiler/cpu/cpu.go b/pkg/profiler/cpu/cpu.go index ec96083504..a75c6508dd 100644 --- a/pkg/profiler/cpu/cpu.go +++ b/pkg/profiler/cpu/cpu.go @@ -408,7 +408,10 @@ func (p *CPU) watchProcesses(ctx context.Context, pfs procfs.FS, matchers []*reg ticker := time.NewTicker(5 * time.Second) defer ticker.Stop() - // @nocommit: cache on start_at + // @nocommit: + // - cache on start_at + // - cache forever? + // - if executable mappings change we should redo things (think JIT), but beware of old info in buffers! unwindTableCache := cache.New() for { @@ -424,6 +427,8 @@ func (p *CPU) watchProcesses(ctx context.Context, pfs procfs.FS, matchers []*reg } pids := []int{} + + // Filter processes if needed. if p.debugProcesses() { for _, proc := range allProcs { comm, err := proc.Comm() @@ -462,15 +467,14 @@ func (p *CPU) watchProcesses(ctx context.Context, pfs procfs.FS, matchers []*reg } } - fmt.Println("=========== about to call enableDWARFUnwinding") - - count := 0 if p.enableDWARFUnwinding { + fmt.Println(">=========== about to call addUnwindTableForProcess") + // Update unwind tables for the given pids. for _, pid := range pids { if _, exists := unwindTableCache.GetIfPresent(pid); exists { // TODO(javierhonduco): Expire cache on pid recycling or mappings changes. - fmt.Println("already cached") + //fmt.Println("already cached") continue } @@ -486,11 +490,11 @@ func (p *CPU) watchProcesses(ctx context.Context, pfs procfs.FS, matchers []*reg } if hasFramePointers { - fmt.Println("skipping", executable, "has fp") + // fmt.Println("skipping", executable, "has fp") continue } - level.Info(p.logger).Log("msg", "adding unwind tables", "pid", pid) + level.Info(p.logger).Log("msg", "adding unwind tables", "pid", pid) // @nocommit: add process name too! err = p.addUnwindTableForProcess(pid) if err != nil { @@ -503,13 +507,10 @@ func (p *CPU) watchProcesses(ctx context.Context, pfs procfs.FS, matchers []*reg } unwindTableCache.Put(pid, struct{}{}) - count++ } - // Must be called after calling `addUnwindTableForProcess`, as it's possible - // that the current in-memory unwind table shard hasn't been written to the - // map. - // TODO: have a dirty flag. + // Must be called after all the calls to `addUnwindTableForProcess`, as it's possible + // that the current in-flight shard hasn't been written to the BPF map, yet. err := p.bpfMaps.PersistUnwindTable() if err != nil { panic(err) @@ -555,6 +556,7 @@ func (p *CPU) addUnwindTableForProcess(pid int) error { for _, executableMapping := range executableMappings { err = p.addUnwindTableForProcessMapping(pid, executableMapping, procInfoBuf) if err != nil { + // This should NEVER error panic(fmt.Errorf("calling addUnwindTableForProcessMapping: %w", err)) } } @@ -568,7 +570,7 @@ func (p *CPU) addUnwindTableForProcess(pid int) error { func (p *CPU) addUnwindTableForProcessMapping(pid int, executableMappings *unwind.ExecutableMapping, procInfoBuf *bytes.Buffer) error { if err := p.bpfMaps.setUnwindTable(pid, executableMappings, procInfoBuf); err != nil { - panic(fmt.Errorf("setUnwindTable: %w", err)) + return fmt.Errorf("setUnwindTable: %w", err) } return nil @@ -673,6 +675,8 @@ func (p *CPU) obtainProfiles(ctx context.Context) ([]*profiler.Profile, error) { p.metrics.obtainMapAttempts.WithLabelValues(labelUser, labelDwarfUnwind, labelMissing).Inc() } p.metrics.obtainMapAttempts.WithLabelValues(labelUser, labelDwarfUnwind, labelSuccess).Inc() + fmt.Println("ERROR: readUserStackWithDwarf failed with", userErr, "key.UserStackIDDWARF", key.UserStackIDDWARF) + continue } } else { // Stacks retrieved with the kernel's included frame pointer based unwinder. @@ -688,6 +692,8 @@ func (p *CPU) obtainProfiles(ctx context.Context) ([]*profiler.Profile, error) { if errors.Is(userErr, errMissing) { p.metrics.obtainMapAttempts.WithLabelValues(labelUser, labelKernelUnwind, labelMissing).Inc() } + fmt.Println("ERROR: readUserStack failed with", userErr, "key.UserStackIDDWARF", key.UserStackIDDWARF) + continue } p.metrics.obtainMapAttempts.WithLabelValues(labelUser, labelKernelUnwind, labelSuccess).Inc() } @@ -709,6 +715,7 @@ func (p *CPU) obtainProfiles(ctx context.Context) ([]*profiler.Profile, error) { if userErr != nil && !key.walkedWithDwarf() && kernelErr != nil { // Both user stack (either via frame pointers or dwarf) and kernel stack // have failed. Nothing to do. + fmt.Println("error FAIIIIIIILLLLLLL") continue } diff --git a/pkg/profiler/cpu/maps.go b/pkg/profiler/cpu/maps.go index f410017f2b..99b57b4575 100644 --- a/pkg/profiler/cpu/maps.go +++ b/pkg/profiler/cpu/maps.go @@ -254,7 +254,8 @@ func (m *bpfMaps) readUserStackWithDwarf(userStackID int32, stack *combinedStack return fmt.Errorf("read user stack bytes, %s: %w", err, errUnrecoverable) } - /* userStack := stack[:stackDepth] + userStack := stack[:stackDepth] + /* fmt.Println("------------------------------- stack") for i := 0; i < stackDepth; i++ { if i < int(dwarfStack.Len) { userStack[i] = dwarfStack.Addrs[i] @@ -264,7 +265,6 @@ func (m *bpfMaps) readUserStackWithDwarf(userStackID int32, stack *combinedStack } } */ - userStack := stack[:stackDepth] for i, addr := range dwarfStack.Addrs { if i >= stackDepth || i >= int(dwarfStack.Len) || addr == 0 { break @@ -307,46 +307,76 @@ func (m *bpfMaps) clean() error { // can only delete the "previous" item once we've already iterated to // the next. - it := m.stackTraces.Iterator() - var prev []byte = nil - for it.Next() { + // stackTraces + { + it := m.stackTraces.Iterator() + var prev []byte = nil + for it.Next() { + if prev != nil { + err := m.stackTraces.DeleteKey(unsafe.Pointer(&prev[0])) + if err != nil { + return fmt.Errorf("failed to delete stack trace: %w", err) + } + } + + key := it.Key() + prev = make([]byte, len(key)) + copy(prev, key) + } if prev != nil { err := m.stackTraces.DeleteKey(unsafe.Pointer(&prev[0])) if err != nil { return fmt.Errorf("failed to delete stack trace: %w", err) } } - - key := it.Key() - prev = make([]byte, len(key)) - copy(prev, key) } - if prev != nil { - err := m.stackTraces.DeleteKey(unsafe.Pointer(&prev[0])) - if err != nil { - return fmt.Errorf("failed to delete stack trace: %w", err) + + // dwarfStackTraces + { + it := m.dwarfStackTraces.Iterator() + var prev []byte = nil + for it.Next() { + if prev != nil { + err := m.dwarfStackTraces.DeleteKey(unsafe.Pointer(&prev[0])) + if err != nil { + return fmt.Errorf("failed to delete dwarf stack trace: %w", err) + } + } + + key := it.Key() + prev = make([]byte, len(key)) + copy(prev, key) + } + if prev != nil { + err := m.dwarfStackTraces.DeleteKey(unsafe.Pointer(&prev[0])) + if err != nil { + return fmt.Errorf("failed to delete dwarf tack trace: %w", err) + } } } - it = m.stackCounts.Iterator() - prev = nil - for it.Next() { + // stackCounts + { + it := m.stackCounts.Iterator() + var prev []byte = nil + for it.Next() { + if prev != nil { + err := m.stackCounts.DeleteKey(unsafe.Pointer(&prev[0])) + if err != nil { + return fmt.Errorf("failed to delete count: %w", err) + } + } + + key := it.Key() + prev = make([]byte, len(key)) + copy(prev, key) + } if prev != nil { err := m.stackCounts.DeleteKey(unsafe.Pointer(&prev[0])) if err != nil { return fmt.Errorf("failed to delete count: %w", err) } } - - key := it.Key() - prev = make([]byte, len(key)) - copy(prev, key) - } - if prev != nil { - err := m.stackCounts.DeleteKey(unsafe.Pointer(&prev[0])) - if err != nil { - return fmt.Errorf("failed to delete count: %w", err) - } } return nil @@ -357,25 +387,25 @@ func (m *bpfMaps) generateCompactUnwindTable(fullExecutablePath string, mapping var maxCoveredPc uint64 var ut unwind.CompactUnwindTable - // 1. Get FDEs + // 1. Get FDEs. fdes, err := unwind.ReadFDEs(fullExecutablePath) // @nocommit: this should accept an ELF file perhaps. if err != nil { return ut, 0, 0, err } + // Sort them sort.Sort(fdes) // hope this help with efficiency, too minCoveredPc = fdes[0].Begin() maxCoveredPc = fdes[len(fdes)-1].End() - // 2. Build unwind table - // 3. Get the compact, BPF-friendly representation + // 2. Build compact, BPF-friendly unwind table ut, err = unwind.BuildCompactUnwindTable(fdes) if err != nil { return ut, 0, 0, err } sort.Sort(ut) // 2.5 Sort @nocommit: perhaps sorting the BPF friendly one will be faster - // now we have a full compact unwind table that we have to split in different BPF maps. + // Now we have a full compact unwind table that we have to split in different BPF maps. fmt.Println("=> found", len(ut), "unwind entries for", mapping.Executable, "low pc", fmt.Sprintf("%x", minCoveredPc), "high pc", fmt.Sprintf("%x", maxCoveredPc)) // @nocommit: remove return ut, minCoveredPc, maxCoveredPc, nil @@ -477,8 +507,19 @@ func (m *bpfMaps) mappingId(buildId string) (uint64, bool) { // - Whenever the current in-flight shard is full, before we wipe // it and start reusing it. func (m *bpfMaps) PersistUnwindTable() error { + zeroes := [200_000]uint8{} + + if err := binary.Write(m.unwindInfoBuf, m.byteOrder, zeroes); err != nil { + panic(err) + } + totalRows := m.unwindInfoBuf.Len() / 16 - fmt.Println("unwind rows", totalRows) + fmt.Println("live unwind rows", totalRows) + + if totalRows == 0 { + return nil + } + shardIndex := uint64(m.shardIndex) var err error for i := 0; i < 100; i++ { @@ -488,7 +529,7 @@ func (m *bpfMaps) PersistUnwindTable() error { return nil } else { fmt.Println("~~ failed:", err, "rows:", totalRows, "try:", i) - time.Sleep(100 * time.Millisecond) + time.Sleep(300 * time.Millisecond) } } @@ -519,9 +560,11 @@ func (m *bpfMaps) assertInvariants() { // - Add mapping information // - If unwind table is already present, we are done here // - Otherwise, we generate the unwind table for this executable +// +// @nocommit: Add note on thread safety func (m *bpfMaps) setUnwindTable(pid int, mapping *unwind.ExecutableMapping, procInfoBuf *bytes.Buffer) error { fmt.Println("========================================================================================") - fmt.Println("setUnwindTable called (total shards:", m.shardIndex, ", total entries:", m.totalEntries, ")") + fmt.Println("setUnwindTable called (total shards:", m.shardIndex, "/", unwindTableMaxEntries, "total entries:", m.totalEntries, ")") fmt.Println("========================================================================================") // Deal with mappings that are not filed backed. They don't have unwind