mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
16 lines
617 B
Plaintext
16 lines
617 B
Plaintext
table_name("processes")
|
|
schema([
|
|
Column(name="name", type="std::string"),
|
|
Column(name="path", type="std::string"),
|
|
Column(name="pid", type="int"),
|
|
Column(name="on_disk", type="int"),
|
|
Column(name="wired_size", type="std::string"),
|
|
Column(name="resident_size", type="std::string"),
|
|
Column(name="phys_footprint", type="std::string"),
|
|
Column(name="user_time", type="std::string"),
|
|
Column(name="system_time", type="std::string"),
|
|
Column(name="start_time", type="std::string"),
|
|
Column(name="parent", type="int"),
|
|
])
|
|
implementation("osquery/tables/system/processes@genProcesses")
|