Files
cairnobs/hack/demo-seed/dashboards/security.json
T
jcoffey-dev bcb9a01cd6 Give the demo a live synthetic fleet, dashboards, and alert rules
The demo had 75k generic records across eight host-0N/service pairs, one
dashboard, one alert rule, and -- because nothing ever called
AgentControl.CheckIn -- a completely empty Agents page.

/hack/demo-simulator replaces the generic data with a fictional but
coherent fleet: 14 hosts running nginx, an API tier, workers, Postgres,
Redis, mail, Linux journals and Windows event logs, whose messages and
attributes look like what those services actually write. It backfills a
week (~370k records, ~20s) and then keeps running.

Running continuously is the point, not an implementation detail. Three
things the demo has to show are only true if data keeps arriving: the
Agents page marks a host stale once check-ins stop, alert rules evaluate
over trailing windows and would freeze in one state against a static
dataset, and any "last 15 minutes" view is empty on data that stopped
growing overnight. It also emits metrics/heartbeats and answers CheckIn
faithfully enough that the remote-config editor's pending -> applied
transition works end to end.

Seeded incidents give the data something to find: an api-02 outage with
matching slow queries on db-01, 5xx at the edge and cascading job
failures; an SSH probe burst; a spam wave; a disk filling up; and one
decommissioned host left deliberately stale.

/hack/demo-seed holds the rest of the deployment -- the nightly reset,
eight dashboards (64 panels, every viz type but line), eleven alert
rules across three notification targets, and the systemd unit. Rule
thresholds are calibrated against what the simulator actually produces:
the first pass had four rules whose thresholds the traffic could never
reach and one that fired during normal operation.

No line charts: dashboard panels reject the raw-SQL escape hatch, and
the pipe language has no time-bucketing, so a real time axis isn't
expressible today. Noted in demo-seed/README.md rather than papered
over.
2026-08-22 16:12:35 -07:00

114 lines
3.0 KiB
JSON

{
"name": "Security",
"description": "SSH authentication, firewall blocks, and Windows logon failures across the fleet",
"default_earliest": "-24h",
"default_latest": "now",
"panels": [
{
"title": "Failed SSH logins",
"query": "service=system auth_result=failed | stats count",
"viz_type": "single_stat",
"position_x": 0,
"position_y": 0,
"width": 4,
"height": 3,
"query_language": "spl",
"sort_order": 0
},
{
"title": "Firewall blocks",
"query": "service=system ufw_action=BLOCK | stats count",
"viz_type": "single_stat",
"position_x": 4,
"position_y": 0,
"width": 4,
"height": 3,
"query_language": "spl",
"sort_order": 1
},
{
"title": "Windows logon failures",
"query": "winevt.event_id=4625 | stats count",
"viz_type": "single_stat",
"position_x": 8,
"position_y": 0,
"width": 4,
"height": 3,
"query_language": "spl",
"sort_order": 2
},
{
"title": "Top source addresses",
"query": "service=system auth_result=failed | stats count by remote_addr | sort -count | head 10",
"viz_type": "top_n",
"position_x": 0,
"position_y": 3,
"width": 6,
"height": 5,
"viz_config": {
"label_column": "remote_addr",
"value_column": "count"
},
"query_language": "spl",
"sort_order": 3
},
{
"title": "Blocked destination ports",
"query": "service=system ufw_action=BLOCK | stats count by dst_port | sort -count | head 12",
"viz_type": "bar",
"position_x": 6,
"position_y": 3,
"width": 6,
"height": 5,
"viz_config": {
"x_column": "dst_port",
"value_column": "count"
},
"query_language": "spl",
"sort_order": 4
},
{
"title": "Source address by blocked port",
"query": "service=system ufw_action=BLOCK | stats count by remote_addr, dst_port",
"viz_type": "heatmap",
"position_x": 0,
"position_y": 8,
"width": 6,
"height": 5,
"viz_config": {
"x_column": "remote_addr",
"y_column": "dst_port",
"value_column": "count"
},
"query_language": "spl",
"sort_order": 5
},
{
"title": "Failed logins by host",
"query": "service=system auth_result=failed | stats count by host | sort -count",
"viz_type": "bar",
"position_x": 6,
"position_y": 8,
"width": 6,
"height": 5,
"viz_config": {
"x_column": "host",
"value_column": "count"
},
"query_language": "spl",
"sort_order": 6
},
{
"title": "Recent authentication failures",
"query": "service=system auth_result=failed | sort -timestamp | head 50 | fields timestamp, host, ssh_user, remote_addr, message",
"viz_type": "table",
"position_x": 0,
"position_y": 13,
"width": 12,
"height": 6,
"query_language": "spl",
"sort_order": 7
}
]
}