If in my python bcc program I store information in a pinned map, how can I access it from a separate python program?
So I have this pinned map from the reference guide:
BPF_TABLE_PINNED("hash", u64, u64, ids, 1024, "/sys/fs/bpf/ids");
I already tried accessing it like a normal table but I get a raise key error. There isn't any documentation but I found this example that I don't really understand https://github.com/iovisor/bcc/blame/master/examples/cpp/UseExternalMap.cc