osquery-1/osquery/tables/specs/processes.table
2014-08-05 18:14:32 -07:00

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")