I'm consultant nephrologist and give me detailed summary of this pdf

Reading File
Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') print(f'Total pages: {len(reader.pages)}') # Print first 3 pages to understand structure for i in range(min(3, len(reader.pages))): print(f'\\n=== PAGE {i+1} ===') print(reader.pages[i].extract_text()[:2000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Extract all text and save to file for analysis all_text = [] for i, page in enumerate(reader.pages): text = page.extract_text() if text: all_text.append(f'=== PAGE {i+1} ===\n{text}') full_text = '\n\n'.join(all_text) with open('/home/daytona/workspace/kdigo_full_text.txt', 'w') as f: f.write(full_text) print(f'Total chars: {len(full_text)}') print('Saved to kdigo_full_text.txt') "

Now let me read the key sections in parallel - the summary of recommendations, and then the three chapters:
Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Pages 4-16 = Summary of recommendations (pages 1-15 in doc = PDF pages 4-18) # Let's extract pages 4-20 for the summary section text = '' for i in range(3, 20): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:8000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Pages 11-16 = Abstract and Summary of recommendation statements (doc pages xi, 1-15) # PDF pages 11-30 text = '' for i in range(10, 32): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:10000]) " 2>&1 | head -300

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Pages 19-32 in PDF - recommendations continued text = '' for i in range(18, 33): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:10000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Pages 24-35: T1D section + Chapter 1 detailed content text = '' for i in range(23, 50): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:10000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Chapter 2 detailed: pages 50-65 (glycemic monitoring and targets) text = '' for i in range(49, 70): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:10000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Chapter 4 key drug sections: pages 60-120 (pharmacotherapy) # Let's get SGLT2i, nsMRA, GLP-1 detailed sections and metformin text = '' for i in range(65, 115): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' with open('/home/daytona/workspace/kdigo_chap4_detail.txt', 'w') as f: f.write(text) print(f'Saved {len(text)} chars') print(text[:5000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Get Chapter 1 prevention section (pages 28-48 in PDF) text = '' for i in range(27, 50): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:8000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # Get SGLT2i detailed section, nsMRA detailed section, GLP-1 detailed section # These are roughly pages 75-115 text = '' for i in range(75, 115): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' with open('/home/daytona/workspace/kdigo_drugs.txt', 'w') as f: f.write(text) print(f'Saved {len(text)} chars') # Print first 8000 chars print(text[:8000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # nsMRA section and GLP-1 section - pages 85-110 text = '' for i in range(84, 112): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:10000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # nsMRA continued + GLP-1 section pages 88-110 text = '' for i in range(87, 112): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:10000]) "

Running Command

python3 -c " from pypdf import PdfReader reader = PdfReader('/home/daytona/workspace/attachments/0c0a07c7-a73f-42b3-aadc-39b7fc84ca06/KDIGO-2026-Diabetes-and-CKD-Guideline-Update-Public-Review-Draft-March-2026.pdf') # GLP-1 section pages 96-112 text = '' for i in range(95, 115): t = reader.pages[i].extract_text() if t: text += f'\n=== PDF PAGE {i+1} ===\n{t}' print(text[:10000]) "

I now have comprehensive data from all key sections. Let me compile the detailed summary.# KDIGO 2026 Clinical Practice Guideline - Diabetes and CKD Update

Public Review Draft (March 2026) - Detailed Summary for Consultant Nephrologists

Literature search last conducted: July 2025 | Co-chairs: Ian H. de Boer (University of Washington) and Peter Rossing (Steno Diabetes Center, Copenhagen)
This update covers Chapters 1, 2, and 4 of the full guideline. Chapter 3 (lifestyle) and Chapter 5 (care models) recommendations are carried forward unchanged.

CHAPTER 1: Definitions, Prevention, Case-Finding, Staging & CV Risk Assessment

1.1 Terminology

The guideline formalizes use of "CKD in diabetes" or "diabetes and CKD" as the preferred clinical terms, with "diabetic kidney disease (DKD)" as an acceptable synonym. Importantly, "diabetic nephropathy" is now reserved specifically for histologically confirmed disease with characteristic glomerular/tubular/vascular features on biopsy. This reflects recognition that 1/3 to 2/3 of people with diabetes who undergo kidney biopsy have primary histologic diagnoses other than traditional diabetic nephropathy.

1.2 CKD Prevention - Paradigm Shift

