diff options
author | We-unite <3205135446@qq.com> | 2024-08-13 10:53:24 +0800 |
---|---|---|
committer | We-unite <3205135446@qq.com> | 2024-08-13 10:53:24 +0800 |
commit | dfdb18f83f7a957f99196369d97827d6209eeb9a (patch) | |
tree | 2ac5234a8322ba0ee52bc87fcdd93d56161ab67c /listener/godo.go | |
parent | 3e49a044d22635157916651f0acb5a062397b34b (diff) | |
download | godo-dfdb18f83f7a957f99196369d97827d6209eeb9a.tar.gz godo-dfdb18f83f7a957f99196369d97827d6209eeb9a.zip |
Filtering process data from mongodb
First of all, fix sth in listener to fit the function of filter. Ori-
ginally, listener mark the /usr/bin/containerd process id with star,
but the children in db is updated by ppid, which is pid of parent but
not tgid, so the stared pid has no children. To Fix this, we add all
the pid of /usr/bin/containerd into the db, and set their ptgid/tgid,
so that they're just normal process as others. Maybe we should finish
the info of these processes? haha.
Then, the filter of pid. There're some designed steps to do, and their
methods are as follows:
- Initially, because of the multithreading execution of listener,
there may be several entries for the same process, and we should
merge them. Extract data from database into a slice, and use a map
to record process info. Iterate the slice, if the pid is in the
map, then merge them, else insert into the map.
- Then, we should build process tree, but what we have is pid. So
use another data structure, iterate merged process map, and build
a map from tgid to a slice of processes. Find out the star. Build
a map from pid to its tgid.
- BFS. Design a simple queue, and build the tree from the root(stared
tgid), record all the visited tgid in another map. That's just the
tree.
As usual, let's talk about the remaining issues:
- Some pids did not recieve exit message. Check the exit time of
its tgid, or even its ppid.
- Optimize the data structure, record the tree by itself. Now the
tree is recorded by not only the last helloTree map from tgid to
slice but the map from pid to tgid. It's hard to store in the
database. Design a better ds, so the viewer can build the tree
quickly from the data in db.
- For future file filter, the close time, the same file for the same
pid, and the pathName of a file, should be paid mych attention.
Fighting!
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions