Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Extend Fleet
Integrate your favorite tools with Fleet.
Customers
Stripe + Fleet
Stripe consolidates multiple tools with Fleet.
Foursquare + Fleet
Foursquare quickly migrates to Fleet for device management.
What people are saying
Stories from the Fleet community.
More
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
osquery_events
Information about the event publishers and subscribers.
Column | Type | Description |
---|---|---|
active | integer | 1 if the publisher or subscriber is active else 0 |
events | integer | Number of events emitted or received since osquery started |
name | text | Event publisher or subscriber name |
publisher | text | Name of the associated publisher |
refreshes | integer | Publisher only: number of runloop restarts |
subscriptions | integer | Number of subscriptions the publisher received or subscriber used |
type | text | Either publisher or subscriber |
Identify osquery event types which have no subscriber.
SELECT * from osquery_events WHERE subscriptions='0';