A major conceptual addition: the guideline explicitly promotes a shift from managing CKD after diagnosis to primary prevention of CKD in people with diabetes (Figure 3 in the document). Based on a joint ADA/ACC/EASD/KDIGO consensus statement, 8 key interventions are endorsed:
InterventionEvidence in T1DEvidence in T2D
Intensive glycemic controlYes (DCCT/EDIC)Yes (multiple RCTs)
BP control <130/80 mmHgLimitedYes (HR 0.77 for macroalbuminuria)
SGLT2iNo evidenceYes (meta-analyses)
RAS inhibitorsYesYes
Structured lifestyle interventionLimitedYes (Look AHEAD, DPP/DPPOS)
GLP-1 RANo evidenceYes
Weight management-Yes
Tobacco cessationYesYes
DCCT/EDIC legacy data: Intensive glycemic management in T1D reduced incident albuminuria by 39%, reduced incident eGFR <60 by 50% over 22 years, and demonstrated "metabolic memory."

1.3 Case-Finding and Diagnosis

Practice Points:
  • Test ALL adults and children with diabetes using both UACR and eGFR
  • UACR on a spot urine sample (or point-of-care strip with automated UACR reading) is preferred
  • T1D: Begin testing ≥5 years after diagnosis
  • T2D: Begin testing at the time of diabetes diagnosis
  • If eGFR ≥60 and UACR <30 mg/g with no other kidney damage markers: repeat annually
  • If elevated: increase frequency per risk category
Indications for nephrology referral (Table 3 - reasons to suspect non-diabetic cause):
  • T1D duration <5 years
  • Active urinary sediment (RBCs, cellular casts, sterile pyuria)
  • Well-controlled blood glucose with unexplained CKD
  • Rapidly declining eGFR
  • Rapidly rising or very high UACR/proteinuria/creatinine
  • No diabetic retinopathy (especially in T1D)
  • Systemic features (polyarthritis, gouty arthritis)
Recommendation 1.3.1 (2D): Kidney biopsy is an acceptable, safe diagnostic test to guide treatment decisions when clinically appropriate.

1.4 Staging

Use both eGFR and UACR for CKD staging (KDIGO heatmap with G and A categories). Risk categories include combined cardiovascular disease, CKD progression, and mortality risk.

1.5 CV-Kidney Risk Prediction

Use externally validated models that are developed within CKD populations or incorporate both eGFR and albuminuria to assess future ASCVD risk and HF risk.

CHAPTER 2: Glycemic Monitoring and Targets

2.1 Glycemic Monitoring

HbA1c (Recommendation 2.1.1 - Grade 1C):
  • Remains recommended as the standard monitoring tool in CKD
  • Monitor twice yearly when target is met; up to 4 times/year if target is unmet or therapy changes
  • Accuracy declines with advanced CKD (G4-G5), particularly in dialysis patients where HbA1c has low reliability (due to altered RBC survival, erythropoiesis, iron deficiency, carbamylation)
  • In G4-G5/dialysis: use glucose management indicator (GMI) from CGM data as a supplement
Continuous Glucose Monitoring (CGM) - Updated Practice Points:
  • Offer CGM to ALL people with T1D (PP 2.1.3)
  • CGM may be offered to T2D patients, especially those on insulin and at hypoglycemia risk (PP 2.1.4)
  • CGM and SMBG may help prevent hypoglycemia and improve glycemic control in CKD (PP 2.1.5)
  • Real-time CGM with alerts for hypo/hyperglycemia offers additional advantages (PP 2.1.6)
  • Specialist diabetes technology support is recommended to help navigate CGM selection (PP 2.1.7)
CGM Targets in CKD (Table 4):
MetricTarget
Time in Range (TIR) 3.9-10.0 mmol/L>70%
Time Below Range (TBR) <3.9 mmol/L<4%
Time Below Range (TBR) <3.0 mmol/L<1%
Time Above Range (TAR) >10.0 mmol/L<25%
Time Above Range (TAR) >13.9 mmol/L<5%
GMI (glucose management indicator)Interpreted per CKD context
Important: Risk of hypoglycemia is significantly elevated in advanced CKD with insulin, sulfonylureas, or meglitinides. SGLT2i, GLP-1 RA, metformin, and DPP-4i do not inherently cause hypoglycemia.

2.2 Glycemic Targets (Carried Forward - Not Updated in 2026)

Recommendation 2.2.1 (Grade 1C): Individualized HbA1c target of <6.5% to <8.0% for people with diabetes and CKD not on dialysis.
  • Lower target (<6.5-7.0%): younger patients, few comorbidities, mild-moderate CKD, long life expectancy, agents without hypoglycemia risk
  • Higher target (<7.5-8.0%): multiple comorbidities, high hypoglycemia burden, advanced CKD, limited life expectancy
  • HbA1c ≤6.0% is associated with increased all-cause mortality in CKD populations (avoid)
  • Evidence base: HbA1c in the 6.5-8% range is associated with better survival, fewer CV events, reduced albuminuria progression

