hippo-memory 0.36.0 → 0.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (199) hide show
  1. package/README.md +16 -0
  2. package/dist/api.d.ts +20 -0
  3. package/dist/api.d.ts.map +1 -1
  4. package/dist/api.js +23 -3
  5. package/dist/api.js.map +1 -1
  6. package/dist/benchmarks/e1.3/incident-recall-eval.js +74 -0
  7. package/dist/benchmarks/e1.3/incident-recall-eval.js.map +1 -0
  8. package/dist/benchmarks/e1.3/scenarios.json +2587 -0
  9. package/dist/benchmarks/e1.3/slack-1000-event-smoke.js +102 -0
  10. package/dist/benchmarks/e1.3/slack-1000-event-smoke.js.map +1 -0
  11. package/dist/cli.js +82 -0
  12. package/dist/cli.js.map +1 -1
  13. package/dist/connectors/slack/backfill.d.ts +42 -0
  14. package/dist/connectors/slack/backfill.d.ts.map +1 -0
  15. package/dist/connectors/slack/backfill.js +76 -0
  16. package/dist/connectors/slack/backfill.js.map +1 -0
  17. package/dist/connectors/slack/deletion.d.ts +14 -0
  18. package/dist/connectors/slack/deletion.d.ts.map +1 -0
  19. package/dist/connectors/slack/deletion.js +46 -0
  20. package/dist/connectors/slack/deletion.js.map +1 -0
  21. package/dist/connectors/slack/dlq.d.ts +21 -0
  22. package/dist/connectors/slack/dlq.d.ts.map +1 -0
  23. package/dist/connectors/slack/dlq.js +23 -0
  24. package/dist/connectors/slack/dlq.js.map +1 -0
  25. package/dist/connectors/slack/idempotency.d.ts +5 -0
  26. package/dist/connectors/slack/idempotency.d.ts.map +1 -0
  27. package/dist/connectors/slack/idempotency.js +13 -0
  28. package/dist/connectors/slack/idempotency.js.map +1 -0
  29. package/dist/connectors/slack/ingest.d.ts +27 -0
  30. package/dist/connectors/slack/ingest.d.ts.map +1 -0
  31. package/dist/connectors/slack/ingest.js +48 -0
  32. package/dist/connectors/slack/ingest.js.map +1 -0
  33. package/dist/connectors/slack/ratelimit.d.ts +9 -0
  34. package/dist/connectors/slack/ratelimit.d.ts.map +1 -0
  35. package/dist/connectors/slack/ratelimit.js +18 -0
  36. package/dist/connectors/slack/ratelimit.js.map +1 -0
  37. package/dist/connectors/slack/scope.d.ts +16 -0
  38. package/dist/connectors/slack/scope.d.ts.map +1 -0
  39. package/dist/connectors/slack/scope.js +13 -0
  40. package/dist/connectors/slack/scope.js.map +1 -0
  41. package/dist/connectors/slack/signature.d.ts +12 -0
  42. package/dist/connectors/slack/signature.d.ts.map +1 -0
  43. package/dist/connectors/slack/signature.js +20 -0
  44. package/dist/connectors/slack/signature.js.map +1 -0
  45. package/dist/connectors/slack/tenant-routing.d.ts +13 -0
  46. package/dist/connectors/slack/tenant-routing.d.ts.map +1 -0
  47. package/dist/connectors/slack/tenant-routing.js +17 -0
  48. package/dist/connectors/slack/tenant-routing.js.map +1 -0
  49. package/dist/connectors/slack/transform.d.ts +20 -0
  50. package/dist/connectors/slack/transform.d.ts.map +1 -0
  51. package/dist/connectors/slack/transform.js +31 -0
  52. package/dist/connectors/slack/transform.js.map +1 -0
  53. package/dist/connectors/slack/types.d.ts +35 -0
  54. package/dist/connectors/slack/types.d.ts.map +1 -0
  55. package/dist/connectors/slack/types.js +23 -0
  56. package/dist/connectors/slack/types.js.map +1 -0
  57. package/dist/connectors/slack/web-client.d.ts +12 -0
  58. package/dist/connectors/slack/web-client.d.ts.map +1 -0
  59. package/dist/connectors/slack/web-client.js +43 -0
  60. package/dist/connectors/slack/web-client.js.map +1 -0
  61. package/dist/db.d.ts.map +1 -1
  62. package/dist/db.js +46 -1
  63. package/dist/db.js.map +1 -1
  64. package/dist/importers.js +3 -3
  65. package/dist/importers.js.map +1 -1
  66. package/dist/mcp/server.js +1 -1
  67. package/dist/server.d.ts.map +1 -1
  68. package/dist/server.js +174 -2
  69. package/dist/server.js.map +1 -1
  70. package/dist/src/ambient.js +147 -0
  71. package/dist/src/ambient.js.map +1 -0
  72. package/dist/src/api.js +343 -0
  73. package/dist/src/api.js.map +1 -0
  74. package/dist/src/audit.js +152 -0
  75. package/dist/src/audit.js.map +1 -0
  76. package/dist/src/auth.js +65 -0
  77. package/dist/src/auth.js.map +1 -0
  78. package/dist/src/autolearn.js +143 -0
  79. package/dist/src/autolearn.js.map +1 -0
  80. package/dist/src/capture.js +512 -0
  81. package/dist/src/capture.js.map +1 -0
  82. package/dist/src/cli.js +4971 -0
  83. package/dist/src/cli.js.map +1 -0
  84. package/dist/src/client.js +181 -0
  85. package/dist/src/client.js.map +1 -0
  86. package/dist/src/config.js +108 -0
  87. package/dist/src/config.js.map +1 -0
  88. package/dist/src/connectors/slack/backfill.js +76 -0
  89. package/dist/src/connectors/slack/backfill.js.map +1 -0
  90. package/dist/src/connectors/slack/deletion.js +46 -0
  91. package/dist/src/connectors/slack/deletion.js.map +1 -0
  92. package/dist/src/connectors/slack/dlq.js +23 -0
  93. package/dist/src/connectors/slack/dlq.js.map +1 -0
  94. package/dist/src/connectors/slack/idempotency.js +13 -0
  95. package/dist/src/connectors/slack/idempotency.js.map +1 -0
  96. package/dist/src/connectors/slack/ingest.js +48 -0
  97. package/dist/src/connectors/slack/ingest.js.map +1 -0
  98. package/dist/src/connectors/slack/ratelimit.js +18 -0
  99. package/dist/src/connectors/slack/ratelimit.js.map +1 -0
  100. package/dist/src/connectors/slack/scope.js +13 -0
  101. package/dist/src/connectors/slack/scope.js.map +1 -0
  102. package/dist/src/connectors/slack/signature.js +20 -0
  103. package/dist/src/connectors/slack/signature.js.map +1 -0
  104. package/dist/src/connectors/slack/tenant-routing.js +17 -0
  105. package/dist/src/connectors/slack/tenant-routing.js.map +1 -0
  106. package/dist/src/connectors/slack/transform.js +31 -0
  107. package/dist/src/connectors/slack/transform.js.map +1 -0
  108. package/dist/src/connectors/slack/types.js +23 -0
  109. package/dist/src/connectors/slack/types.js.map +1 -0
  110. package/dist/src/connectors/slack/web-client.js +43 -0
  111. package/dist/src/connectors/slack/web-client.js.map +1 -0
  112. package/dist/src/consolidate.js +517 -0
  113. package/dist/src/consolidate.js.map +1 -0
  114. package/dist/src/dag.js +104 -0
  115. package/dist/src/dag.js.map +1 -0
  116. package/dist/src/dashboard.js +409 -0
  117. package/dist/src/dashboard.js.map +1 -0
  118. package/dist/src/db.js +584 -0
  119. package/dist/src/db.js.map +1 -0
  120. package/dist/src/embeddings.js +344 -0
  121. package/dist/src/embeddings.js.map +1 -0
  122. package/dist/src/eval-suite.js +289 -0
  123. package/dist/src/eval-suite.js.map +1 -0
  124. package/dist/src/eval.js +187 -0
  125. package/dist/src/eval.js.map +1 -0
  126. package/dist/src/extract.js +87 -0
  127. package/dist/src/extract.js.map +1 -0
  128. package/dist/src/handoff.js +30 -0
  129. package/dist/src/handoff.js.map +1 -0
  130. package/dist/src/hooks.js +582 -0
  131. package/dist/src/hooks.js.map +1 -0
  132. package/dist/src/importers.js +399 -0
  133. package/dist/src/importers.js.map +1 -0
  134. package/dist/src/index.js +25 -0
  135. package/dist/src/index.js.map +1 -0
  136. package/dist/src/invalidation.js +94 -0
  137. package/dist/src/invalidation.js.map +1 -0
  138. package/dist/src/mcp/framing.js +45 -0
  139. package/dist/src/mcp/framing.js.map +1 -0
  140. package/dist/src/mcp/server.js +510 -0
  141. package/dist/src/mcp/server.js.map +1 -0
  142. package/dist/src/memory.js +280 -0
  143. package/dist/src/memory.js.map +1 -0
  144. package/dist/src/multihop.js +32 -0
  145. package/dist/src/multihop.js.map +1 -0
  146. package/dist/src/path-context.js +32 -0
  147. package/dist/src/path-context.js.map +1 -0
  148. package/dist/src/physics-config.js +26 -0
  149. package/dist/src/physics-config.js.map +1 -0
  150. package/dist/src/physics-state.js +163 -0
  151. package/dist/src/physics-state.js.map +1 -0
  152. package/dist/src/physics.js +361 -0
  153. package/dist/src/physics.js.map +1 -0
  154. package/dist/src/postinstall.js +68 -0
  155. package/dist/src/postinstall.js.map +1 -0
  156. package/dist/src/raw-archive.js +72 -0
  157. package/dist/src/raw-archive.js.map +1 -0
  158. package/dist/src/refine-llm.js +147 -0
  159. package/dist/src/refine-llm.js.map +1 -0
  160. package/dist/src/replay.js +117 -0
  161. package/dist/src/replay.js.map +1 -0
  162. package/dist/src/salience.js +74 -0
  163. package/dist/src/salience.js.map +1 -0
  164. package/dist/src/scheduler.js +67 -0
  165. package/dist/src/scheduler.js.map +1 -0
  166. package/dist/src/scope.js +35 -0
  167. package/dist/src/scope.js.map +1 -0
  168. package/dist/src/search.js +801 -0
  169. package/dist/src/search.js.map +1 -0
  170. package/dist/src/server-detect.js +70 -0
  171. package/dist/src/server-detect.js.map +1 -0
  172. package/dist/src/server.js +784 -0
  173. package/dist/src/server.js.map +1 -0
  174. package/dist/src/shared.js +309 -0
  175. package/dist/src/shared.js.map +1 -0
  176. package/dist/src/sso.js +22 -0
  177. package/dist/src/sso.js.map +1 -0
  178. package/dist/src/store.js +1390 -0
  179. package/dist/src/store.js.map +1 -0
  180. package/dist/src/tenant.js +17 -0
  181. package/dist/src/tenant.js.map +1 -0
  182. package/dist/src/trace.js +64 -0
  183. package/dist/src/trace.js.map +1 -0
  184. package/dist/src/working-memory.js +149 -0
  185. package/dist/src/working-memory.js.map +1 -0
  186. package/dist/src/yaml.js +98 -0
  187. package/dist/src/yaml.js.map +1 -0
  188. package/dist/store.d.ts +9 -1
  189. package/dist/store.d.ts.map +1 -1
  190. package/dist/store.js +30 -2
  191. package/dist/store.js.map +1 -1
  192. package/extensions/openclaw-plugin/openclaw.plugin.json +1 -1
  193. package/extensions/openclaw-plugin/package.json +1 -1
  194. package/openclaw.plugin.json +1 -1
  195. package/package.json +2 -2
  196. package/dist/import.d.ts +0 -31
  197. package/dist/import.d.ts.map +0 -1
  198. package/dist/import.js +0 -307
  199. package/dist/import.js.map +0 -1
