Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tables/sentinelone_agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ select
account_id,
computer_name,
agent_version,
os_name,
os_name
from
sentinelone_agent;
```
Expand All @@ -31,7 +31,7 @@ select
account_id,
computer_name,
agent_version,
os_name,
os_name
from
sentinelone_agent;
```
Expand Down
4 changes: 2 additions & 2 deletions docs/tables/sentinelone_alert.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ select
incident_status,
created_at
from
sentinelone_alerts
sentinelone_alert
where
incident_status = 'open'
and created_at >= (current_timestamp - interval '4 days')
Expand All @@ -94,7 +94,7 @@ select
incident_status,
created_at
from
sentinelone_alerts
sentinelone_alert
where
incident_status = 'open'
and created_at >= datetime('now', '-4 days')
Expand Down