CHAPTER 4: Pharmacotherapy

4.1 Comprehensive Diabetes and CKD Management

The "Four Pillars" of Foundational Therapy:
  1. RAS inhibitor (ACEi or ARB)
  2. SGLT2 inhibitor
  3. Nonsteroidal MRA (nsMRA)
  4. GLP-1 receptor agonist
Key principles:
  • Personalized, risk-based approach; maximize cardiorenal protection as quickly as possible
  • Multiple interventions can be initiated simultaneously when adverse effect profiles are non-overlapping
  • Lipid management: initiate statin-based therapy for ASCVD risk reduction; for high-risk patients with T2D and CKD, target more intensive LDL-C goals
  • Add non-statin lipid-lowering therapy (ezetimibe, PCSK9 inhibitors) when statin alone insufficient
  • Measure Lp(a) at least once - elevated Lp(a) increases CV risk and guides preventive intensity
  • Antiplatelet: low-dose aspirin for secondary CV prevention (Rec 4.1.4, Grade 1C)

4.2 RAS Blockade (ACEi/ARB)

Recommendation 4.2.1 (Grade 1B): Initiate ACEi or ARB in diabetes + hypertension + albuminuria; titrate to highest tolerated approved dose.
Key practice points:
  • May be reasonable in diabetes + hypertension + no albuminuria (PP 4.2.1)
  • May be considered in diabetes + albuminuria + normal BP (PP 4.2.2)
  • Monitor BP, eGFR, and serum K+ within 2-4 weeks of initiation or dose increase
  • Continue unless eGFR declines >30% within 4 weeks
  • Hyperkalemia: attempt potassium management first; do not automatically stop RASi
  • Reduce/discontinue if: symptomatic hypotension, uncontrolled hyperkalemia despite K-management, or to reduce uremic symptoms (eGFR <15)
  • Contraindicated: ACEi + ARB combination or either with direct renin inhibitor (potentially harmful)
  • Women of childbearing age: advise contraception; discontinue if pregnancy planned/confirmed

4.3 SGLT2 Inhibitors - UPGRADED to Grade 1A

Recommendation 4.3.1 (Grade 1A - upgraded from 1B in 2020): Treat adults with T2D + CKD + eGFR ≥20 ml/min/1.73m² with an SGLT2i.
Evidence (updated meta-analysis for 2026 guideline):
OutcomeRisk Reduction
All-cause mortalityRR 0.87 (95% CI 0.81-0.93)
Cardiovascular mortalityRR 0.84 (95% CI 0.77-0.92)
MACERR 0.85 (95% CI 0.80-0.89)
HF hospitalizationRR 0.64 (95% CI 0.58-0.71)
Kidney failureHR 0.69 (95% CI 0.59-0.82)
Composite kidney outcomeHR 0.62 (95% CI 0.57-0.68)
HyperkalemiaRR 0.79 (protective)
Progression to severe albuminuriaRR 0.56 (95% CI 0.47-0.67)
Key trials cited: CREDENCE (canagliflozin), DAPA-CKD (dapagliflozin), EMPA-KIDNEY (empagliflozin)
Mechanism of cardio-renal protection:
  • Tubulo-glomerular feedback restoration → afferent arteriolar vasoconstriction → reduction in intraglomerular pressure
  • Osmotic diuresis + natriuresis → reduced ventricular preload/afterload → HF benefit
  • Anti-inflammatory, anti-fibrotic, mitochondrial energetic effects
  • Benefits are largely independent of glycemic control; glucose-lowering modest (~0.3-0.6% HbA1c), diminishing at lower eGFR
Important eGFR guidance for SGLT2i:
  • Initiate: eGFR ≥20 ml/min/1.73m²
  • Continue even if eGFR falls below 20 once initiated (unless not tolerated or KRT initiated)
  • Early eGFR dip is expected, reversible, and hemodynamic - do NOT stop for acute dip ≤30%
  • Dip >30%: evaluate for reversible contributors (hypovolemia, nephrotoxins)
  • Withhold during prolonged fasting, major surgery, critical illness; restart when clinically stable
  • Not applicable to kidney transplant recipients (insufficient data; immune-suppressed)
Adverse effects:
  • Genital mycotic infections: most consistent adverse effect (2.27% vs 0.59% in CREDENCE)
  • Euglycemic DKA: rare (<1 per 1,000 patient-years in T2D); higher risk with insulin deficiency, fasting, illness, perioperative period
  • Fracture risk: not a class-wide effect (CANVAS anomaly; CREDENCE and others did not confirm)
  • Lower limb amputation risk: noted in CANVAS; not confirmed in other trials

