Files
DongHyeonkaandClaude Opus 5 b2963105a8 docs(keycloak-session-store): import the session-storage lab as a new project
The keycloak project ended with four open questions that design could not
settle. A two-VM lab was built to answer them by measurement, and this is
that material: 26 experiments, 125 raw command outputs, 22 browser captures.

Follows the import procedure in README.md.

  source/     the originating repository verbatim — 78 documents, 28 SVGs,
              8 manifests, plus .source-revision recording the commit
  final/      the SSOT
    document.md   729 lines written from the 29 experiment documents, not
                  concatenated: what was predicted, what was measured, and
                  where the measurement itself was wrong
    evidence/raw    125 outputs, flattened to <experiment>__<file> because
                    the originals collided (01-baseline.txt appeared three
                    times) and the audit only globs the top level
    evidence/meta   one per raw file; command and exitCode are null and the
                    README says why rather than inventing them
    evidence/browser  22 captures
    assets/       three diagrams through techviz
    .techviz/     their VizSpecs

A separate project rather than an addition to keycloak: the B-layer answers
that project's four questions, but the A, C and D layers are about cluster
failure, SSO and operations, and one document.md should hold one subject.
The four question records there can point here through 관계.

Recorded rather than papered over: only three of the 28 diagrams were
remade. The repository forbids hand-drawn SVG and forbids titles inside the
canvas; all 28 originals carry both, so converting them is redrawing, not
reformatting. They stay in source/ and the gap is written into the document.

verify-pipeline.py passes. audit-records.py reports no issues.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-04 22:51:59 +09:00

15 lines
3.8 KiB
JSON

{
"assetKey": "analysis-finding-a06-f022",
"kind": "terminal",
"command": "#!/bin/bash\nset -euo pipefail\ncd /shared/codebase/clean-architecture-backend-template\n. /tmp/lib.sh\nO=src/adapter/outbound/persistence-mongo/src/main/java/dev/caskeleton/adapter/outbound/mongo/observation\nC=$O/MongoObservationConvention.java\nR=$O/MongoObservationRedactor.java\nL=$O/MongoCommandObservationListener.java\nfor f in \"$C\" \"$R\" \"$L\"; do test -f \"$f\"; done\n\necho \"# 규약이 강제라고 적는 문장\"\nat \"$C\" 1 57 MongoObservationConvention.java\n\necho\necho \"# 그 강제를 수행하는 메서드\"\nat \"$C\" 58 78 MongoObservationConvention.java\n\necho\necho \"# 그것을 부르는 자리\"\nprintf ' MongoObservationConvention 을 언급하는 main 파일 : %s 개\\n' \\\n \"$({ git grep -l 'MongoObservationConvention' -- 'src/**/src/main/**/*.java' || true; } | grep -c . || true)\"\n{ git grep -l 'MongoObservationConvention' -- 'src/**/src/main/**/*.java' || true; } | sed 's#.*/# #'\nprintf ' 이 리프 main 에서 requireAllowed 를 부르는 줄 : %s 개\\n' \\\n \"$(lines '\\.requireAllowed\\(' 'src/adapter/outbound/persistence-mongo/src/main/**/observation/*.java')\"\necho \" requireAllowed 가 이 리프에 나오는 자리 전부 :\"\nhits 'requireAllowed' 'src/adapter/outbound/persistence-mongo/**/*.java' \\\n | sed -E 's#^src/(.*)/src/([a-zA-Z]+)/java/.*/([A-Za-z0-9_$]+\\.java):([0-9]+): *# \\2 · \\3:\\4 #'\nprintf ' [대조] 저장소 전체 main 에서 그 이름을 부르는 줄 : %s 개\\n' \\\n \"$(lines '\\.requireAllowed\\(' 'src/**/src/main/**/*.java')\"\nhits '\\.requireAllowed\\(' 'src/**/src/main/**/*.java' \\\n | sed -E 's#^.*/([A-Za-z0-9_]+\\.java):([0-9]+): *# \\1:\\2 #'\nprintf ' [대조] 같은 pathspec 으로 Tags.of 를 세면 : %s 개\\n' \\\n \"$(lines 'Tags\\.of\\(' 'src/adapter/outbound/persistence-mongo/src/main/**/observation/*.java')\"\n\necho\necho \"# 그 규약을 언급하는 다른 한 파일이 하는 일\"\nD=$O/MongoDriverObservabilityConfiguration.java\ntest -f \"$D\"\nat \"$D\" 20 43 MongoDriverObservabilityConfiguration.java\nprintf ' standard() 를 부르는 main 줄 : %s 개\\n' \"$(lines 'MongoObservationConvention\\.standard\\(' 'src/**/src/main/**/*.java')\"\nprintf ' convention() 을 부르는 main 줄 : %s 개\\n' \"$(lines '\\.convention\\(\\)' 'src/**/src/main/**/*.java')\"\n\necho\necho \"# 관측 클래스들이 실제로 태그를 붙이는 방법\"\nprintf ' 이 패키지에서 Tags.of 를 부르는 줄 : %s 개\\n' \"$(lines 'Tags\\.of\\(' \"$O/*.java\")\"\nhits 'Tags\\.of\\(' \"$O/*.java\" \\\n | sed -E 's#^.*/([A-Za-z0-9_]+\\.java):([0-9]+): *# \\1:\\2 #'\nprintf ' [대조] 저장소 전체에서 Tags.of 를 부르는 줄 : %s 개\\n' \"$(lines 'Tags\\.of\\(' 'src/**/src/main/**/*.java')\"\n\necho\necho \"# 편집기의 세 갈래 가운데 쓰이는 것\"\nat \"$R\" 18 48 MongoObservationRedactor.java\nprintf ' redactor.describe 를 부르는 main 줄 : %s 개\\n' \"$(lines 'redactor\\.describe\\(' 'src/**/src/main/**/*.java')\"\nprintf ' redactor.isAlwaysRedacted 를 부르는 main 줄 : %s 개\\n' \"$(lines 'redactor\\.isAlwaysRedacted\\(' 'src/**/src/main/**/*.java')\"\nprintf ' [대조] 시험에서 redactor.describe 는 : %s 개\\n' \"$(lines 'redactor\\.describe\\(' 'src/**/src/*[Tt]est*/**/*.java')\"\necho \" 리스너가 그 둘 중 무엇을 쓰는가 :\"\nat \"$L\" 59 72 MongoCommandObservationListener.java\n",
"cwd": "/shared/codebase/clean-architecture-backend-template",
"exitCode": 0,
"executedAt": "2026-09-04T08:36:08+00:00",
"sourceRevision": "21234e38cdb9a926cbc92bb97a2aee2e4a7d2916",
"raw": "evidence/raw/analysis-finding-a06-f022.txt",
"svg": "evidence/rendered/analysis-finding-a06-f022.svg",
"rawSha256": "4d06c18560c939f2eb77ebabdd8fa6ee763a6e049d52205eeea935a8f203a574",
"lines": 205,
"redaction": "없음"
}