@@ -0,0 +1,2587 @@
1
+ [
2
+ {
3
+ "id": "S01-incident",
4
+ "channel": "C-incidents",
5
+ "query": "postgres database outage connection pool",
6
+ "answer_ts": [
7
+ "1700000300.000000",
8
+ "1700000310.000000"
9
+ ],
10
+ "transcript": [
11
+ {
12
+ "user": "U1",
13
+ "text": "morning all coffee machine broken again",
14
+ "ts": "1700000001.000000"
15
+ },
16
+ {
17
+ "user": "U2",
18
+ "text": "same here vending eating my coins",
19
+ "ts": "1700000010.000000"
20
+ },
21
+ {
22
+ "user": "U3",
23
+ "text": "anyone watching football tonight",
24
+ "ts": "1700000020.000000"
25
+ },
26
+ {
27
+ "user": "U4",
28
+ "text": "I might catch the second half",
29
+ "ts": "1700000030.000000"
30
+ },
31
+ {
32
+ "user": "U5",
33
+ "text": "lunch options thread please",
34
+ "ts": "1700000040.000000"
35
+ },
36
+ {
37
+ "user": "U6",
38
+ "text": "thai place down the road is decent",
39
+ "ts": "1700000050.000000"
40
+ },
41
+ {
42
+ "user": "U7",
43
+ "text": "weekly demo moved to thursday",
44
+ "ts": "1700000060.000000"
45
+ },
46
+ {
47
+ "user": "U8",
48
+ "text": "thanks for the heads up",
49
+ "ts": "1700000070.000000"
50
+ },
51
+ {
52
+ "user": "U1",
53
+ "text": "anyone deploying staging today",
54
+ "ts": "1700000080.000000"
55
+ },
56
+ {
57
+ "user": "U2",
58
+ "text": "I will be after standup",
59
+ "ts": "1700000090.000000"
60
+ },
61
+ {
62
+ "user": "U3",
63
+ "text": "remember to update the runbook",
64
+ "ts": "1700000100.000000"
65
+ },
66
+ {
67
+ "user": "U4",
68
+ "text": "got it will do",
69
+ "ts": "1700000110.000000"
70
+ },
71
+ {
72
+ "user": "U5",
73
+ "text": "office wifi flaky again",
74
+ "ts": "1700000120.000000"
75
+ },
76
+ {
77
+ "user": "U6",
78
+ "text": "tethering to phone",
79
+ "ts": "1700000130.000000"
80
+ },
81
+ {
82
+ "user": "U7",
83
+ "text": "hr lunch and learn at noon",
84
+ "ts": "1700000140.000000"
85
+ },
86
+ {
87
+ "user": "U8",
88
+ "text": "ack thanks",
89
+ "ts": "1700000150.000000"
90
+ },
91
+ {
92
+ "user": "U1",
93
+ "text": "did anyone see the new logo mock",
94
+ "ts": "1700000160.000000"
95
+ },
96
+ {
97
+ "user": "U2",
98
+ "text": "yeah it looks pretty clean",
99
+ "ts": "1700000170.000000"
100
+ },
101
+ {
102
+ "user": "U3",
103
+ "text": "engineering all hands at three",
104
+ "ts": "1700000180.000000"
105
+ },
106
+ {
107
+ "user": "U4",
108
+ "text": "I will be there",
109
+ "ts": "1700000190.000000"
110
+ },
111
+ {
112
+ "user": "U5",
113
+ "text": "checkout has been laggy this morning",
114
+ "ts": "1700000200.000000"
115
+ },
116
+ {
117
+ "user": "U6",
118
+ "text": "I noticed too p99 latency up",
119
+ "ts": "1700000210.000000"
120
+ },
121
+ {
122
+ "user": "U7",
123
+ "text": "checking grafana now",
124
+ "ts": "1700000220.000000"
125
+ },
126
+ {
127
+ "user": "U8",
128
+ "text": "looks elevated since 14:02 UTC",
129
+ "ts": "1700000230.000000"
130
+ },
131
+ {
132
+ "user": "U1",
133
+ "text": "checkout API throwing 500s now",
134
+ "ts": "1700000240.000000"
135
+ },
136
+ {
137
+ "user": "U2",
138
+ "text": "confirmed seeing 500s on checkout",
139
+ "ts": "1700000250.000000"
140
+ },
141
+ {
142
+ "user": "U3",
143
+ "text": "paging on call",
144
+ "ts": "1700000260.000000"
145
+ },
146
+ {
147
+ "user": "U4",
148
+ "text": "joined the bridge",
149
+ "ts": "1700000270.000000"
150
+ },
151
+ {
152
+ "user": "U5",
153
+ "text": "rolling back last deploy first",
154
+ "ts": "1700000280.000000"
155
+ },
156
+ {
157
+ "user": "U6",
158
+ "text": "rollback complete errors still climbing",
159
+ "ts": "1700000290.000000"
160
+ },
161
+ {
162
+ "user": "U7",
163
+ "text": "postgres database outage: connection pool exhausted on primary",
164
+ "ts": "1700000300.000000"
165
+ },
166
+ {
167
+ "user": "U8",
168
+ "text": "confirmed postgres outage from analytics query holding connection pool locks",
169
+ "ts": "1700000310.000000"
170
+ },
171
+ {
172
+ "user": "U1",
173
+ "text": "killing the analytics query now",
174
+ "ts": "1700000320.000000"
175
+ },
176
+ {
177
+ "user": "U2",
178
+ "text": "pool draining connections recovering",
179
+ "ts": "1700000330.000000"
180
+ },
181
+ {
182
+ "user": "U3",
183
+ "text": "checkout 500s back to baseline",
184
+ "ts": "1700000340.000000"
185
+ },
186
+ {
187
+ "user": "U4",
188
+ "text": "good work team postmortem tomorrow",
189
+ "ts": "1700000350.000000"
190
+ },
191
+ {
192
+ "user": "U5",
193
+ "text": "I will draft it",
194
+ "ts": "1700000360.000000"
195
+ },
196
+ {
197
+ "user": "U6",
198
+ "text": "thanks all",
199
+ "ts": "1700000370.000000"
200
+ },
201
+ {
202
+ "user": "U7",
203
+ "text": "going for coffee brb",
204
+ "ts": "1700000380.000000"
205
+ },
206
+ {
207
+ "user": "U8",
208
+ "text": "same need a break",
209
+ "ts": "1700000390.000000"
210
+ },
211
+ {
212
+ "user": "U1",
213
+ "text": "back what did I miss",
214
+ "ts": "1700000400.000000"
215
+ },
216
+ {
217
+ "user": "U2",
218
+ "text": "nothing new all calm",
219
+ "ts": "1700000410.000000"
220
+ },
221
+ {
222
+ "user": "U3",
223
+ "text": "sprint planning at four pm reminder",
224
+ "ts": "1700000420.000000"
225
+ },
226
+ {
227
+ "user": "U4",
228
+ "text": "ack",
229
+ "ts": "1700000430.000000"
230
+ },
231
+ {
232
+ "user": "U5",
233
+ "text": "anyone want dinner after",
234
+ "ts": "1700000440.000000"
235
+ },
236
+ {
237
+ "user": "U6",
238
+ "text": "I am in",
239
+ "ts": "1700000450.000000"
240
+ },
241
+ {
242
+ "user": "U7",
243
+ "text": "me too",
244
+ "ts": "1700000460.000000"
245
+ },
246
+ {
247
+ "user": "U8",
248
+ "text": "great place to be decided",
249
+ "ts": "1700000470.000000"
250
+ },
251
+ {
252
+ "user": "U1",
253
+ "text": "italian or sushi",
254
+ "ts": "1700000480.000000"
255
+ },
256
+ {
257
+ "user": "U2",
258
+ "text": "sushi",
259
+ "ts": "1700000490.000000"
260
+ },
261
+ {
262
+ "user": "U3",
263
+ "text": "sushi works",
264
+ "ts": "1700000500.000000"
265
+ },
266
+ {
267
+ "user": "U4",
268
+ "text": "ok sushi it is",
269
+ "ts": "1700000510.000000"
270
+ },
271
+ {
272
+ "user": "U5",
273
+ "text": "see you all at seven",
274
+ "ts": "1700000520.000000"
275
+ },
276
+ {
277
+ "user": "U6",
278
+ "text": "perfect",
279
+ "ts": "1700000530.000000"
280
+ },
281
+ {
282
+ "user": "U7",
283
+ "text": "leaving soon",
284
+ "ts": "1700000540.000000"
285
+ },
286
+ {
287
+ "user": "U8",
288
+ "text": "on my way",
289
+ "ts": "1700000550.000000"
290
+ },
291
+ {
292
+ "user": "U1",
293
+ "text": "ok bye all have a good evening",
294
+ "ts": "1700000560.000000"
295
+ }
296
+ ]
297
+ },
298
+ {
299
+ "id": "S02-incident",
300
+ "channel": "C-incidents",
301
+ "query": "helm chart memory limit oom kill",
302
+ "answer_ts": [
303
+ "1700100400.000000",
304
+ "1700100410.000000"
305
+ ],
306
+ "transcript": [
307
+ {
308
+ "user": "U1",
309
+ "text": "good morning team",
310
+ "ts": "1700100001.000000"
311
+ },
312
+ {
313
+ "user": "U2",
314
+ "text": "morning",
315
+ "ts": "1700100010.000000"
316
+ },
317
+ {
318
+ "user": "U3",
319
+ "text": "anyone reviewed my pr yet",
320
+ "ts": "1700100020.000000"
321
+ },
322
+ {
323
+ "user": "U4",
324
+ "text": "I will look after coffee",
325
+ "ts": "1700100030.000000"
326
+ },
327
+ {
328
+ "user": "U5",
329
+ "text": "ci is slow today",
330
+ "ts": "1700100040.000000"
331
+ },
332
+ {
333
+ "user": "U6",
334
+ "text": "yeah github actions queue is long",
335
+ "ts": "1700100050.000000"
336
+ },
337
+ {
338
+ "user": "U7",
339
+ "text": "lunch order going in",
340
+ "ts": "1700100060.000000"
341
+ },
342
+ {
343
+ "user": "U8",
344
+ "text": "burrito for me please",
345
+ "ts": "1700100070.000000"
346
+ },
347
+ {
348
+ "user": "U1",
349
+ "text": "salad please",
350
+ "ts": "1700100080.000000"
351
+ },
352
+ {
353
+ "user": "U2",
354
+ "text": "weekly survey reminder",
355
+ "ts": "1700100090.000000"
356
+ },
357
+ {
358
+ "user": "U3",
359
+ "text": "filled it in",
360
+ "ts": "1700100100.000000"
361
+ },
362
+ {
363
+ "user": "U4",
364
+ "text": "same",
365
+ "ts": "1700100110.000000"
366
+ },
367
+ {
368
+ "user": "U5",
369
+ "text": "demo went well yesterday",
370
+ "ts": "1700100120.000000"
371
+ },
372
+ {
373
+ "user": "U6",
374
+ "text": "the new dashboard looks great",
375
+ "ts": "1700100130.000000"
376
+ },
377
+ {
378
+ "user": "U7",
379
+ "text": "headphones found in meeting room three",
380
+ "ts": "1700100140.000000"
381
+ },
382
+ {
383
+ "user": "U8",
384
+ "text": "those are mine thanks",
385
+ "ts": "1700100150.000000"
386
+ },
387
+ {
388
+ "user": "U1",
389
+ "text": "starting the production deploy now",
390
+ "ts": "1700100160.000000"
391
+ },
392
+ {
393
+ "user": "U2",
394
+ "text": "ack",
395
+ "ts": "1700100170.000000"
396
+ },
397
+ {
398
+ "user": "U3",
399
+ "text": "watching the dashboard",
400
+ "ts": "1700100180.000000"
401
+ },
402
+ {
403
+ "user": "U4",
404
+ "text": "first canary looks ok",
405
+ "ts": "1700100190.000000"
406
+ },
407
+ {
408
+ "user": "U5",
409
+ "text": "second wave green",
410
+ "ts": "1700100200.000000"
411
+ },
412
+ {
413
+ "user": "U6",
414
+ "text": "third wave failing",
415
+ "ts": "1700100210.000000"
416
+ },
417
+ {
418
+ "user": "U7",
419
+ "text": "deploy paused",
420
+ "ts": "1700100220.000000"
421
+ },
422
+ {
423
+ "user": "U8",
424
+ "text": "looking at logs",
425
+ "ts": "1700100230.000000"
426
+ },
427
+ {
428
+ "user": "U1",
429
+ "text": "lots of pod crashloops",
430
+ "ts": "1700100240.000000"
431
+ },
432
+ {
433
+ "user": "U2",
434
+ "text": "out of memory kills suspected",
435
+ "ts": "1700100250.000000"
436
+ },
437
+ {
438
+ "user": "U3",
439
+ "text": "kubectl describe shows oom yes",
440
+ "ts": "1700100260.000000"
441
+ },
442
+ {
443
+ "user": "U4",
444
+ "text": "checking limits in helm chart",
445
+ "ts": "1700100270.000000"
446
+ },
447
+ {
448
+ "user": "U5",
449
+ "text": "increased memory limit recently",
450
+ "ts": "1700100280.000000"
451
+ },
452
+ {
453
+ "user": "U6",
454
+ "text": "no but the app might be loading more",
455
+ "ts": "1700100290.000000"
456
+ },
457
+ {
458
+ "user": "U7",
459
+ "text": "rollback to previous version please",
460
+ "ts": "1700100300.000000"
461
+ },
462
+ {
463
+ "user": "U8",
464
+ "text": "rolling back now",
465
+ "ts": "1700100310.000000"
466
+ },
467
+ {
468
+ "user": "U1",
469
+ "text": "rollback in progress",
470
+ "ts": "1700100320.000000"
471
+ },
472
+ {
473
+ "user": "U2",
474
+ "text": "still seeing crashes",
475
+ "ts": "1700100330.000000"
476
+ },
477
+ {
478
+ "user": "U3",
479
+ "text": "old image getting same crash",
480
+ "ts": "1700100340.000000"
481
+ },
482
+ {
483
+ "user": "U4",
484
+ "text": "weird",
485
+ "ts": "1700100350.000000"
486
+ },
487
+ {
488
+ "user": "U5",
489
+ "text": "looking at the chart values diff",
490
+ "ts": "1700100360.000000"
491
+ },
492
+ {
493
+ "user": "U6",
494
+ "text": "the new values bumped requests but not limits",
495
+ "ts": "1700100370.000000"
496
+ },
497
+ {
498
+ "user": "U7",
499
+ "text": "wait what changed exactly",
500
+ "ts": "1700100380.000000"
501
+ },
502
+ {
503
+ "user": "U8",
504
+ "text": "let me pull up the diff",
505
+ "ts": "1700100390.000000"
506
+ },
507
+ {
508
+ "user": "U1",
509
+ "text": "helm chart memory limit too low caused oom kill on pod startup",
510
+ "ts": "1700100400.000000"
511
+ },
512
+ {
513
+ "user": "U2",
514
+ "text": "confirmed: helm chart memory limit mismatch with request triggers oom kill",
515
+ "ts": "1700100410.000000"
516
+ },
517
+ {
518
+ "user": "U3",
519
+ "text": "patching the chart",
520
+ "ts": "1700100420.000000"
521
+ },
522
+ {
523
+ "user": "U4",
524
+ "text": "redeploy",
525
+ "ts": "1700100430.000000"
526
+ },
527
+ {
528
+ "user": "U5",
529
+ "text": "green",
530
+ "ts": "1700100440.000000"
531
+ },
532
+ {
533
+ "user": "U6",
534
+ "text": "deploy succeeded",
535
+ "ts": "1700100450.000000"
536
+ },
537
+ {
538
+ "user": "U7",
539
+ "text": "great recovery",
540
+ "ts": "1700100460.000000"
541
+ },
542
+ {
543
+ "user": "U8",
544
+ "text": "drink anyone",
545
+ "ts": "1700100470.000000"
546
+ },
547
+ {
548
+ "user": "U1",
549
+ "text": "yes please",
550
+ "ts": "1700100480.000000"
551
+ },
552
+ {
553
+ "user": "U2",
554
+ "text": "I am in",
555
+ "ts": "1700100490.000000"
556
+ },
557
+ {
558
+ "user": "U3",
559
+ "text": "bar across the street",
560
+ "ts": "1700100500.000000"
561
+ },
562
+ {
563
+ "user": "U4",
564
+ "text": "see you at six",
565
+ "ts": "1700100510.000000"
566
+ },
567
+ {
568
+ "user": "U5",
569
+ "text": "I will be late",
570
+ "ts": "1700100520.000000"
571
+ },
572
+ {
573
+ "user": "U6",
574
+ "text": "no worries",
575
+ "ts": "1700100530.000000"
576
+ },
577
+ {
578
+ "user": "U7",
579
+ "text": "see you",
580
+ "ts": "1700100540.000000"
581
+ },
582
+ {
583
+ "user": "U8",
584
+ "text": "later",
585
+ "ts": "1700100550.000000"
586
+ }
587
+ ]
588
+ },
589
+ {
590
+ "id": "S03-incident",
591
+ "channel": "C-incidents",
592
+ "query": "stripe payment api third party outage",
593
+ "answer_ts": [
594
+ "1700200300.000000",
595
+ "1700200310.000000"
596
+ ],
597
+ "transcript": [
598
+ {
599
+ "user": "U1",
600
+ "text": "morning",
601
+ "ts": "1700200001.000000"
602
+ },
603
+ {
604
+ "user": "U2",
605
+ "text": "morning",
606
+ "ts": "1700200010.000000"
607
+ },
608
+ {
609
+ "user": "U3",
610
+ "text": "great weekend",
611
+ "ts": "1700200020.000000"
612
+ },
613
+ {
614
+ "user": "U4",
615
+ "text": "yes had a hike",
616
+ "ts": "1700200030.000000"
617
+ },
618
+ {
619
+ "user": "U5",
620
+ "text": "sprint review at ten",
621
+ "ts": "1700200040.000000"
622
+ },
623
+ {
624
+ "user": "U6",
625
+ "text": "ack",
626
+ "ts": "1700200050.000000"
627
+ },
628
+ {
629
+ "user": "U7",
630
+ "text": "design team posted new mocks",
631
+ "ts": "1700200060.000000"
632
+ },
633
+ {
634
+ "user": "U8",
635
+ "text": "looking now",
636
+ "ts": "1700200070.000000"
637
+ },
638
+ {
639
+ "user": "U1",
640
+ "text": "office snacks restocked",
641
+ "ts": "1700200080.000000"
642
+ },
643
+ {
644
+ "user": "U2",
645
+ "text": "finally",
646
+ "ts": "1700200090.000000"
647
+ },
648
+ {
649
+ "user": "U3",
650
+ "text": "anyone going to the meetup tonight",
651
+ "ts": "1700200100.000000"
652
+ },
653
+ {
654
+ "user": "U4",
655
+ "text": "I am",
656
+ "ts": "1700200110.000000"
657
+ },
658
+ {
659
+ "user": "U5",
660
+ "text": "me too",
661
+ "ts": "1700200120.000000"
662
+ },
663
+ {
664
+ "user": "U6",
665
+ "text": "see you there",
666
+ "ts": "1700200130.000000"
667
+ },
668
+ {
669
+ "user": "U7",
670
+ "text": "support tickets spiking from billing",
671
+ "ts": "1700200200.000000"
672
+ },
673
+ {
674
+ "user": "U8",
675
+ "text": "users say payments not going through",
676
+ "ts": "1700200210.000000"
677
+ },
678
+ {
679
+ "user": "U1",
680
+ "text": "checking our dashboards",
681
+ "ts": "1700200220.000000"
682
+ },
683
+ {
684
+ "user": "U2",
685
+ "text": "checkout success rate down sixty percent",
686
+ "ts": "1700200230.000000"
687
+ },
688
+ {
689
+ "user": "U3",
690
+ "text": "logs showing 502 from upstream",
691
+ "ts": "1700200240.000000"
692
+ },
693
+ {
694
+ "user": "U4",
695
+ "text": "checking which upstream",
696
+ "ts": "1700200250.000000"
697
+ },
698
+ {
699
+ "user": "U5",
700
+ "text": "the billing upstream",
701
+ "ts": "1700200260.000000"
702
+ },
703
+ {
704
+ "user": "U6",
705
+ "text": "checking status page",
706
+ "ts": "1700200270.000000"
707
+ },
708
+ {
709
+ "user": "U7",
710
+ "text": "loading",
711
+ "ts": "1700200280.000000"
712
+ },
713
+ {
714
+ "user": "U8",
715
+ "text": "yep elevated errors reported",
716
+ "ts": "1700200290.000000"
717
+ },
718
+ {
719
+ "user": "U1",
720
+ "text": "stripe payment api third party outage causing failed charges",
721
+ "ts": "1700200300.000000"
722
+ },
723
+ {
724
+ "user": "U2",
725
+ "text": "confirmed: third party stripe payment api outage on their side not us",
726
+ "ts": "1700200310.000000"
727
+ },
728
+ {
729
+ "user": "U3",
730
+ "text": "post status banner on our site",
731
+ "ts": "1700200320.000000"
732
+ },
733
+ {
734
+ "user": "U4",
735
+ "text": "banner up",
736
+ "ts": "1700200330.000000"
737
+ },
738
+ {
739
+ "user": "U5",
740
+ "text": "support team has the comms",
741
+ "ts": "1700200340.000000"
742
+ },
743
+ {
744
+ "user": "U6",
745
+ "text": "fix in thirty minutes",
746
+ "ts": "1700200350.000000"
747
+ },
748
+ {
749
+ "user": "U7",
750
+ "text": "watching",
751
+ "ts": "1700200360.000000"
752
+ },
753
+ {
754
+ "user": "U8",
755
+ "text": "success rate climbing back",
756
+ "ts": "1700200370.000000"
757
+ },
758
+ {
759
+ "user": "U1",
760
+ "text": "back to normal",
761
+ "ts": "1700200380.000000"
762
+ },
763
+ {
764
+ "user": "U2",
765
+ "text": "removing banner",
766
+ "ts": "1700200390.000000"
767
+ },
768
+ {
769
+ "user": "U3",
770
+ "text": "great",
771
+ "ts": "1700200400.000000"
772
+ },
773
+ {
774
+ "user": "U4",
775
+ "text": "lunch",
776
+ "ts": "1700200410.000000"
777
+ },
778
+ {
779
+ "user": "U5",
780
+ "text": "yes please",
781
+ "ts": "1700200420.000000"
782
+ },
783
+ {
784
+ "user": "U6",
785
+ "text": "the tacos place",
786
+ "ts": "1700200430.000000"
787
+ },
788
+ {
789
+ "user": "U7",
790
+ "text": "in",
791
+ "ts": "1700200440.000000"
792
+ },
793
+ {
794
+ "user": "U8",
795
+ "text": "in",
796
+ "ts": "1700200450.000000"
797
+ },
798
+ {
799
+ "user": "U1",
800
+ "text": "leaving now",
801
+ "ts": "1700200460.000000"
802
+ },
803
+ {
804
+ "user": "U2",
805
+ "text": "right behind you",
806
+ "ts": "1700200470.000000"
807
+ },
808
+ {
809
+ "user": "U3",
810
+ "text": "back from lunch",
811
+ "ts": "1700200480.000000"
812
+ },
813
+ {
814
+ "user": "U4",
815
+ "text": "same",
816
+ "ts": "1700200490.000000"
817
+ },
818
+ {
819
+ "user": "U5",
820
+ "text": "afternoon focus block",
821
+ "ts": "1700200500.000000"
822
+ },
823
+ {
824
+ "user": "U6",
825
+ "text": "headphones on",
826
+ "ts": "1700200510.000000"
827
+ },
828
+ {
829
+ "user": "U7",
830
+ "text": "do not disturb",
831
+ "ts": "1700200520.000000"
832
+ },
833
+ {
834
+ "user": "U8",
835
+ "text": "shipping the auth refactor today",
836
+ "ts": "1700200530.000000"
837
+ },
838
+ {
839
+ "user": "U1",
840
+ "text": "good luck",
841
+ "ts": "1700200540.000000"
842
+ },
843
+ {
844
+ "user": "U2",
845
+ "text": "drinks at six",
846
+ "ts": "1700200550.000000"
847
+ },
848
+ {
849
+ "user": "U3",
850
+ "text": "see you",
851
+ "ts": "1700200560.000000"
852
+ }
853
+ ]
854
+ },
855
+ {
856
+ "id": "S04-incident",
857
+ "channel": "C-incidents",
858
+ "query": "jwt token expiry session logout bug",
859
+ "answer_ts": [
860
+ "1700300300.000000",
861
+ "1700300310.000000"
862
+ ],
863
+ "transcript": [
864
+ {
865
+ "user": "U1",
866
+ "text": "hello team",
867
+ "ts": "1700300001.000000"
868
+ },
869
+ {
870
+ "user": "U2",
871
+ "text": "hi",
872
+ "ts": "1700300010.000000"
873
+ },
874
+ {
875
+ "user": "U3",
876
+ "text": "any plans for the long weekend",
877
+ "ts": "1700300020.000000"
878
+ },
879
+ {
880
+ "user": "U4",
881
+ "text": "camping",
882
+ "ts": "1700300030.000000"
883
+ },
884
+ {
885
+ "user": "U5",
886
+ "text": "sounds great",
887
+ "ts": "1700300040.000000"
888
+ },
889
+ {
890
+ "user": "U6",
891
+ "text": "I am staying in",
892
+ "ts": "1700300050.000000"
893
+ },
894
+ {
895
+ "user": "U7",
896
+ "text": "weekly retro at two pm",
897
+ "ts": "1700300060.000000"
898
+ },
899
+ {
900
+ "user": "U8",
901
+ "text": "ack",
902
+ "ts": "1700300070.000000"
903
+ },
904
+ {
905
+ "user": "U1",
906
+ "text": "the new chairs arrived",
907
+ "ts": "1700300080.000000"
908
+ },
909
+ {
910
+ "user": "U2",
911
+ "text": "very comfortable",
912
+ "ts": "1700300090.000000"
913
+ },
914
+ {
915
+ "user": "U3",
916
+ "text": "engineering newsletter is out",
917
+ "ts": "1700300100.000000"
918
+ },
919
+ {
920
+ "user": "U4",
921
+ "text": "good read",
922
+ "ts": "1700300110.000000"
923
+ },
924
+ {
925
+ "user": "U5",
926
+ "text": "interview at eleven",
927
+ "ts": "1700300120.000000"
928
+ },
929
+ {
930
+ "user": "U6",
931
+ "text": "good luck",
932
+ "ts": "1700300130.000000"
933
+ },
934
+ {
935
+ "user": "U7",
936
+ "text": "thanks",
937
+ "ts": "1700300140.000000"
938
+ },
939
+ {
940
+ "user": "U8",
941
+ "text": "I am running late",
942
+ "ts": "1700300150.000000"
943
+ },
944
+ {
945
+ "user": "U1",
946
+ "text": "no worries",
947
+ "ts": "1700300160.000000"
948
+ },
949
+ {
950
+ "user": "U2",
951
+ "text": "support pinging us about logouts",
952
+ "ts": "1700300200.000000"
953
+ },
954
+ {
955
+ "user": "U3",
956
+ "text": "users complaining they get logged out every few minutes",
957
+ "ts": "1700300210.000000"
958
+ },
959
+ {
960
+ "user": "U4",
961
+ "text": "started after this morning release",
962
+ "ts": "1700300220.000000"
963
+ },
964
+ {
965
+ "user": "U5",
966
+ "text": "checking the auth service",
967
+ "ts": "1700300230.000000"
968
+ },
969
+ {
970
+ "user": "U6",
971
+ "text": "session table looks fine",
972
+ "ts": "1700300240.000000"
973
+ },
974
+ {
975
+ "user": "U7",
976
+ "text": "could be expiry",
977
+ "ts": "1700300250.000000"
978
+ },
979
+ {
980
+ "user": "U8",
981
+ "text": "we changed something earlier",
982
+ "ts": "1700300260.000000"
983
+ },
984
+ {
985
+ "user": "U1",
986
+ "text": "from twenty four hours to what",
987
+ "ts": "1700300270.000000"
988
+ },
989
+ {
990
+ "user": "U2",
991
+ "text": "by mistake",
992
+ "ts": "1700300280.000000"
993
+ },
994
+ {
995
+ "user": "U3",
996
+ "text": "found it",
997
+ "ts": "1700300290.000000"
998
+ },
999
+ {
1000
+ "user": "U4",
1001
+ "text": "auth bug: jwt token expiry set to five minutes causing session logout loop",
1002
+ "ts": "1700300300.000000"
1003
+ },
1004
+ {
1005
+ "user": "U5",
1006
+ "text": "confirmed jwt token expiry typo is the auth bug behind the session logout storm",
1007
+ "ts": "1700300310.000000"
1008
+ },
1009
+ {
1010
+ "user": "U6",
1011
+ "text": "patching now",
1012
+ "ts": "1700300320.000000"
1013
+ },
1014
+ {
1015
+ "user": "U7",
1016
+ "text": "deployed",
1017
+ "ts": "1700300330.000000"
1018
+ },
1019
+ {
1020
+ "user": "U8",
1021
+ "text": "logouts stopped",
1022
+ "ts": "1700300340.000000"
1023
+ },
1024
+ {
1025
+ "user": "U1",
1026
+ "text": "support confirms users stable",
1027
+ "ts": "1700300350.000000"
1028
+ },
1029
+ {
1030
+ "user": "U2",
1031
+ "text": "good catch",
1032
+ "ts": "1700300360.000000"
1033
+ },
1034
+ {
1035
+ "user": "U3",
1036
+ "text": "writing it up",
1037
+ "ts": "1700300370.000000"
1038
+ },
1039
+ {
1040
+ "user": "U4",
1041
+ "text": "tea break",
1042
+ "ts": "1700300380.000000"
1043
+ },
1044
+ {
1045
+ "user": "U5",
1046
+ "text": "join you",
1047
+ "ts": "1700300390.000000"
1048
+ },
1049
+ {
1050
+ "user": "U6",
1051
+ "text": "back",
1052
+ "ts": "1700300400.000000"
1053
+ },
1054
+ {
1055
+ "user": "U7",
1056
+ "text": "afternoon standup in five",
1057
+ "ts": "1700300410.000000"
1058
+ },
1059
+ {
1060
+ "user": "U8",
1061
+ "text": "ok",
1062
+ "ts": "1700300420.000000"
1063
+ },
1064
+ {
1065
+ "user": "U1",
1066
+ "text": "all calm here",
1067
+ "ts": "1700300430.000000"
1068
+ },
1069
+ {
1070
+ "user": "U2",
1071
+ "text": "same",
1072
+ "ts": "1700300440.000000"
1073
+ },
1074
+ {
1075
+ "user": "U3",
1076
+ "text": "sprint demo prep",
1077
+ "ts": "1700300450.000000"
1078
+ },
1079
+ {
1080
+ "user": "U4",
1081
+ "text": "I will record screens",
1082
+ "ts": "1700300460.000000"
1083
+ },
1084
+ {
1085
+ "user": "U5",
1086
+ "text": "thanks",
1087
+ "ts": "1700300470.000000"
1088
+ },
1089
+ {
1090
+ "user": "U6",
1091
+ "text": "wrapping up",
1092
+ "ts": "1700300480.000000"
1093
+ },
1094
+ {
1095
+ "user": "U7",
1096
+ "text": "see you tomorrow",
1097
+ "ts": "1700300490.000000"
1098
+ },
1099
+ {
1100
+ "user": "U8",
1101
+ "text": "have a good night",
1102
+ "ts": "1700300500.000000"
1103
+ },
1104
+ {
1105
+ "user": "U1",
1106
+ "text": "you too",
1107
+ "ts": "1700300510.000000"
1108
+ }
1109
+ ]
1110
+ },
1111
+ {
1112
+ "id": "S05-incident",
1113
+ "channel": "C-incidents",
1114
+ "query": "search endpoint elasticsearch missing index latency regression",
1115
+ "answer_ts": [
1116
+ "1700400300.000000",
1117
+ "1700400310.000000"
1118
+ ],
1119
+ "transcript": [
1120
+ {
1121
+ "user": "U1",
1122
+ "text": "hi",
1123
+ "ts": "1700400001.000000"
1124
+ },
1125
+ {
1126
+ "user": "U2",
1127
+ "text": "hi",
1128
+ "ts": "1700400010.000000"
1129
+ },
1130
+ {
1131
+ "user": "U3",
1132
+ "text": "weekend recap thread",
1133
+ "ts": "1700400020.000000"
1134
+ },
1135
+ {
1136
+ "user": "U4",
1137
+ "text": "watched a movie",
1138
+ "ts": "1700400030.000000"
1139
+ },
1140
+ {
1141
+ "user": "U5",
1142
+ "text": "which one",
1143
+ "ts": "1700400040.000000"
1144
+ },
1145
+ {
1146
+ "user": "U6",
1147
+ "text": "the new sci fi one",
1148
+ "ts": "1700400050.000000"
1149
+ },
1150
+ {
1151
+ "user": "U7",
1152
+ "text": "any good",
1153
+ "ts": "1700400060.000000"
1154
+ },
1155
+ {
1156
+ "user": "U8",
1157
+ "text": "decent",
1158
+ "ts": "1700400070.000000"
1159
+ },
1160
+ {
1161
+ "user": "U1",
1162
+ "text": "review session at eleven",
1163
+ "ts": "1700400080.000000"
1164
+ },
1165
+ {
1166
+ "user": "U2",
1167
+ "text": "sec",
1168
+ "ts": "1700400090.000000"
1169
+ },
1170
+ {
1171
+ "user": "U3",
1172
+ "text": "back",
1173
+ "ts": "1700400100.000000"
1174
+ },
1175
+ {
1176
+ "user": "U4",
1177
+ "text": "did the npm upgrade go ok yesterday",
1178
+ "ts": "1700400110.000000"
1179
+ },
1180
+ {
1181
+ "user": "U5",
1182
+ "text": "yes mostly",
1183
+ "ts": "1700400120.000000"
1184
+ },
1185
+ {
1186
+ "user": "U6",
1187
+ "text": "any flakes",
1188
+ "ts": "1700400130.000000"
1189
+ },
1190
+ {
1191
+ "user": "U7",
1192
+ "text": "two tests rerun green",
1193
+ "ts": "1700400140.000000"
1194
+ },
1195
+ {
1196
+ "user": "U8",
1197
+ "text": "ok",
1198
+ "ts": "1700400150.000000"
1199
+ },
1200
+ {
1201
+ "user": "U1",
1202
+ "text": "lunch in thirty",
1203
+ "ts": "1700400160.000000"
1204
+ },
1205
+ {
1206
+ "user": "U2",
1207
+ "text": "going to the gym first",
1208
+ "ts": "1700400170.000000"
1209
+ },
1210
+ {
1211
+ "user": "U3",
1212
+ "text": "queries slow this afternoon",
1213
+ "ts": "1700400200.000000"
1214
+ },
1215
+ {
1216
+ "user": "U4",
1217
+ "text": "p99 jumped from 200ms to 4 seconds",
1218
+ "ts": "1700400210.000000"
1219
+ },
1220
+ {
1221
+ "user": "U5",
1222
+ "text": "users complaining",
1223
+ "ts": "1700400220.000000"
1224
+ },
1225
+ {
1226
+ "user": "U6",
1227
+ "text": "looking at flame graphs",
1228
+ "ts": "1700400230.000000"
1229
+ },
1230
+ {
1231
+ "user": "U7",
1232
+ "text": "cpu high upstream",
1233
+ "ts": "1700400240.000000"
1234
+ },
1235
+ {
1236
+ "user": "U8",
1237
+ "text": "any recent changes",
1238
+ "ts": "1700400250.000000"
1239
+ },
1240
+ {
1241
+ "user": "U1",
1242
+ "text": "we deployed a new feature this morning",
1243
+ "ts": "1700400260.000000"
1244
+ },
1245
+ {
1246
+ "user": "U2",
1247
+ "text": "with sort by score plus recency",
1248
+ "ts": "1700400270.000000"
1249
+ },
1250
+ {
1251
+ "user": "U3",
1252
+ "text": "full text scoring on every doc",
1253
+ "ts": "1700400280.000000"
1254
+ },
1255
+ {
1256
+ "user": "U4",
1257
+ "text": "missing index",
1258
+ "ts": "1700400290.000000"
1259
+ },
1260
+ {
1261
+ "user": "U5",
1262
+ "text": "search endpoint latency regression caused by missing elasticsearch index",
1263
+ "ts": "1700400300.000000"
1264
+ },
1265
+ {
1266
+ "user": "U6",
1267
+ "text": "confirmed: missing elasticsearch index on search endpoint is the latency regression root cause",
1268
+ "ts": "1700400310.000000"
1269
+ },
1270
+ {
1271
+ "user": "U7",
1272
+ "text": "creating it",
1273
+ "ts": "1700400320.000000"
1274
+ },
1275
+ {
1276
+ "user": "U8",
1277
+ "text": "built",
1278
+ "ts": "1700400330.000000"
1279
+ },
1280
+ {
1281
+ "user": "U1",
1282
+ "text": "p99 back to 250ms",
1283
+ "ts": "1700400340.000000"
1284
+ },
1285
+ {
1286
+ "user": "U2",
1287
+ "text": "great",
1288
+ "ts": "1700400350.000000"
1289
+ },
1290
+ {
1291
+ "user": "U3",
1292
+ "text": "ship it",
1293
+ "ts": "1700400360.000000"
1294
+ },
1295
+ {
1296
+ "user": "U4",
1297
+ "text": "writeup tomorrow",
1298
+ "ts": "1700400370.000000"
1299
+ },
1300
+ {
1301
+ "user": "U5",
1302
+ "text": "early dinner",
1303
+ "ts": "1700400380.000000"
1304
+ },
1305
+ {
1306
+ "user": "U6",
1307
+ "text": "yep",
1308
+ "ts": "1700400390.000000"
1309
+ },
1310
+ {
1311
+ "user": "U7",
1312
+ "text": "cya",
1313
+ "ts": "1700400400.000000"
1314
+ },
1315
+ {
1316
+ "user": "U8",
1317
+ "text": "later",
1318
+ "ts": "1700400410.000000"
1319
+ },
1320
+ {
1321
+ "user": "U1",
1322
+ "text": "morning check in",
1323
+ "ts": "1700400420.000000"
1324
+ },
1325
+ {
1326
+ "user": "U2",
1327
+ "text": "all calm",
1328
+ "ts": "1700400430.000000"
1329
+ },
1330
+ {
1331
+ "user": "U3",
1332
+ "text": "no alerts",
1333
+ "ts": "1700400440.000000"
1334
+ },
1335
+ {
1336
+ "user": "U4",
1337
+ "text": "good",
1338
+ "ts": "1700400450.000000"
1339
+ },
1340
+ {
1341
+ "user": "U5",
1342
+ "text": "moving on to the next ticket",
1343
+ "ts": "1700400460.000000"
1344
+ },
1345
+ {
1346
+ "user": "U6",
1347
+ "text": "ack",
1348
+ "ts": "1700400470.000000"
1349
+ },
1350
+ {
1351
+ "user": "U7",
1352
+ "text": "wrap up",
1353
+ "ts": "1700400480.000000"
1354
+ }
1355
+ ]
1356
+ },
1357
+ {
1358
+ "id": "S06-incident",
1359
+ "channel": "C-incidents",
1360
+ "query": "feature flag config production push staging mistake",
1361
+ "answer_ts": [
1362
+ "1700500300.000000",
1363
+ "1700500310.000000"
1364
+ ],
1365
+ "transcript": [
1366
+ {
1367
+ "user": "U1",
1368
+ "text": "morning all",
1369
+ "ts": "1700500001.000000"
1370
+ },
1371
+ {
1372
+ "user": "U2",
1373
+ "text": "morning",
1374
+ "ts": "1700500010.000000"
1375
+ },
1376
+ {
1377
+ "user": "U3",
1378
+ "text": "did anyone catch the game",
1379
+ "ts": "1700500020.000000"
1380
+ },
1381
+ {
1382
+ "user": "U4",
1383
+ "text": "great match",
1384
+ "ts": "1700500030.000000"
1385
+ },
1386
+ {
1387
+ "user": "U5",
1388
+ "text": "sprint planning at ten",
1389
+ "ts": "1700500040.000000"
1390
+ },
1391
+ {
1392
+ "user": "U6",
1393
+ "text": "I will be there",
1394
+ "ts": "1700500050.000000"
1395
+ },
1396
+ {
1397
+ "user": "U7",
1398
+ "text": "snack stash refilled",
1399
+ "ts": "1700500060.000000"
1400
+ },
1401
+ {
1402
+ "user": "U8",
1403
+ "text": "thank god",
1404
+ "ts": "1700500070.000000"
1405
+ },
1406
+ {
1407
+ "user": "U1",
1408
+ "text": "running our weekly cleanup",
1409
+ "ts": "1700500080.000000"
1410
+ },
1411
+ {
1412
+ "user": "U2",
1413
+ "text": "need help with anything",
1414
+ "ts": "1700500090.000000"
1415
+ },
1416
+ {
1417
+ "user": "U3",
1418
+ "text": "I got it",
1419
+ "ts": "1700500100.000000"
1420
+ },
1421
+ {
1422
+ "user": "U4",
1423
+ "text": "thanks",
1424
+ "ts": "1700500110.000000"
1425
+ },
1426
+ {
1427
+ "user": "U5",
1428
+ "text": "design reviews this afternoon",
1429
+ "ts": "1700500120.000000"
1430
+ },
1431
+ {
1432
+ "user": "U6",
1433
+ "text": "ok",
1434
+ "ts": "1700500130.000000"
1435
+ },
1436
+ {
1437
+ "user": "U7",
1438
+ "text": "one on one in five",
1439
+ "ts": "1700500140.000000"
1440
+ },
1441
+ {
1442
+ "user": "U8",
1443
+ "text": "sec",
1444
+ "ts": "1700500150.000000"
1445
+ },
1446
+ {
1447
+ "user": "U1",
1448
+ "text": "users seeing weird ui changes",
1449
+ "ts": "1700500200.000000"
1450
+ },
1451
+ {
1452
+ "user": "U2",
1453
+ "text": "what kind",
1454
+ "ts": "1700500210.000000"
1455
+ },
1456
+ {
1457
+ "user": "U3",
1458
+ "text": "experimental beta features showing up for everyone",
1459
+ "ts": "1700500220.000000"
1460
+ },
1461
+ {
1462
+ "user": "U4",
1463
+ "text": "checking",
1464
+ "ts": "1700500230.000000"
1465
+ },
1466
+ {
1467
+ "user": "U5",
1468
+ "text": "checking flag rollout",
1469
+ "ts": "1700500240.000000"
1470
+ },
1471
+ {
1472
+ "user": "U6",
1473
+ "text": "all flags showing one hundred percent",
1474
+ "ts": "1700500250.000000"
1475
+ },
1476
+ {
1477
+ "user": "U7",
1478
+ "text": "should be five percent or off",
1479
+ "ts": "1700500260.000000"
1480
+ },
1481
+ {
1482
+ "user": "U8",
1483
+ "text": "git log on the repo",
1484
+ "ts": "1700500270.000000"
1485
+ },
1486
+ {
1487
+ "user": "U1",
1488
+ "text": "someone pushed",
1489
+ "ts": "1700500280.000000"
1490
+ },
1491
+ {
1492
+ "user": "U2",
1493
+ "text": "checking who",
1494
+ "ts": "1700500290.000000"
1495
+ },
1496
+ {
1497
+ "user": "U3",
1498
+ "text": "feature flag config push from staging branch landed on production by mistake",
1499
+ "ts": "1700500300.000000"
1500
+ },
1501
+ {
1502
+ "user": "U4",
1503
+ "text": "confirmed: staging feature flag config pushed to production main is the mistake",
1504
+ "ts": "1700500310.000000"
1505
+ },
1506
+ {
1507
+ "user": "U5",
1508
+ "text": "reverting",
1509
+ "ts": "1700500320.000000"
1510
+ },
1511
+ {
1512
+ "user": "U6",
1513
+ "text": "revert merged",
1514
+ "ts": "1700500330.000000"
1515
+ },
1516
+ {
1517
+ "user": "U7",
1518
+ "text": "back to normal",
1519
+ "ts": "1700500340.000000"
1520
+ },
1521
+ {
1522
+ "user": "U8",
1523
+ "text": "support team notified",
1524
+ "ts": "1700500350.000000"
1525
+ },
1526
+ {
1527
+ "user": "U1",
1528
+ "text": "writing up the postmortem",
1529
+ "ts": "1700500360.000000"
1530
+ },
1531
+ {
1532
+ "user": "U2",
1533
+ "text": "we should add a ci check",
1534
+ "ts": "1700500370.000000"
1535
+ },
1536
+ {
1537
+ "user": "U3",
1538
+ "text": "agreed",
1539
+ "ts": "1700500380.000000"
1540
+ },
1541
+ {
1542
+ "user": "U4",
1543
+ "text": "filing the ticket",
1544
+ "ts": "1700500390.000000"
1545
+ },
1546
+ {
1547
+ "user": "U5",
1548
+ "text": "afternoon work focus",
1549
+ "ts": "1700500400.000000"
1550
+ },
1551
+ {
1552
+ "user": "U6",
1553
+ "text": "back to work",
1554
+ "ts": "1700500410.000000"
1555
+ },
1556
+ {
1557
+ "user": "U7",
1558
+ "text": "shipping my pr",
1559
+ "ts": "1700500420.000000"
1560
+ },
1561
+ {
1562
+ "user": "U8",
1563
+ "text": "review please",
1564
+ "ts": "1700500430.000000"
1565
+ },
1566
+ {
1567
+ "user": "U1",
1568
+ "text": "looking",
1569
+ "ts": "1700500440.000000"
1570
+ },
1571
+ {
1572
+ "user": "U2",
1573
+ "text": "lgtm",
1574
+ "ts": "1700500450.000000"
1575
+ },
1576
+ {
1577
+ "user": "U3",
1578
+ "text": "merging",
1579
+ "ts": "1700500460.000000"
1580
+ },
1581
+ {
1582
+ "user": "U4",
1583
+ "text": "deployed",
1584
+ "ts": "1700500470.000000"
1585
+ },
1586
+ {
1587
+ "user": "U5",
1588
+ "text": "great",
1589
+ "ts": "1700500480.000000"
1590
+ },
1591
+ {
1592
+ "user": "U6",
1593
+ "text": "going home",
1594
+ "ts": "1700500490.000000"
1595
+ },
1596
+ {
1597
+ "user": "U7",
1598
+ "text": "good night",
1599
+ "ts": "1700500500.000000"
1600
+ }
1601
+ ]
1602
+ },
1603
+ {
1604
+ "id": "S07-incident",
1605
+ "channel": "C-incidents",
1606
+ "query": "ssl tls certificate expired certbot renewal",
1607
+ "answer_ts": [
1608
+ "1700600300.000000",
1609
+ "1700600310.000000"
1610
+ ],
1611
+ "transcript": [
1612
+ {
1613
+ "user": "U1",
1614
+ "text": "morning team",
1615
+ "ts": "1700600001.000000"
1616
+ },
1617
+ {
1618
+ "user": "U2",
1619
+ "text": "morning",
1620
+ "ts": "1700600010.000000"
1621
+ },
1622
+ {
1623
+ "user": "U3",
1624
+ "text": "tea",
1625
+ "ts": "1700600020.000000"
1626
+ },
1627
+ {
1628
+ "user": "U4",
1629
+ "text": "yes thanks",
1630
+ "ts": "1700600030.000000"
1631
+ },
1632
+ {
1633
+ "user": "U5",
1634
+ "text": "any updates from yesterday",
1635
+ "ts": "1700600040.000000"
1636
+ },
1637
+ {
1638
+ "user": "U6",
1639
+ "text": "all green",
1640
+ "ts": "1700600050.000000"
1641
+ },
1642
+ {
1643
+ "user": "U7",
1644
+ "text": "engineering all hands at two",
1645
+ "ts": "1700600060.000000"
1646
+ },
1647
+ {
1648
+ "user": "U8",
1649
+ "text": "ack",
1650
+ "ts": "1700600070.000000"
1651
+ },
1652
+ {
1653
+ "user": "U1",
1654
+ "text": "the office plant looks sad",
1655
+ "ts": "1700600080.000000"
1656
+ },
1657
+ {
1658
+ "user": "U2",
1659
+ "text": "watering it",
1660
+ "ts": "1700600090.000000"
1661
+ },
1662
+ {
1663
+ "user": "U3",
1664
+ "text": "bug bash on friday reminder",
1665
+ "ts": "1700600100.000000"
1666
+ },
1667
+ {
1668
+ "user": "U4",
1669
+ "text": "putting it on calendar",
1670
+ "ts": "1700600110.000000"
1671
+ },
1672
+ {
1673
+ "user": "U5",
1674
+ "text": "lunch options",
1675
+ "ts": "1700600120.000000"
1676
+ },
1677
+ {
1678
+ "user": "U6",
1679
+ "text": "salads or burgers",
1680
+ "ts": "1700600130.000000"
1681
+ },
1682
+ {
1683
+ "user": "U7",
1684
+ "text": "burgers",
1685
+ "ts": "1700600140.000000"
1686
+ },
1687
+ {
1688
+ "user": "U8",
1689
+ "text": "salads",
1690
+ "ts": "1700600150.000000"
1691
+ },
1692
+ {
1693
+ "user": "U1",
1694
+ "text": "alerts firing on api endpoint",
1695
+ "ts": "1700600200.000000"
1696
+ },
1697
+ {
1698
+ "user": "U2",
1699
+ "text": "what kind",
1700
+ "ts": "1700600210.000000"
1701
+ },
1702
+ {
1703
+ "user": "U3",
1704
+ "text": "client connections failing",
1705
+ "ts": "1700600220.000000"
1706
+ },
1707
+ {
1708
+ "user": "U4",
1709
+ "text": "users seeing connection refused errors",
1710
+ "ts": "1700600230.000000"
1711
+ },
1712
+ {
1713
+ "user": "U5",
1714
+ "text": "openssl s_client check",
1715
+ "ts": "1700600240.000000"
1716
+ },
1717
+ {
1718
+ "user": "U6",
1719
+ "text": "running it",
1720
+ "ts": "1700600250.000000"
1721
+ },
1722
+ {
1723
+ "user": "U7",
1724
+ "text": "verify return code ten cert has expired",
1725
+ "ts": "1700600260.000000"
1726
+ },
1727
+ {
1728
+ "user": "U8",
1729
+ "text": "the cert",
1730
+ "ts": "1700600270.000000"
1731
+ },
1732
+ {
1733
+ "user": "U1",
1734
+ "text": "auto renew not set up",
1735
+ "ts": "1700600280.000000"
1736
+ },
1737
+ {
1738
+ "user": "U2",
1739
+ "text": "checking",
1740
+ "ts": "1700600290.000000"
1741
+ },
1742
+ {
1743
+ "user": "U3",
1744
+ "text": "ssl tls certificate expired and certbot renewal disabled three months ago",
1745
+ "ts": "1700600300.000000"
1746
+ },
1747
+ {
1748
+ "user": "U4",
1749
+ "text": "confirmed ssl tls certificate expiry: certbot renewal job stopped, issuing new cert now",
1750
+ "ts": "1700600310.000000"
1751
+ },
1752
+ {
1753
+ "user": "U5",
1754
+ "text": "issuing",
1755
+ "ts": "1700600320.000000"
1756
+ },
1757
+ {
1758
+ "user": "U6",
1759
+ "text": "installed",
1760
+ "ts": "1700600330.000000"
1761
+ },
1762
+ {
1763
+ "user": "U7",
1764
+ "text": "lb reloaded",
1765
+ "ts": "1700600340.000000"
1766
+ },
1767
+ {
1768
+ "user": "U8",
1769
+ "text": "errors gone",
1770
+ "ts": "1700600350.000000"
1771
+ },
1772
+ {
1773
+ "user": "U1",
1774
+ "text": "re enabling renewal job",
1775
+ "ts": "1700600360.000000"
1776
+ },
1777
+ {
1778
+ "user": "U2",
1779
+ "text": "auto renew restored",
1780
+ "ts": "1700600370.000000"
1781
+ },
1782
+ {
1783
+ "user": "U3",
1784
+ "text": "filing followup",
1785
+ "ts": "1700600380.000000"
1786
+ },
1787
+ {
1788
+ "user": "U4",
1789
+ "text": "good catch all",
1790
+ "ts": "1700600390.000000"
1791
+ },
1792
+ {
1793
+ "user": "U5",
1794
+ "text": "coffee",
1795
+ "ts": "1700600400.000000"
1796
+ },
1797
+ {
1798
+ "user": "U6",
1799
+ "text": "yes",
1800
+ "ts": "1700600410.000000"
1801
+ },
1802
+ {
1803
+ "user": "U7",
1804
+ "text": "back",
1805
+ "ts": "1700600420.000000"
1806
+ },
1807
+ {
1808
+ "user": "U8",
1809
+ "text": "afternoon focus",
1810
+ "ts": "1700600430.000000"
1811
+ },
1812
+ {
1813
+ "user": "U1",
1814
+ "text": "anyone reviewing my pr",
1815
+ "ts": "1700600440.000000"
1816
+ },
1817
+ {
1818
+ "user": "U2",
1819
+ "text": "I will",
1820
+ "ts": "1700600450.000000"
1821
+ },
1822
+ {
1823
+ "user": "U3",
1824
+ "text": "thanks",
1825
+ "ts": "1700600460.000000"
1826
+ },
1827
+ {
1828
+ "user": "U4",
1829
+ "text": "wrapping up",
1830
+ "ts": "1700600470.000000"
1831
+ },
1832
+ {
1833
+ "user": "U5",
1834
+ "text": "have a good night",
1835
+ "ts": "1700600480.000000"
1836
+ },
1837
+ {
1838
+ "user": "U6",
1839
+ "text": "you too",
1840
+ "ts": "1700600490.000000"
1841
+ }
1842
+ ]
1843
+ },
1844
+ {
1845
+ "id": "S08-incident",
1846
+ "channel": "C-incidents",
1847
+ "query": "nightly batch job warehouse partition full table scan",
1848
+ "answer_ts": [
1849
+ "1700700300.000000",
1850
+ "1700700310.000000"
1851
+ ],
1852
+ "transcript": [
1853
+ {
1854
+ "user": "U1",
1855
+ "text": "morning",
1856
+ "ts": "1700700001.000000"
1857
+ },
1858
+ {
1859
+ "user": "U2",
1860
+ "text": "morning",
1861
+ "ts": "1700700010.000000"
1862
+ },
1863
+ {
1864
+ "user": "U3",
1865
+ "text": "did anyone bring donuts",
1866
+ "ts": "1700700020.000000"
1867
+ },
1868
+ {
1869
+ "user": "U4",
1870
+ "text": "I did",
1871
+ "ts": "1700700030.000000"
1872
+ },
1873
+ {
1874
+ "user": "U5",
1875
+ "text": "thanks legend",
1876
+ "ts": "1700700040.000000"
1877
+ },
1878
+ {
1879
+ "user": "U6",
1880
+ "text": "standup in ten",
1881
+ "ts": "1700700050.000000"
1882
+ },
1883
+ {
1884
+ "user": "U7",
1885
+ "text": "ack",
1886
+ "ts": "1700700060.000000"
1887
+ },
1888
+ {
1889
+ "user": "U8",
1890
+ "text": "the new hire onboarding doc looks great",
1891
+ "ts": "1700700070.000000"
1892
+ },
1893
+ {
1894
+ "user": "U1",
1895
+ "text": "thanks",
1896
+ "ts": "1700700080.000000"
1897
+ },
1898
+ {
1899
+ "user": "U2",
1900
+ "text": "anyone want to pair on the migration ticket",
1901
+ "ts": "1700700090.000000"
1902
+ },
1903
+ {
1904
+ "user": "U3",
1905
+ "text": "I am free at three",
1906
+ "ts": "1700700100.000000"
1907
+ },
1908
+ {
1909
+ "user": "U4",
1910
+ "text": "great",
1911
+ "ts": "1700700110.000000"
1912
+ },
1913
+ {
1914
+ "user": "U5",
1915
+ "text": "test flake on main",
1916
+ "ts": "1700700120.000000"
1917
+ },
1918
+ {
1919
+ "user": "U6",
1920
+ "text": "rerunning",
1921
+ "ts": "1700700130.000000"
1922
+ },
1923
+ {
1924
+ "user": "U7",
1925
+ "text": "green",
1926
+ "ts": "1700700140.000000"
1927
+ },
1928
+ {
1929
+ "user": "U8",
1930
+ "text": "lunch",
1931
+ "ts": "1700700150.000000"
1932
+ },
1933
+ {
1934
+ "user": "U1",
1935
+ "text": "yes",
1936
+ "ts": "1700700160.000000"
1937
+ },
1938
+ {
1939
+ "user": "U2",
1940
+ "text": "salad bar across the street",
1941
+ "ts": "1700700170.000000"
1942
+ },
1943
+ {
1944
+ "user": "U3",
1945
+ "text": "alerts firing on the data store",
1946
+ "ts": "1700700200.000000"
1947
+ },
1948
+ {
1949
+ "user": "U4",
1950
+ "text": "cpu pegged at one hundred percent",
1951
+ "ts": "1700700210.000000"
1952
+ },
1953
+ {
1954
+ "user": "U5",
1955
+ "text": "running queries piling up",
1956
+ "ts": "1700700220.000000"
1957
+ },
1958
+ {
1959
+ "user": "U6",
1960
+ "text": "what is running",
1961
+ "ts": "1700700230.000000"
1962
+ },
1963
+ {
1964
+ "user": "U7",
1965
+ "text": "the aggregation cron",
1966
+ "ts": "1700700240.000000"
1967
+ },
1968
+ {
1969
+ "user": "U8",
1970
+ "text": "still going fourteen hours later",
1971
+ "ts": "1700700250.000000"
1972
+ },
1973
+ {
1974
+ "user": "U1",
1975
+ "text": "should be thirty mins normally",
1976
+ "ts": "1700700260.000000"
1977
+ },
1978
+ {
1979
+ "user": "U2",
1980
+ "text": "looking at the query plan",
1981
+ "ts": "1700700270.000000"
1982
+ },
1983
+ {
1984
+ "user": "U3",
1985
+ "text": "missing where clause",
1986
+ "ts": "1700700280.000000"
1987
+ },
1988
+ {
1989
+ "user": "U4",
1990
+ "text": "nightly batch job warehouse partition pruning lost: full table scan instead",
1991
+ "ts": "1700700300.000000"
1992
+ },
1993
+ {
1994
+ "user": "U5",
1995
+ "text": "confirmed nightly batch job doing full table scan on warehouse, partition filter dropped",
1996
+ "ts": "1700700310.000000"
1997
+ },
1998
+ {
1999
+ "user": "U6",
2000
+ "text": "killed",
2001
+ "ts": "1700700320.000000"
2002
+ },
2003
+ {
2004
+ "user": "U7",
2005
+ "text": "recovering",
2006
+ "ts": "1700700330.000000"
2007
+ },
2008
+ {
2009
+ "user": "U8",
2010
+ "text": "patching the query",
2011
+ "ts": "1700700340.000000"
2012
+ },
2013
+ {
2014
+ "user": "U1",
2015
+ "text": "patch deployed",
2016
+ "ts": "1700700350.000000"
2017
+ },
2018
+ {
2019
+ "user": "U2",
2020
+ "text": "rerun the job",
2021
+ "ts": "1700700360.000000"
2022
+ },
2023
+ {
2024
+ "user": "U3",
2025
+ "text": "completed in twenty four minutes",
2026
+ "ts": "1700700370.000000"
2027
+ },
2028
+ {
2029
+ "user": "U4",
2030
+ "text": "back to normal",
2031
+ "ts": "1700700380.000000"
2032
+ },
2033
+ {
2034
+ "user": "U5",
2035
+ "text": "great",
2036
+ "ts": "1700700390.000000"
2037
+ },
2038
+ {
2039
+ "user": "U6",
2040
+ "text": "writing it up",
2041
+ "ts": "1700700400.000000"
2042
+ },
2043
+ {
2044
+ "user": "U7",
2045
+ "text": "drinks",
2046
+ "ts": "1700700410.000000"
2047
+ },
2048
+ {
2049
+ "user": "U8",
2050
+ "text": "yes",
2051
+ "ts": "1700700420.000000"
2052
+ },
2053
+ {
2054
+ "user": "U1",
2055
+ "text": "rooftop bar",
2056
+ "ts": "1700700430.000000"
2057
+ },
2058
+ {
2059
+ "user": "U2",
2060
+ "text": "in",
2061
+ "ts": "1700700440.000000"
2062
+ },
2063
+ {
2064
+ "user": "U3",
2065
+ "text": "see you at six",
2066
+ "ts": "1700700450.000000"
2067
+ },
2068
+ {
2069
+ "user": "U4",
2070
+ "text": "running late",
2071
+ "ts": "1700700460.000000"
2072
+ },
2073
+ {
2074
+ "user": "U5",
2075
+ "text": "no rush",
2076
+ "ts": "1700700470.000000"
2077
+ },
2078
+ {
2079
+ "user": "U6",
2080
+ "text": "heading there",
2081
+ "ts": "1700700480.000000"
2082
+ },
2083
+ {
2084
+ "user": "U7",
2085
+ "text": "goodnight all",
2086
+ "ts": "1700700490.000000"
2087
+ }
2088
+ ]
2089
+ },
2090
+ {
2091
+ "id": "S09-incident",
2092
+ "channel": "C-incidents",
2093
+ "query": "missing schema migration column does not exist",
2094
+ "answer_ts": [
2095
+ "1700800300.000000",
2096
+ "1700800310.000000"
2097
+ ],
2098
+ "transcript": [
2099
+ {
2100
+ "user": "U1",
2101
+ "text": "good morning",
2102
+ "ts": "1700800001.000000"
2103
+ },
2104
+ {
2105
+ "user": "U2",
2106
+ "text": "morning",
2107
+ "ts": "1700800010.000000"
2108
+ },
2109
+ {
2110
+ "user": "U3",
2111
+ "text": "anyone watch the keynote yesterday",
2112
+ "ts": "1700800020.000000"
2113
+ },
2114
+ {
2115
+ "user": "U4",
2116
+ "text": "yes interesting",
2117
+ "ts": "1700800030.000000"
2118
+ },
2119
+ {
2120
+ "user": "U5",
2121
+ "text": "agreed",
2122
+ "ts": "1700800040.000000"
2123
+ },
2124
+ {
2125
+ "user": "U6",
2126
+ "text": "team breakfast on friday",
2127
+ "ts": "1700800050.000000"
2128
+ },
2129
+ {
2130
+ "user": "U7",
2131
+ "text": "yum",
2132
+ "ts": "1700800060.000000"
2133
+ },
2134
+ {
2135
+ "user": "U8",
2136
+ "text": "design sync at eleven",
2137
+ "ts": "1700800070.000000"
2138
+ },
2139
+ {
2140
+ "user": "U1",
2141
+ "text": "ok",
2142
+ "ts": "1700800080.000000"
2143
+ },
2144
+ {
2145
+ "user": "U2",
2146
+ "text": "pr queue is huge",
2147
+ "ts": "1700800090.000000"
2148
+ },
2149
+ {
2150
+ "user": "U3",
2151
+ "text": "lets do reviews together",
2152
+ "ts": "1700800100.000000"
2153
+ },
2154
+ {
2155
+ "user": "U4",
2156
+ "text": "good idea",
2157
+ "ts": "1700800110.000000"
2158
+ },
2159
+ {
2160
+ "user": "U5",
2161
+ "text": "office cat is back",
2162
+ "ts": "1700800120.000000"
2163
+ },
2164
+ {
2165
+ "user": "U6",
2166
+ "text": "yay",
2167
+ "ts": "1700800130.000000"
2168
+ },
2169
+ {
2170
+ "user": "U7",
2171
+ "text": "weekly metrics email",
2172
+ "ts": "1700800140.000000"
2173
+ },
2174
+ {
2175
+ "user": "U8",
2176
+ "text": "thanks",
2177
+ "ts": "1700800150.000000"
2178
+ },
2179
+ {
2180
+ "user": "U1",
2181
+ "text": "lunch break",
2182
+ "ts": "1700800160.000000"
2183
+ },
2184
+ {
2185
+ "user": "U2",
2186
+ "text": "back",
2187
+ "ts": "1700800170.000000"
2188
+ },
2189
+ {
2190
+ "user": "U3",
2191
+ "text": "errors in api log",
2192
+ "ts": "1700800200.000000"
2193
+ },
2194
+ {
2195
+ "user": "U4",
2196
+ "text": "many 500s on user profile",
2197
+ "ts": "1700800210.000000"
2198
+ },
2199
+ {
2200
+ "user": "U5",
2201
+ "text": "stack trace shows undefined column",
2202
+ "ts": "1700800220.000000"
2203
+ },
2204
+ {
2205
+ "user": "U6",
2206
+ "text": "which one",
2207
+ "ts": "1700800230.000000"
2208
+ },
2209
+ {
2210
+ "user": "U7",
2211
+ "text": "users last seen at field",
2212
+ "ts": "1700800240.000000"
2213
+ },
2214
+ {
2215
+ "user": "U8",
2216
+ "text": "we added that in the latest release",
2217
+ "ts": "1700800250.000000"
2218
+ },
2219
+ {
2220
+ "user": "U1",
2221
+ "text": "did the schema upgrade run on prod",
2222
+ "ts": "1700800260.000000"
2223
+ },
2224
+ {
2225
+ "user": "U2",
2226
+ "text": "checking",
2227
+ "ts": "1700800270.000000"
2228
+ },
2229
+ {
2230
+ "user": "U3",
2231
+ "text": "version table only at forty seven",
2232
+ "ts": "1700800280.000000"
2233
+ },
2234
+ {
2235
+ "user": "U4",
2236
+ "text": "should be forty eight",
2237
+ "ts": "1700800290.000000"
2238
+ },
2239
+ {
2240
+ "user": "U5",
2241
+ "text": "missing schema migration: column does not exist on production",
2242
+ "ts": "1700800300.000000"
2243
+ },
2244
+ {
2245
+ "user": "U6",
2246
+ "text": "confirmed missing schema migration v48: column does not exist error from skipped migration step",
2247
+ "ts": "1700800310.000000"
2248
+ },
2249
+ {
2250
+ "user": "U7",
2251
+ "text": "running it now",
2252
+ "ts": "1700800320.000000"
2253
+ },
2254
+ {
2255
+ "user": "U8",
2256
+ "text": "applied",
2257
+ "ts": "1700800330.000000"
2258
+ },
2259
+ {
2260
+ "user": "U1",
2261
+ "text": "errors clearing",
2262
+ "ts": "1700800340.000000"
2263
+ },
2264
+ {
2265
+ "user": "U2",
2266
+ "text": "all green",
2267
+ "ts": "1700800350.000000"
2268
+ },
2269
+ {
2270
+ "user": "U3",
2271
+ "text": "fix pipeline",
2272
+ "ts": "1700800360.000000"
2273
+ },
2274
+ {
2275
+ "user": "U4",
2276
+ "text": "filing it",
2277
+ "ts": "1700800370.000000"
2278
+ },
2279
+ {
2280
+ "user": "U5",
2281
+ "text": "wrap up",
2282
+ "ts": "1700800380.000000"
2283
+ },
2284
+ {
2285
+ "user": "U6",
2286
+ "text": "good day",
2287
+ "ts": "1700800390.000000"
2288
+ },
2289
+ {
2290
+ "user": "U7",
2291
+ "text": "early dinner",
2292
+ "ts": "1700800400.000000"
2293
+ },
2294
+ {
2295
+ "user": "U8",
2296
+ "text": "in",
2297
+ "ts": "1700800410.000000"
2298
+ },
2299
+ {
2300
+ "user": "U1",
2301
+ "text": "going home",
2302
+ "ts": "1700800420.000000"
2303
+ },
2304
+ {
2305
+ "user": "U2",
2306
+ "text": "see you",
2307
+ "ts": "1700800430.000000"
2308
+ },
2309
+ {
2310
+ "user": "U3",
2311
+ "text": "have a good evening",
2312
+ "ts": "1700800440.000000"
2313
+ },
2314
+ {
2315
+ "user": "U4",
2316
+ "text": "you too",
2317
+ "ts": "1700800450.000000"
2318
+ },
2319
+ {
2320
+ "user": "U5",
2321
+ "text": "later",
2322
+ "ts": "1700800460.000000"
2323
+ },
2324
+ {
2325
+ "user": "U6",
2326
+ "text": "morning",
2327
+ "ts": "1700800470.000000"
2328
+ },
2329
+ {
2330
+ "user": "U7",
2331
+ "text": "morning",
2332
+ "ts": "1700800480.000000"
2333
+ }
2334
+ ]
2335
+ },
2336
+ {
2337
+ "id": "S10-incident",
2338
+ "channel": "C-incidents",
2339
+ "query": "hacker news traffic spike autoscaling overload",
2340
+ "answer_ts": [
2341
+ "1700900300.000000",
2342
+ "1700900310.000000"
2343
+ ],
2344
+ "transcript": [
2345
+ {
2346
+ "user": "U1",
2347
+ "text": "good morning",
2348
+ "ts": "1700900001.000000"
2349
+ },
2350
+ {
2351
+ "user": "U2",
2352
+ "text": "morning",
2353
+ "ts": "1700900010.000000"
2354
+ },
2355
+ {
2356
+ "user": "U3",
2357
+ "text": "great quarter close yesterday",
2358
+ "ts": "1700900020.000000"
2359
+ },
2360
+ {
2361
+ "user": "U4",
2362
+ "text": "agreed",
2363
+ "ts": "1700900030.000000"
2364
+ },
2365
+ {
2366
+ "user": "U5",
2367
+ "text": "marketing email going out today",
2368
+ "ts": "1700900040.000000"
2369
+ },
2370
+ {
2371
+ "user": "U6",
2372
+ "text": "what time",
2373
+ "ts": "1700900050.000000"
2374
+ },
2375
+ {
2376
+ "user": "U7",
2377
+ "text": "ten am",
2378
+ "ts": "1700900060.000000"
2379
+ },
2380
+ {
2381
+ "user": "U8",
2382
+ "text": "ok we should be ready",
2383
+ "ts": "1700900070.000000"
2384
+ },
2385
+ {
2386
+ "user": "U1",
2387
+ "text": "scaled the asg up a bit",
2388
+ "ts": "1700900080.000000"
2389
+ },
2390
+ {
2391
+ "user": "U2",
2392
+ "text": "good",
2393
+ "ts": "1700900090.000000"
2394
+ },
2395
+ {
2396
+ "user": "U3",
2397
+ "text": "watching dashboards",
2398
+ "ts": "1700900100.000000"
2399
+ },
2400
+ {
2401
+ "user": "U4",
2402
+ "text": "all green",
2403
+ "ts": "1700900110.000000"
2404
+ },
2405
+ {
2406
+ "user": "U5",
2407
+ "text": "blog post is on a popular site",
2408
+ "ts": "1700900120.000000"
2409
+ },
2410
+ {
2411
+ "user": "U6",
2412
+ "text": "front page",
2413
+ "ts": "1700900130.000000"
2414
+ },
2415
+ {
2416
+ "user": "U7",
2417
+ "text": "wow",
2418
+ "ts": "1700900140.000000"
2419
+ },
2420
+ {
2421
+ "user": "U8",
2422
+ "text": "ticking up",
2423
+ "ts": "1700900150.000000"
2424
+ },
2425
+ {
2426
+ "user": "U1",
2427
+ "text": "rps doubled",
2428
+ "ts": "1700900160.000000"
2429
+ },
2430
+ {
2431
+ "user": "U2",
2432
+ "text": "tripled",
2433
+ "ts": "1700900170.000000"
2434
+ },
2435
+ {
2436
+ "user": "U3",
2437
+ "text": "ten times baseline now",
2438
+ "ts": "1700900200.000000"
2439
+ },
2440
+ {
2441
+ "user": "U4",
2442
+ "text": "load balancer queueing",
2443
+ "ts": "1700900210.000000"
2444
+ },
2445
+ {
2446
+ "user": "U5",
2447
+ "text": "p95 latency at eight seconds",
2448
+ "ts": "1700900220.000000"
2449
+ },
2450
+ {
2451
+ "user": "U6",
2452
+ "text": "users seeing timeouts",
2453
+ "ts": "1700900230.000000"
2454
+ },
2455
+ {
2456
+ "user": "U7",
2457
+ "text": "scaling firing",
2458
+ "ts": "1700900240.000000"
2459
+ },
2460
+ {
2461
+ "user": "U8",
2462
+ "text": "still not enough capacity",
2463
+ "ts": "1700900250.000000"
2464
+ },
2465
+ {
2466
+ "user": "U1",
2467
+ "text": "increase max instances",
2468
+ "ts": "1700900260.000000"
2469
+ },
2470
+ {
2471
+ "user": "U2",
2472
+ "text": "raising cap to two hundred",
2473
+ "ts": "1700900270.000000"
2474
+ },
2475
+ {
2476
+ "user": "U3",
2477
+ "text": "where did the surge come from",
2478
+ "ts": "1700900280.000000"
2479
+ },
2480
+ {
2481
+ "user": "U4",
2482
+ "text": "external referrer",
2483
+ "ts": "1700900290.000000"
2484
+ },
2485
+ {
2486
+ "user": "U5",
2487
+ "text": "hacker news traffic spike overload, autoscaling lagged behind organic surge",
2488
+ "ts": "1700900300.000000"
2489
+ },
2490
+ {
2491
+ "user": "U6",
2492
+ "text": "confirmed: hacker news front page traffic spike, autoscaling caps too low for the overload",
2493
+ "ts": "1700900310.000000"
2494
+ },
2495
+ {
2496
+ "user": "U7",
2497
+ "text": "instances spinning up",
2498
+ "ts": "1700900320.000000"
2499
+ },
2500
+ {
2501
+ "user": "U8",
2502
+ "text": "queue clearing",
2503
+ "ts": "1700900330.000000"
2504
+ },
2505
+ {
2506
+ "user": "U1",
2507
+ "text": "p95 dropped to 800ms",
2508
+ "ts": "1700900340.000000"
2509
+ },
2510
+ {
2511
+ "user": "U2",
2512
+ "text": "great",
2513
+ "ts": "1700900350.000000"
2514
+ },
2515
+ {
2516
+ "user": "U3",
2517
+ "text": "still on the front page",
2518
+ "ts": "1700900360.000000"
2519
+ },
2520
+ {
2521
+ "user": "U4",
2522
+ "text": "comments are positive",
2523
+ "ts": "1700900370.000000"
2524
+ },
2525
+ {
2526
+ "user": "U5",
2527
+ "text": "marketing happy",
2528
+ "ts": "1700900380.000000"
2529
+ },
2530
+ {
2531
+ "user": "U6",
2532
+ "text": "writing it up",
2533
+ "ts": "1700900390.000000"
2534
+ },
2535
+ {
2536
+ "user": "U7",
2537
+ "text": "celebration drinks",
2538
+ "ts": "1700900400.000000"
2539
+ },
2540
+ {
2541
+ "user": "U8",
2542
+ "text": "yes please",
2543
+ "ts": "1700900410.000000"
2544
+ },
2545
+ {
2546
+ "user": "U1",
2547
+ "text": "rooftop",
2548
+ "ts": "1700900420.000000"
2549
+ },
2550
+ {
2551
+ "user": "U2",
2552
+ "text": "in",
2553
+ "ts": "1700900430.000000"
2554
+ },
2555
+ {
2556
+ "user": "U3",
2557
+ "text": "see you at six",
2558
+ "ts": "1700900440.000000"
2559
+ },
2560
+ {
2561
+ "user": "U4",
2562
+ "text": "running late",
2563
+ "ts": "1700900450.000000"
2564
+ },
2565
+ {
2566
+ "user": "U5",
2567
+ "text": "no rush",
2568
+ "ts": "1700900460.000000"
2569
+ },
2570
+ {
2571
+ "user": "U6",
2572
+ "text": "heading out",
2573
+ "ts": "1700900470.000000"
2574
+ },
2575
+ {
2576
+ "user": "U7",
2577
+ "text": "good evening",
2578
+ "ts": "1700900480.000000"
2579
+ },
2580
+ {
2581
+ "user": "U8",
2582
+ "text": "later",
2583
+ "ts": "1700900490.000000"
2584
+ }
2585
+ ]
2586
+ }
2587
+ ]