4.4 Nonsteroidal MRA (nsMRA) - UPGRADED to Grade 1A

Recommendation 4.4.1 (Grade 1A - upgraded from 1B in 2020): Add nsMRA with proven kidney/CV benefit in T2D + eGFR ≥25 ml/min/1.73m² + normal serum K+ + UACR ≥30 mg/g on maximum tolerated RASi.
Evidence (FIDELIO-DKD + FIGARO-DKD combined analysis; n >13,000):
OutcomeRisk Reduction
MACEHR 0.86 (95% CI 0.78-0.95)
Kidney compositeHR 0.77 (95% CI 0.67-0.88)
Kidney failure (dialysis/transplant)HR 0.80 (95% CI 0.64-0.99)
HF hospitalizationHR 0.78 (95% CI 0.66-0.92)
Hyperkalemia (adverse)RR ~2.1 (risk doubled)
Certainty of evidence: HIGH for kidney failure, HF hospitalization, kidney composite.
CONFIDENCE trial: SGLT2i + nsMRA combination therapy reduced UACR 29-32% more than either agent alone at 180 days. Supports simultaneous initiation.
Practical guidance:
  • Select patients with consistently normal serum potassium; monitor K+ regularly after initiation
  • Can initiate SGLT2i and nsMRA simultaneously in patients with T2D, RASi, persistent albuminuria, normal K+
  • nsMRA also indicated in T2D + CKD with HFpEF/HFmrEF (LVEF ≥40%)
  • Steroidal MRA: use only for HFrEF, hyperaldosteronism, or refractory hypertension
  • Do NOT combine steroidal and nonsteroidal MRA
  • Finerenone is the agent with the best evidence base (approved widely); esaxerenone has supporting data
T1D special consideration (Recommendation 4.7.1, Grade 2C):
  • Suggest nsMRA in T1D + eGFR ≥25 + normal K+ + UACR ≥200 mg/g on max-tolerated RASi
  • Higher albuminuria threshold than T2D (200 vs 30 mg/g) due to limited data in T1D

4.5 GLP-1-Based Therapies - UPGRADED to Grade 1A

Recommendation 4.5.1 (Grade 1A): Recommend GLP-1-based therapy in T2D + CKD who are at high risk of MACE or kidney events, OR who have not achieved glycemic targets.
Evidence (meta-analysis of 29 studies, 42 reports; including 6 trials published since KDIGO 2020):
OutcomeRisk Reduction
All-cause mortalityRR 0.86 (95% CI 0.78-0.96)
Cardiovascular mortalityRR 0.83 (95% CI 0.72-0.95)
MACERR 0.85 (95% CI 0.79-0.92)
HF hospitalizationRR 0.83 (95% CI 0.72-0.96)
Kidney compositeHR 0.82 (95% CI 0.78-0.94)
FLOW trial (semaglutide, primary kidney outcome trial): Subcutaneous semaglutide reduced major kidney events by 24% (HR 0.76; 95% CI 0.66-0.88) and slowed eGFR loss rate by -1.16 ml/min/1.73m²/year.
Agents with proven MACE benefit: Liraglutide, semaglutide (injectable + oral), albiglutide, dulaglutide, efpeglenatide.
Tirzepatide (GIP/GLP-1 RA): SURPASS CVOT showed non-inferiority to dulaglutide; dedicated CKD trials ongoing. May be used as a therapeutic option given its non-inferiority profile.
CKD-specific considerations:
  • Avoid exenatide and lixisenatide at low eGFR (AKI risk; no proven CV benefit)
  • Prefer agents with documented CV and CKD benefits: liraglutide, semaglutide, dulaglutide
  • Oral semaglutide: now approved; reduces MACE in T2D with ASCVD/CKD (SOUL trial)
  • Orforglipron (oral non-peptide GLP-1 RA): regulatory approval anticipated imminently
  • GLP-1 RA + DPP-4i combination: contraindicated (additive mechanism, no additional benefit)
Weight and glycemic effects:
  • HbA1c reduction: 0.81-3.73% depending on agent and baseline
  • Body weight: -1 to -4.1 kg (FLOW: 4.1 kg loss)
  • GLP-1 RA are more potent glucose-lowering and weight-loss agents than SGLT2i in CKD
Special populations:
  • Obesity + T2D + CKD: preferentially use GLP-1 RA for intentional weight loss
  • GLP-1 RA may be initiated/continued in dialysis patients to facilitate weight loss for transplant listing
  • Sarcopenia risk: encourage structured resistance training when on GLP-1 RA in CKD
  • Consult renal dietitian for nutritional guidance when combining GLP-1 RA with CKD diet
