mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 10:23:54 +00:00
14 lines
611 B
Plaintext
14 lines
611 B
Plaintext
|
table_name("pipes")
|
||
|
description("Named and Anonymous pipes.")
|
||
|
schema([
|
||
|
Column("pid", BIGINT, "Process ID of the process to which the pipe belongs", index=True),
|
||
|
Column("name", TEXT, "Name of the pipe"),
|
||
|
Column("instances", INTEGER, "Number of instances of the named pipe"),
|
||
|
Column("max_instances", INTEGER, "The maximum number of instances creatable for this pipe"),
|
||
|
Column("flags", TEXT, "The flags indicating whether this pipe connection is a server or client end, and if the pipe for sending messages or bytes"),
|
||
|
])
|
||
|
implementation("pipes@genPipes")
|
||
|
examples([
|
||
|
"select * from pipes",
|
||
|
])
|