Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
ulimit_info
System resource usage limits.
Column | Type | Description |
---|---|---|
hard_limit | text | Maximum limit value |
soft_limit | text | Current limit value |
type | text | System resource to be limited |
Check the stack size limit
SELECT * FROM ulimit_info WHERE type='stack';