Adverse effects:
  • GI effects (nausea, vomiting, diarrhea): dose-dependent; start low and titrate slowly
  • No class-wide increase in pancreatitis, pancreatic cancer, or hypoglycemia (meta-analysis of 8 trials, n=60,080)
  • Contraindicated: personal/family history of medullary thyroid cancer, MEN2
  • Monitor retinopathy: especially in high-risk patients (older age, T2D duration ≥10 years)

4.6 Metformin - Now Repositioned (Grade 1B)

Recommendation 4.6.1 (Grade 1B): Recommend metformin in T2D + CKD + eGFR ≥30 who have not achieved glycemic targets despite SGLT2i and GLP-1 RA, or cannot use those medications.
This is a significant repositioning - metformin is now placed as a third-line glycemic agent after SGLT2i and GLP-1 RA, reflecting the primacy of cardiorenal protection over glucose-lowering per se.
eGFR (ml/min/1.73m²)Metformin Guidance
≥60Full dose; monitor annually
45-59Dose reduction may be appropriate for some
30-44Dose reduction required
<30Contraindicated
  • Monitor eGFR more frequently when eGFR <60
  • Kidney transplant recipients with T2D and eGFR ≥30: treat per T2D+CKD algorithm
  • Monitor vitamin B12 after >4 years of metformin use

4.7 Type 1 Diabetes - Summary

Key recommendations applicable to T1D include:
  • HbA1c target <6.5-8.0% (individualized)
  • CGM offered to all T1D
  • RASi for hypertension + albuminuria
  • SGLT2i: Grade 1A for T2D, but no adequate T1D trials - remains a research need; not a Grade 1 recommendation in T1D
  • nsMRA (4.7.1, Grade 2C): Suggest adding nsMRA in T1D + eGFR ≥25 + normal K+ + UACR ≥200 mg/g on max-tolerated RASi (higher threshold than T2D, reflecting limited evidence)
  • Lifestyle recommendations (0.8 g protein/kg/day, sodium <2 g/day, ≥150 min moderate activity/week) apply to both T1D and T2D

Treatment Algorithm Summary (T2D + CKD)

Foundational Baseline: Lifestyle + BP control + Statin + Low-dose Aspirin (if 2° prevention)

Step 1 - ALWAYS:
  → ACEi or ARB (if hypertension + albuminuria; Grade 1B)

Step 2 - SIMULTANEOUSLY or early:
  → SGLT2i (eGFR ≥20; Grade 1A) - primary cardiorenal protection
  → nsMRA (eGFR ≥25, normal K+, UACR ≥30 mg/g on max RASi; Grade 1A)

Step 3 - For high CV/kidney risk or glycemic targets not met:
  → GLP-1-based therapy (preferably semaglutide, liraglutide, or dulaglutide; Grade 1A)

Step 4 - If glycemic targets still not met (or cannot use SGLT2i/GLP-1):
  → Metformin (eGFR ≥30; Grade 1B)
  → Other glucose-lowering agents (insulin, DPP-4i, etc.) - no Grade 1A cardiorenal benefit

Key Changes vs. KDIGO 2020

Aspect20202026
SGLT2i grade1B1A
SGLT2i eGFR threshold for initiation≥30≥20
nsMRA grade1B1A
GLP-1 RA grade1B1A
Metformin positionFirst-line glycemic agentThird-line (after SGLT2i + GLP-1 RA)
CKD prevention emphasisMentionedMajor new section with formal ADA/KDIGO consensus statements
CGMOptionalMandated for all T1D; expanded T2D guidance
Combination SGLT2i + nsMRASequentialSimultaneous initiation supported (CONFIDENCE trial)
TirzepatideNot mentionedAddressed (non-inferior to dulaglutide; SURPASS CVOT)
FLOW trialNot availableExplicitly cited (semaglutide as first GLP-1 with dedicated kidney outcome trial)

Research Gaps Highlighted

  • Long-term (>5 yr) safety of SGLT2i in T2D+CKD
  • SGLT2i cardio-kidney benefits in T1D
  • SGLT2i in kidney transplant recipients and eGFR <20 or dialysis
  • Tirzepatide dedicated CKD trial outcomes (SURPASS-KIDNEY pending)
  • Alternative glycemic biomarkers for advanced CKD/dialysis
  • CGM target metrics specific to CKD
  • Automated insulin delivery systems (closed-loop) in CKD
  • nsMRA benefit data on top of SGLT2i (FIDELIO/FIGARO enrolled mostly pre-SGLT2i era patients)
  • Cost-effectiveness analyses combining foundational therapies in resource-limited settings

Important caveat: This is a Public Review Draft (March 2026). Recommendations may change based on feedback received before final publication. The document explicitly states it should not be used to define a standard of care at this stage.

How to assess volume status in a patient, also take reference from Harrison 22nd

Reading File
Searching the medical library for Harrison's content on volume status assessment...
Finding Sources
Finding Sources
Finding Sources
Finding Sources
Finding Sources
Finding Sources
Finding Sources
Reading File
Reading File
Reading File
Reading File
Reading File
Reading File
Finding Sources
Finding Sources
Finding Sources
I now have comprehensive content from Harrison's 22nd edition. Let me compile the full answer.

Assessment of Volume Status

Volume status assessment is one of the most fundamental clinical skills in medicine - particularly in nephrology, critical care, and emergency medicine. It integrates history, physical examination, laboratory data, and hemodynamic monitoring.

1. Physiological Framework

The extracellular fluid volume (ECFV) comprises the intravascular (plasma) and interstitial compartments. Volume status can exist in three states:
StateDescription
EuvolemiaNormal ECFV and intravascular filling
HypovolemiaReduced ECFV - combined salt and water loss
HypervolemiaExpanded ECFV - sodium and water excess
As Harrison's 22nd notes: "True volume depletion, or hypovolemia, generally refers to a state of combined salt and water loss, leading to contraction of the ECFV." - Harrison's 22nd, Chapter on Fluid and Electrolyte Disorders.

2. History

A careful history usually identifies the cause and direction of volume change.
Symptoms of hypovolemia:
  • Fatigue, weakness, thirst, postural dizziness
  • Oliguria, abdominal/chest pain
  • Confusion or obtundation (severe)
Sources of volume loss to ask about:
CategoryCauses
RenalDiuretics, osmotic diuresis (glycosuria, mannitol), DI, mineralocorticoid deficiency, salt-wasting nephropathy, AKI recovery phase
GIVomiting, diarrhea, NG drainage, fistula (~9L enters GI tract daily, 98% reabsorbed)
Skin/respiratoryInsensible losses 500-650 mL/day; fever, hyperventilation, burns, sweating
Third-spacePeritonitis, pancreatitis, hypoalbuminemia (oncotic pressure loss), bowel obstruction
Harrison's 22nd: "Nonrenal causes of hypovolemia include fluid loss from the GI tract, skin, and respiratory system. Accumulations of fluid within specific tissue compartments, typically the interstitium, peritoneum, or GI tract, can also cause hypovolemia."
Symptoms of hypervolemia: Dyspnea, orthopnea, ankle swelling, weight gain, reduced urine output (in cardiac/hepatic/renal disease).

3. Physical Examination

3A. Hypovolemia Signs

SignClinical SignificanceNotes from Harrison's 22nd
Dry mucous membranesModest sensitivity for dehydration"Less than ideal markers in adult patients"
Reduced skin turgorNon-specific, age-affected"Less than ideal markers" - not reliable in adults
Decreased JVPMore reliable sign of hypovolemiaMeasured at the sternal angle; flat neck veins suggest low filling pressures
Orthostatic tachycardiaIncrease >15-20 bpm on standingMore reliable sign of hypovolemia per Harrison's 22nd
Orthostatic hypotensionDrop >10-20 mmHg systolic on standingMore reliable sign of hypovolemia per Harrison's 22nd
Tachycardia (resting)Compensatory responseNon-specific
Hypotension (resting)Suggests significant volume lossLate finding - indicates >20-30% volume depletion
Harrison's 22nd explicitly states: "More reliable signs of hypovolemia include a decreased jugular venous pressure (JVP), orthostatic tachycardia (an increase of >15-20 beats/min upon standing), and orthostatic hypotension (a >10-20 mmHg drop in blood pressure on standing)."
Severe hypovolemic shock signs:
  • Hypotension + tachycardia
  • Peripheral vasoconstriction, cold extremities
  • Peripheral cyanosis
  • Oliguria/anuria
  • Altered mental status

3B. Hypervolemia Signs

SignSuggests
Raised JVP (>4 cm above sternal angle)Elevated right heart filling pressures
Peripheral pitting edemaInterstitial sodium-water excess
Pulmonary crackles / crepitationsPulmonary edema
Pleural effusion (dullness, reduced breath sounds)Volume overload
AscitesHepatic or severe hypoalbuminemic cause
S3 gallopCardiac volume overload
Hepatojugular refluxRight heart congestion

3C. Jugular Venous Pressure - Clinical Technique

  • Position patient at 30-45° recumbent
  • Identify internal jugular vein pulsation (biphasic, non-palpable)
  • Measure vertical height above the sternal angle
  • Normal: ≤4 cm; elevated: >4 cm; flat: suggests hypovolemia
  • JVP correlates with right atrial pressure: add 5 cm to give estimated RAP in cmH₂O

4. Laboratory Assessment

4A. Urine Studies

TestHypovolemia (non-renal)Hypovolemia (renal cause)Hypervolemia
Urine Na⁺<20 mEq/L>20 mEq/L (tubular dysfunction)Variable
Urine osmolality>450 mOsm/kgLow/isosthenuricLow
FENa<1%>1% (ATN)Variable
Urine Cl⁻<25 mEq/L (in vomiting/alkalosis)VariableVariable
Harrison's 22nd key teaching: "The urine Na⁺ concentration is typically <20 mM in nonrenal causes of hypovolemia, with a urine osmolality of >450 mOsm/kg."
Important caveat: In patients with metabolic alkalosis (vomiting, diuretics), urine Na⁺ may be falsely elevated because bicarbonaturia forces Na⁺ excretion. In this setting, use urine Cl⁻ <25 mEq/L as the more accurate marker.
"Patients with hypovolemia and a hypochloremic alkalosis due to vomiting, diarrhea, or diuretics will typically have a urine Na⁺ concentration >20 mM... the urine Cl⁻ concentration in this setting is a more accurate indicator of volume status." - Harrison's 22nd

4B. Serum Studies

TestFindingInterpretation
BUN/creatinine ratio>20:1Prerenal azotemia (but BUN unreliable alone)
Serum creatinineElevatedReduced GFR - creatinine is more dependable than BUN
Serum albuminLowHypoalbuminemia → third-space losses, oncotic pressure reduction
Serum Na⁺VariableHypernatremia if water loss > salt loss; hyponatremia if salt loss > water loss
Serum K⁺ElevatedReduced GFR + distal Na⁺ delivery in hypovolemia impairs K⁺ excretion
Bicarbonate/lactateMetabolic acidosis (high AG)Lactic acidosis in shock; hyperchloremic in diarrhea
HematocritElevatedHemoconcentration in dehydration
Harrison's 22nd: "Routine chemistries may reveal an increase in BUN and creatinine, reflective of a decrease in GFR. Creatinine is the more dependable measure of GFR, because BUN levels may be influenced by tubular reabsorption ('prerenal azotemia'), increased urea generation in catabolic states..."

5. Hemodynamic Monitoring (ICU/Advanced Setting)

5A. Static (Filling Pressure) Parameters

ParameterMethodHypovolemiaHypervolemiaLimitation
CVPCentral venous catheter<5 cmH₂O>12 cmH₂OPoor predictor of fluid responsiveness alone
PCWPSwan-Ganz catheter<6 mmHg>18 mmHgInvasive; used in mixed/cardiogenic shock
PA catheterRight heart catheterizationProvides CO, SVR, SvO₂-Reserved for unclear or mixed shock
Harrison's 22nd notes CVP targets have fallen out of favor: "Protocolized fluid resuscitation targets including CVP of 8-12 mmHg, central venous O₂ saturation >70%, and urine output ≥0.5 mL/kg per h have not been associated with improved mortality and so are not recommended to guide fluid resuscitation."

5B. Dynamic (Fluid Responsiveness) Parameters - Preferred

These assess whether cardiac output will increase with a fluid bolus (i.e., whether the patient is on the ascending limb of the Frank-Starling curve):

Passive Leg Raise (PLR) Test

  • Technique: Patient supine at 45°, then bed tilted to Trendelenburg (horizontal trunk, legs elevated at 45°)
  • Mechanism: Autotransfusion of ~300 mL from lower limbs to central circulation
  • Positive response: Increase in cardiac output (or pulse pressure) within 1 minute = fluid responsive
  • Can be used in spontaneously breathing patients (unlike SVV/PPV)
  • Harrison's 22nd: "The PLR test can predict responsiveness to additional IV fluid by providing the patient with an endogenous volume bolus."

Pulse Pressure Variation (PPV) / Stroke Volume Variation (SVV)

  • Requires mechanical ventilation in volume-controlled mode, no arrhythmias
  • >12% SV variation = volume-responsive state
  • Reflects cyclic changes in venous return during positive-pressure ventilation
  • Harrison's 22nd: "A >12% SV variation suggests a volume-responsive state. This measurement requires that the patient be in a volume cycle mode of ventilation, without breath-to-breath variations in intrathoracic pressure and without arrhythmias."

5C. Point-of-Care Ultrasound (POCUS)

