45 lines
832 B
Markdown
45 lines
832 B
Markdown
# Spoc Bot v. Render
|
|
|
|
Thank you, [Sean](https://www.linkedin.com/in/sean-moore-1755a619/)
|
|
|
|
## TODO
|
|
|
|
- to class design for joins and external tables
|
|
- dedupe multi channels
|
|
- add Team to Message
|
|
- from sync ingest to ingestQueue that retries a few times so user messages can find parent
|
|
- limit queue retries
|
|
- share postgres with Grafana
|
|
- new dash in Grafana
|
|
- what SLO/SLI can I help benoit with
|
|
- break into smaller goals
|
|
- sell to the team
|
|
- scott; like to keep state in incident.io and zendesk
|
|
|
|
|
|
```
|
|
erDiagram
|
|
%% thread event eventName
|
|
EVENT ||--|{ THREAD: "spawns"
|
|
THREAD ||--|{ MESSAGE: "populated by"
|
|
|
|
MESSAGE {
|
|
ID str
|
|
URL str
|
|
TS number
|
|
Plaintext str
|
|
}
|
|
THREAD {
|
|
ID str
|
|
URL str
|
|
Channel str
|
|
}
|
|
EVENT {
|
|
ID str
|
|
Name str
|
|
Asset str
|
|
Resolved bool
|
|
Datacenter str
|
|
}
|
|
```
|