Skip to content

Commit 2c12d14

Browse files
committed
Add structured-logging-correlation-ids-log-schema-design article
1 parent 1a727bc commit 2c12d14

4 files changed

Lines changed: 1117 additions & 1120 deletions

File tree

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
"cfduid",
3838
"CFSSL",
3939
"chaosk",
40+
"Cipheriv",
4041
"clusterip",
4142
"CMDB",
4243
"cnst",
@@ -51,6 +52,7 @@
5152
"dango",
5253
"dbname",
5354
"dbtable",
55+
"Decipheriv",
5456
"decr",
5557
"dedup",
5658
"Dredd",
@@ -63,6 +65,7 @@
6365
"eksctl",
6466
"elbv",
6567
"elif",
68+
"encryptor",
6669
"enddt",
6770
"epoll",
6871
"etcdctl",
@@ -243,6 +246,7 @@
243246
"scipy",
244247
"SCORM",
245248
"Segoe",
249+
"sess",
246250
"shiki",
247251
"shikijs",
248252
"shipit",

_TODO.md

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,10 +279,8 @@ $2500 onboarding + $500 just for being on call for the week + hours paid for act
279279

280280
## Content
281281

282-
structured-logging-correlation-ids-log-schema-design
283282
symptom-based-alerting-runbooks-alert-design
284283
synthetic-test-data-pii-anonymization-fixtures
285-
terraform-module-design-defaults-versioning-interfaces
286284

287285
## Content Issues
288286

@@ -332,3 +330,29 @@ Add suggested text for a call to action to download the longer PDF at the bottom
332330
__review_article__
333331

334332
Let's review the article in its entirety now, and make any suggestions you find that would improve the readability or quality of the article. Do not make any changes - just review and put together a list of suggestions to discuss. Ignore the call to action at the bottom of the article.
333+
334+
335+
```1
336+
---
337+
config:
338+
flowchart:
339+
nodeSpacing: 35
340+
rankSpacing: 35
341+
---
342+
flowchart TB
343+
subgraph inconsistent[Unstructured: 5 Queries, Uncertain Coverage]
344+
A1["grep 'User 12345'"]
345+
A2["grep 'user_id=12345'"]
346+
A3["jq '.user==\"12345\"'"]
347+
A4["grep 'user 12345'"]
348+
A5["grep 'userId.*12345'"]
349+
A1 ~~~ A2 ~~~ A3 ~~~ A4 ~~~ A5
350+
end
351+
352+
subgraph consistent[Structured: 1 Query, Full Coverage]
353+
B1["user.id:12345 AND event.action:login"]
354+
end
355+
356+
inconsistent --> result1["~70% accuracy, false negatives unknown"]
357+
consistent --> result2["99%+ accuracy, all services covered"]
358+
```

0 commit comments

Comments
 (0)