Skip to content

Commit

Permalink
feat(sinsp/threadinfo): expose thread uid and gid as static fields
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Di Giovanna <[email protected]>
  • Loading branch information
ekoops committed Dec 10, 2024
1 parent 230ddfb commit 7ddcd6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions userspace/libsinsp/threadinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ libsinsp::state::static_struct::field_infos sinsp_threadinfo::static_fields() co
define_static_field(ret, this, m_container_id, "container_id");
define_static_field(ret, this, m_flags, "flags");
define_static_field(ret, this, m_fdlimit, "fd_limit");
// m_user
// m_loginuser
// m_group
define_static_field(ret, this, m_uid, "uid");
define_static_field(ret, this, m_gid, "gid");
define_static_field(ret, this, m_loginuid, "loginuid");
// m_cap_permitted
// m_cap_effective
// m_cap_inheritable
Expand Down

0 comments on commit 7ddcd6b

Please sign in to comment.