IVC assessment (most commonly used):
IVC DiameterIVC Collapsibility with InspirationInterpretation
<2.1 cm + collapses >50%YesLow RAP (~0-5 mmHg); suggests hypovolemia
>2.1 cm + collapses <50%NoElevated RAP (>10 mmHg); suggests volume overload or right heart failure
Intermediate values20-50% collapseIndeterminate; correlate clinically
Lung POCUS:
  • B-lines (≥3 per zone, bilateral): pulmonary edema/congestion
  • Pleural effusions: bilateral suggest cardiac/renal overload; unilateral consider exudate
Cardiac POCUS:
  • Hyperdynamic LV with small cavity = hypovolemia ("kissing walls")
  • Dilated, poorly contracting LV = cardiogenic state
  • Serial LV assessment during fluid bolus guides resuscitation
Harrison's 22nd: "There is also increased use of echocardiography to assist in determination of intravascular fluid status, with a variety of static and dynamic variables... The most commonly used parameters to assess adequacy of volume resuscitation are IVC diameter and IVC collapse."

6. Integrated Approach by Clinical Context

Context 1: Suspected Hypovolemia (e.g., Prerenal AKI, Diarrhea, Sepsis)

Clinical history → physical exam (JVP, orthostatic vitals)
→ Urine Na⁺ + osmolality + FENa
→ BUN:creatinine ratio, serum electrolytes
→ POCUS (IVC, cardiac)
→ PLR test (or fluid challenge with response monitoring)
→ If ICU + ventilated: assess PPV/SVV

Context 2: Suspected Hypervolemia (e.g., Heart Failure, CKD, Nephrotic Syndrome)

Clinical history (dyspnea, orthopnea, edema, weight gain)
→ JVP elevation, S3, pulmonary crackles, peripheral edema
→ BNP/NT-proBNP (elevated in cardiac/volume overload)
→ Chest X-ray (vascular congestion, effusions, cardiomegaly)
→ POCUS (lung B-lines, IVC dilation, LV function)
→ Echocardiogram for LVEF and filling pressures

Context 3: Uncertain Volume Status (Common in CKD/AKI)

This is the most clinically challenging scenario. In CKD/AKI:
  • Physical exam may be unreliable (chronic edema, reduced skin turgor from uremia)
  • BUN:creatinine ratio may be spuriously elevated from catabolism, not pre-renal state
  • POCUS is most useful: IVC + lung assessment combination
A fluid challenge (250-500 mL crystalloid bolus) with monitored response (HR, BP, urine output, repeat lung POCUS) remains a pragmatic tool.

7. Summary Table: Clinical Tools for Volume Assessment

ToolBest ForKey FindingsLimitations
HistoryAll patientsLosses vs. gainsSubjective
JVPQuick bedsideFlat = low; elevated = highOperator skill dependent
Orthostatic vitalsAmbulatory hypovolemia>15-20 bpm HR rise; >10-20 mmHg BP dropCannot use in shock
Urine Na⁺/FENaDistinguishing prerenal from ATN<20 mEq/L or FENa <1% = prerenalConfounded by diuretics, alkalosis
Urine Cl⁻Alkalosis with volume loss<25 mEq/L = hypovolemic-
BUN:Cr ratioPrerenal azotemia>20:1Confounded by catabolism, GI bleed
PLR testFluid responsiveness (all patients)CO rise = volume responsiveRequires CO monitoring (PPV or echo)
PPV/SVVMechanically ventilated ICU patients>12% = volume responsiveOnly with volume-controlled ventilation
IVC POCUSQuick bedside; ICU + wardCollapsible = hypo; distended = hyperCardiac tamponade, RV failure confounders
CVPICU monitoring<5 low; >12 highAlone is poor predictor of responsiveness
PA catheter (Swan-Ganz)Mixed/cardiogenic shockPCWP, CO, SVR, SvO₂Invasive; no survival benefit shown
BNP/NT-proBNPCardiac volume overloadElevated = congestionElevated also in CKD, PE, RV strain

Key Harrison's 22nd Principle: Physical examination signs like skin turgor and dry mucous membranes are "less than ideal markers" in adults. The most clinically reliable bedside findings for hypovolemia are decreased JVP, orthostatic tachycardia (>15-20 bpm), and orthostatic hypotension (>10-20 mmHg) (Harrison's 22nd - Fluid and Electrolyte Disorders, Chapter on Hypovolemia). For resuscitation guidance, dynamic parameters (PLR, PPV/SVV) and POCUS are preferred over static filling pressures (CVP) (Harrison's 22nd - Initial Treatment of Shock).
This is a shared conversation. Sign in to Orris to start your own chat.