You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have a question about ebpf_exporter ask you
For bcc libbpf-tools,for ipv4/ipv6, it use union type.
struct event {
union {
__u32 saddr_v4;
__u8 saddr_v6[16];
};
union {
__u32 daddr_v4;
__u8 daddr_v6[16];
};
Have you ever used, how to define the yaml file to parse it(ipv4/ipv6)?
I only found one issue, use two metric for ipv4/ipv6 #46
whether have other method?
Thanks!
The text was updated successfully, but these errors were encountered:
Hi,
I have a question about ebpf_exporter ask you
For bcc libbpf-tools,for ipv4/ipv6, it use union type.
struct event {
union {
__u32 saddr_v4;
__u8 saddr_v6[16];
};
union {
__u32 daddr_v4;
__u8 daddr_v6[16];
};
Have you ever used, how to define the yaml file to parse it(ipv4/ipv6)?
I only found one issue, use two metric for ipv4/ipv6
#46
whether have other method?
Thanks!
The text was updated successfully, but these errors were encountered: