Skip to content

Commit 9df2a6e

Browse files
committed
Database Doc: Fix table formatting.
1 parent 32040a0 commit 9df2a6e

1 file changed

Lines changed: 60 additions & 60 deletions

File tree

docs/db.md

Lines changed: 60 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,24 @@ Indexed Columns:
1919

2020
| Column ID | Source | Type | Description |
2121
|-----------|--------|------|-------------|
22-
| `code` | [Job.code](data.md#job-code) (`/code`) | word | Result code for the job (0 success, non-zero failure; special values like `warning`, `critical`, `abort`). |
23-
| `date` | [Job.completed](data.md#job-completed) (`/completed`) | number | Completion timestamp indexed at hour precision. |
24-
| `source` | [Job.source](data.md#job-source) (`/source`) | word | Launch source (scheduler, plugin, key, user, action, alert, workflow). |
25-
| `tags` | [Job.tags](data.md#event-tags) (`/tags`) | word | Tags assigned to the job. |
26-
| `event` | [Job.event](data.md#job-event) (`/event`) | word | Event ID that spawned the job. |
27-
| `category` | [Job.category](data.md#event-category) (`/category`) | word | Event category ID copied into the job. |
28-
| `plugin` | [Event.plugin](data.md#event-plugin) (`/plugin`) | word | Plugin ID that executed the job. |
29-
| `server` | [Job.server](data.md#job-server) (`/server`) | word | Server ID selected to run the job. |
30-
| `groups` | [Job.groups](data.md#job-groups) (`/groups`) | word | Server group IDs copied into the job. |
31-
| `workflow` | [Job.workflow](data.md#job-workflow) (`/workflow/event`) | word | When part of a workflow, the workflow event ID. |
32-
| `tickets` | [Job](data.md#job-tickets) (`/tickets`) | word | Linked ticket IDs associated with the job. |
22+
| `code` | [Job.code](data.md#job-code) | Word | Result code for the job (0 success, non-zero failure; special values like `warning`, `critical`, `abort`). |
23+
| `date` | [Job.completed](data.md#job-completed) | Number | Completion timestamp indexed at hour precision. |
24+
| `source` | [Job.source](data.md#job-source) | Word | Launch source (scheduler, plugin, key, user, action, alert, workflow). |
25+
| `tags` | [Job.tags](data.md#event-tags) | Word | Tags assigned to the job. |
26+
| `event` | [Job.event](data.md#job-event) | Word | Event ID that spawned the job. |
27+
| `category` | [Job.category](data.md#event-category) | Word | Event category ID copied into the job. |
28+
| `plugin` | [Event.plugin](data.md#event-plugin) | Word | Plugin ID that executed the job. |
29+
| `server` | [Job.server](data.md#job-server) | Word | Server ID selected to run the job. |
30+
| `groups` | [Job.groups](data.md#job-groups) | Word | Server group IDs copied into the job. |
31+
| `workflow` | [Job.workflow](data.md#job-workflow) | Word | When part of a workflow, the workflow event ID. |
32+
| `tickets` | [Job](data.md#job-tickets) | Word | Linked ticket IDs associated with the job. |
3333

3434
Sorters:
3535

3636
| Sorter ID | Source | Type | Description |
3737
|-----------|--------|------|-------------|
38-
| `completed` | [Job.completed](data.md#job-completed) (`/completed`) | number | Sort by job completion timestamp. |
39-
| `elapsed` | [Job.elapsed](data.md#job-elapsed) (`/elapsed`) | number | Sort by job elapsed duration (seconds). |
38+
| `completed` | [Job.completed](data.md#job-completed) | Number | Sort by job completion timestamp. |
39+
| `elapsed` | [Job.elapsed](data.md#job-elapsed) | Number | Sort by job elapsed duration (seconds). |
4040

4141
## Alerts
4242

@@ -46,14 +46,14 @@ Indexed Columns:
4646

4747
| Column ID | Source | Type | Description |
4848
|-----------|--------|------|-------------|
49-
| `active` | [AlertInvocation.active](data.md#alertinvocation-active) (`/active`) | word | Whether the alert is currently active (`true` or `false`). |
50-
| `alert` | [AlertInvocation.alert](data.md#alertinvocation-alert) (`/alert`) | word | Alert definition ID. |
51-
| `groups` | [AlertInvocation.groups](data.md#alertinvocation-groups) (`/groups`) | word | Groups the server belongs to. |
52-
| `server` | [AlertInvocation.server](data.md#alertinvocation-server) (`/server`) | word | Server ID associated with the invocation. |
53-
| `start` | [AlertInvocation.date](data.md#alertinvocation-date) (`/date`) | number | Start timestamp indexed at hour precision. |
54-
| `end` | [AlertInvocation.modified](data.md#alertinvocation-modified) (`/modified`) | number | Last modified time indexed at hour precision. |
55-
| `jobs` | [AlertInvocation.jobs](data.md#alertinvocation-jobs) (`/jobs`) | word | Related job IDs. |
56-
| `tickets` | [AlertInvocation.tickets](data.md#alertinvocation-tickets) (`/tickets`) | word | Related ticket IDs. |
49+
| `active` | [AlertInvocation.active](data.md#alertinvocation-active) | Word | Whether the alert is currently active (`true` or `false`). |
50+
| `alert` | [AlertInvocation.alert](data.md#alertinvocation-alert) | Word | Alert definition ID. |
51+
| `groups` | [AlertInvocation.groups](data.md#alertinvocation-groups) | Word | Groups the server belongs to. |
52+
| `server` | [AlertInvocation.server](data.md#alertinvocation-server) | Word | Server ID associated with the invocation. |
53+
| `start` | [AlertInvocation.date](data.md#alertinvocation-date) | Number | Start timestamp indexed at hour precision. |
54+
| `end` | [AlertInvocation.modified](data.md#alertinvocation-modified) | Number | Last modified time indexed at hour precision. |
55+
| `jobs` | [AlertInvocation.jobs](data.md#alertinvocation-jobs) | Word | Related job IDs. |
56+
| `tickets` | [AlertInvocation.tickets](data.md#alertinvocation-tickets) | Word | Related ticket IDs. |
5757

5858
## Snapshots
5959

@@ -63,13 +63,13 @@ Indexed Columns:
6363

6464
| Column ID | Source | Type | Description |
6565
|-----------|--------|------|-------------|
66-
| `type` | [Snapshot.type](data.md#snapshot-type) (`/type`) | word | Snapshot type: `server` or `group`. |
67-
| `source` | [Snapshot.source](data.md#snapshot-source) (`/source`) | word | Snapshot origin: `alert`, `watch`, `user`, or `job`. |
68-
| `server` | [Snapshot.server](data.md#snapshot-server) (`/server`) | word | Server ID for server snapshots. |
69-
| `groups` | [Snapshot.groups](data.md#snapshot-groups) (`/groups`) | word | Groups associated at the time of the snapshot. |
70-
| `date` | [Snapshot.date](data.md#snapshot-date) (`/date`) | number | Snapshot timestamp indexed at hour precision. |
71-
| `alerts` | [Snapshot.alerts](data.md#snapshot-alerts) (`/alerts`) | word | Active alert invocation IDs at snapshot time. |
72-
| `jobs` | [Snapshot.jobs](data.md#snapshot-jobs) (`/jobs`) | word | Active job IDs at snapshot time. |
66+
| `type` | [Snapshot.type](data.md#snapshot-type) | Word | Snapshot type: `server` or `group`. |
67+
| `source` | [Snapshot.source](data.md#snapshot-source) | Word | Snapshot origin: `alert`, `watch`, `user`, or `job`. |
68+
| `server` | [Snapshot.server](data.md#snapshot-server) | Word | Server ID for server snapshots. |
69+
| `groups` | [Snapshot.groups](data.md#snapshot-groups) | Word | Groups associated at the time of the snapshot. |
70+
| `date` | [Snapshot.date](data.md#snapshot-date) | Number | Snapshot timestamp indexed at hour precision. |
71+
| `alerts` | [Snapshot.alerts](data.md#snapshot-alerts) | Word | Active alert invocation IDs at snapshot time. |
72+
| `jobs` | [Snapshot.jobs](data.md#snapshot-jobs) | Word | Active job IDs at snapshot time. |
7373

7474
## Servers
7575

@@ -79,17 +79,17 @@ Indexed Columns:
7979

8080
| Column ID | Source | Type | Description |
8181
|-----------|--------|------|-------------|
82-
| `groups` | [Server.groups](data.md#server-groups) (`/groups`) | word | Group IDs (master list enabled). |
83-
| `created` | [Server.created](data.md#server-created) (`/created`) | number | Created timestamp indexed at hour precision. |
84-
| `modified` | [Server.modified](data.md#server-modified) (`/modified`) | number | Last modified timestamp indexed at hour precision. |
85-
| `keywords` | [Server.keywords](data.md#server-keywords) (`/keywords`) | word | Search keywords (min 1, max 64 chars per word). |
86-
| `os_platform` | [Server.info.os.platform](data.md#server-info) (`/info/os/platform`) | word | OS platform (filtered alphanumeric; master list/labels). |
87-
| `os_distro` | [Server.info.os.distro](data.md#server-info) (`/info/os/distro`) | word | OS distribution (filtered alphanumeric; master list/labels). |
88-
| `os_release` | [Server.info.os.release](data.md#server-info) (`/info/os/release`) | word | OS release/version (filtered alphanumeric; master list/labels). |
89-
| `os_arch` | [Server.info.os.arch](data.md#server-info) (`/info/os/arch`) | word | CPU architecture (filtered alphanumeric; master list/labels). |
90-
| `cpu_virt` | [Server.info.virt.vendor](data.md#server-info) (`/info/virt/vendor`) | word | Virtualization vendor (filtered alphanumeric; master list/labels). |
91-
| `cpu_brand` | [Server.info.cpu.combo](data.md#server-info) (`/info/cpu/combo`) | word | CPU vendor/brand (filtered alphanumeric; master list/labels). |
92-
| `cpu_cores` | [Server.info.cpu.cores](data.md#server-info) (`/info/cpu/cores`) | word | CPU core count (filtered alphanumeric; master list/labels). |
82+
| `groups` | [Server.groups](data.md#server-groups) | Word | Group IDs (master list enabled). |
83+
| `created` | [Server.created](data.md#server-created) | Number | Created timestamp indexed at hour precision. |
84+
| `modified` | [Server.modified](data.md#server-modified) | Number | Last modified timestamp indexed at hour precision. |
85+
| `keywords` | [Server.keywords](data.md#server-keywords) | Word | Search keywords (min 1, max 64 chars per word). |
86+
| `os_platform` | [Server.info.os.platform](data.md#server-info) | Word | OS platform (filtered alphanumeric; master list/labels). |
87+
| `os_distro` | [Server.info.os.distro](data.md#server-info) | Word | OS distribution (filtered alphanumeric; master list/labels). |
88+
| `os_release` | [Server.info.os.release](data.md#server-info) | Word | OS release/version (filtered alphanumeric; master list/labels). |
89+
| `os_arch` | [Server.info.os.arch](data.md#server-info) | Word | CPU architecture (filtered alphanumeric; master list/labels). |
90+
| `cpu_virt` | [Server.info.virt.vendor](data.md#server-info) | Word | Virtualization vendor (filtered alphanumeric; master list/labels). |
91+
| `cpu_brand` | [Server.info.cpu.combo](data.md#server-info) | Word | CPU vendor/brand (filtered alphanumeric; master list/labels). |
92+
| `cpu_cores` | [Server.info.cpu.cores](data.md#server-info) | Word | CPU core count (filtered alphanumeric; master list/labels). |
9393

9494
## Activity
9595

@@ -99,9 +99,9 @@ Indexed Columns:
9999

100100
| Column ID | Source | Type | Description |
101101
|-----------|--------|------|-------------|
102-
| `action` | [Activity.action](data.md#activity-action) (`/action`) | word | Activity action identifier. |
103-
| `keywords` | [Activity.keywords](data.md#activity-keywords) (`/keywords`) | word | Keywords for search (IDs, usernames, IPs). |
104-
| `date` | [Activity.epoch](data.md#activity-epoch) (`/epoch`) | number | Activity timestamp indexed at hour precision. |
102+
| `action` | [Activity.action](data.md#activity-action) | Word | Activity action identifier. |
103+
| `keywords` | [Activity.keywords](data.md#activity-keywords) | Word | Keywords for search (IDs, usernames, IPs). |
104+
| `date` | [Activity.epoch](data.md#activity-epoch) | Number | Activity timestamp indexed at hour precision. |
105105

106106
## Tickets
107107

@@ -111,29 +111,29 @@ Indexed Columns:
111111

112112
| Column ID | Source | Type | Description |
113113
|-----------|--------|------|-------------|
114-
| `type` | [Ticket.type](data.md#ticket-type) (`/type`) | word | Ticket type (`issue`, `feature`, `change`, `maintenance`, `question`, `other`). |
115-
| `num` | [Ticket.num](data.md#ticket-num) (`/num`) | number | Auto-assigned ticket number. |
116-
| `status` | [Ticket.status](data.md#ticket-status) (`/status`) | word | Ticket status (`open`, `closed`, `draft`). |
117-
| `category` | [Ticket.category](data.md#ticket-category) (`/category`) | word | Category ID. |
118-
| `username` | [Ticket.username](data.md#ticket-username) (`/username`) | word | Creator username (filtered alphanumeric). |
119-
| `assignees` | [Ticket.assignees](data.md#ticket-assignees) (`/assignees`) | word | Assigned users (filtered alphanumeric array). |
120-
| `cc` | [Ticket.cc](data.md#ticket-cc) (`/cc`) | word | Users CC’d (filtered alphanumeric array). |
121-
| `jobs` | [Ticket](data.md#ticket) (`/jobs`) | word | Related job IDs. |
122-
| `tags` | [Ticket.tags](data.md#ticket-tags) (`/tags`) | word | Tag IDs (master list enabled). |
123-
| `created` | [Ticket.created](data.md#ticket-created) (`/created`) | number | Created timestamp indexed at hour precision. |
124-
| `modified` | [Ticket.modified](data.md#ticket-modified) (`/modified`) | number | Last modified timestamp indexed at hour precision. |
125-
| `due` | [Ticket.due](data.md#ticket-due) (`/due`) | date | Due date. |
126-
| `server` | [Ticket.server](data.md#ticket-server) (`/server`) | word | Associated server ID. |
127-
| `subject` | [Ticket.subject](data.md#ticket-subject) (`/subject`) | word | Short summary (FTS; stemming enabled). |
128-
| `body` | [Ticket.body](data.md#ticket-body) (`[/username] [/subject] [/body]`) | word | Full-text search across username, subject and body (markdown filtered; stemming enabled). |
129-
| `changes` | [Ticket.changes](data.md#ticket-changes) (`/changes`) | word | Full-text search across change log content (markdown filtered; stemming enabled). |
114+
| `type` | [Ticket.type](data.md#ticket-type) | Word | Ticket type (`issue`, `feature`, `change`, `maintenance`, `question`, `other`). |
115+
| `num` | [Ticket.num](data.md#ticket-num) | Number | Auto-assigned ticket number. |
116+
| `status` | [Ticket.status](data.md#ticket-status) | Word | Ticket status (`open`, `closed`, `draft`). |
117+
| `category` | [Ticket.category](data.md#ticket-category) | Word | Category ID. |
118+
| `username` | [Ticket.username](data.md#ticket-username) | Word | Creator username (filtered alphanumeric). |
119+
| `assignees` | [Ticket.assignees](data.md#ticket-assignees) | Word | Assigned users (filtered alphanumeric array). |
120+
| `cc` | [Ticket.cc](data.md#ticket-cc) | Word | Users CC’d (filtered alphanumeric array). |
121+
| `jobs` | [Ticket](data.md#ticket) | Word | Related job IDs. |
122+
| `tags` | [Ticket.tags](data.md#ticket-tags) | Word | Tag IDs (master list enabled). |
123+
| `created` | [Ticket.created](data.md#ticket-created) | Number | Created timestamp indexed at hour precision. |
124+
| `modified` | [Ticket.modified](data.md#ticket-modified) | Number | Last modified timestamp indexed at hour precision. |
125+
| `due` | [Ticket.due](data.md#ticket-due) | Date | Due date. |
126+
| `server` | [Ticket.server](data.md#ticket-server) | Word | Associated server ID. |
127+
| `subject` | [Ticket.subject](data.md#ticket-subject) | Word | Short summary (FTS; stemming enabled). |
128+
| `body` | [Ticket.body](data.md#ticket-body) | Word | Full-text search across username, subject and body (markdown filtered; stemming enabled). |
129+
| `changes` | [Ticket.changes](data.md#ticket-changes) | Word | Full-text search across change log content (markdown filtered; stemming enabled). |
130130

131131
Sorters:
132132

133133
| Sorter ID | Source | Type | Description |
134134
|-----------|--------|------|-------------|
135-
| `num` | [Ticket.num](data.md#ticket-num) (`/num`) | number | Sort by ticket number. |
136-
| `modified` | [Ticket.modified](data.md#ticket-modified) (`/modified`) | number | Sort by last modified timestamp. |
135+
| `num` | [Ticket.num](data.md#ticket-num) | Number | Sort by ticket number. |
136+
| `modified` | [Ticket.modified](data.md#ticket-modified) | Number | Sort by last modified timestamp. |
137137

138138
## Column Properties
139139

0 commit comments

Comments
 (0)