mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
14 lines
685 B
Plaintext
14 lines
685 B
Plaintext
table_name("video_info")
|
|
description("Retrieve video card information of the machine.")
|
|
schema([
|
|
Column("color_depth", INTEGER, "The amount of bits per pixel to represent color."),
|
|
Column("driver", TEXT, "The driver of the device."),
|
|
Column("driver_date", TEXT, "The date listed on the installed driver."),
|
|
Column("driver_version", TEXT, "The version of the installed driver."),
|
|
Column("manufacturer", TEXT, "The manufaturer of the gpu."),
|
|
Column("model", TEXT, "The model of the gpu."),
|
|
Column("series", TEXT, "The series of the gpu."),
|
|
Column("video_mode", TEXT, "The current resolution of the display."),
|
|
])
|
|
implementation("video_info@genVideoInfo")
|