Leaders Insights
Leaders Insights

Rester au meilleur niveau, un peu chaque jour.

DomainesMarketingDataFinanceIA
RessourcesApprendreTestOutilsBlogGlossaire
© 2026 Leaders Insights — Tous droits réservés.
Formations/Data in biotech and medtech/Data in biotech and medtech/Turning device telemetry into real-world evidence
3/4+150 XP

Data in biotech and medtech

1Structuring clinical trial data for integrity and reuse+1502ALCOA+ and data integrity in regulated environments+1503Turning device telemetry into real-world evidence+1504Building a closed-loop quality analytics system+150

Turning device telemetry into real-world evidence

# Turning device telemetry into real-world evidence

A single continuous glucose monitor (CGM) generates a reading every five minutes. That is roughly 288 data points per patient per day. Multiply that across millions of users, and one device category produces more clinical data in a week than most drug trials collect in years.

That firehose of data is not just a clinical convenience. It has become a regulatory asset. In this lesson we trace how device telemetry (the automatic, continuous stream of measurements a device sends back to manufacturers and clinicians) turns into real-world evidence (RWE) that regulators like the FDA accept to support new claims.

From telemetry to evidence: the basic pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète →

Telemetry is raw. Evidence is curated. The gap between them is where the work happens.

Here is the journey a CGM reading takes:

1. Sensor measures interstitial glucose and transmits to a phone app.

2.
App
relays data to the manufacturer's cloud, often near real time.

3. Cloud platform stores, cleans, and aggregates readings across the user base.

4. Analytics layer detects patterns: sensor failures, out-of-range readings, adverse events.

5. Regulatory and safety teams use the aggregated output for post-market surveillance and, sometimes, new regulatory claims.

Two very different uses sit at the end of that pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète →. Let us define both.

Post-market surveillance (PMS)

Once a device is approved and sold, manufacturers are legally required to keep watching how it performs in the real world. This is post-market surveillance. In the US, serious problems flow into the FDA's MAUDE database (Manufacturer and User Facility Device Experience), a public record of adverse event reports.

Telemetry supercharges PMS. Instead of waiting for a clinician to mail in a paper report, a pacemaker can flag a lead malfunction automatically.

Real-world evidence (RWE)

RWE is clinical evidence about a product derived from real-world datareal-world dataRWD, données collectées en dehors des essais cliniques contrôlés : dossiers médicaux, claims d'assurance, données de dispositifs connectés, base des Real-World Evidence (RWE). (data collected outside traditional randomized trials). Under the 21st Century Cures Act, the FDA has a formal framework for using RWE to support regulatory decisions, including new indications and label changes.

The key shift: telemetry that was once only a safety monitoring tool can now, if collected rigorously, help expand what a device is officially allowed to claim.

Case 1: The continuous glucose monitor

Modern CGMs from manufacturers like Dexcom and Abbott stream glucose data continuously. That stream feeds three data products at once.

Patient-facing. The app shows trends and alerts for highs and lows.

Clinician-facing. Aggregated reports summarize time in range (the percentage of the day a patient's glucose stays within target), a metric now widely used in diabetes care.

Manufacturer-facing. De-identified, pooled data across the user base.

That third stream is the RWE engine. A manufacturer can analyze how the device performs across age groups, skin types, and real-world wear conditions that a controlled trial never captures.

A concrete example of RWE impact: CGM makers have used real-world and trial data to expand labeling toward broader populations and, in some cases, to support claims that let patients dose insulin directly from the sensor reading without a confirmatory finger-stick. Each expansion requires evidence that the device is accurate enough at scale. Telemetry provides the volume.

Why data qualitydata qualityThe degree to which data is fit for purpose: accurate, complete, consistent, timely, valid and unique. Poor quality data undermines analytics, reporting and AI.Voir la définition complète → is the hard part

Raw telemetry is messy. Before it counts as evidence, teams must handle:

  • Missing data. Sensors fall off. Phones lose connection. Gaps must be documented, not silently dropped.
  • Provenance. You must prove which device version and firmware produced each reading.
  • De-identification. Patient data must be stripped of identifiers to meet HIPAAHIPAAHealth Insurance Portability and Accountability Act, loi américaine imposant la protection des données de santé (PHI). Violations : amendes jusqu'à 1,9M$ par catégorie de violation. (the US health privacy law) before pooling.
  • Bias. People who wear CGMs consistently may be healthier or more engaged than the general patient population. RWE analyses have to account for this.

A quick illustration of computing time in range from a raw glucose stream:

python
import pandas as pd

# readings: timestamped glucose values in mg/dL
readings = pd.read_csv("cgm_stream.csv", parse_dates=["timestamp"])

target_low, target_high = 70, 180
in_range = readings["glucose"].between(target_low, target_high)

time_in_range_pct = 100 * in_range.mean()
print(f"Time in range: {time_in_range_pct:.1f}%")

Simple to write. The hard part is trusting that cgm_stream.csv is complete, correctly attributed, and representative.

Case 2: The pacemaker

A pacemaker's telemetry is lower volume but higher stakes. Modern cardiac devices transmit data through remote monitoring systems, often overnight while the patient sleeps.

What flows back:

  • Battery status
  • Lead integrity (whether the wires connecting the device to the heart are working)
  • Arrhythmia episodes the device detected and treated
  • The device's own therapy decisions

From a single alert to population evidence

Consider one lead fracture alert. On its own, it is a PMS event: the manufacturer investigates, may notify the clinician, and if a pattern emerges, may issue a recall.

Now aggregate across an entire implanted population. If telemetry shows that a specific lead model fails at a higher-than-expected rate after a certain number of years, that signal can trigger:

  • A safety communication to physicians
  • A design change in the next generation
  • A recall, coordinated with the FDA

This is exactly the kind of long-horizon safety question that randomized trials cannot answer. Trials end. Implanted devices keep transmitting for a decade or more. Telemetry is the only practical way to watch a device age inside real patients.

🎬 [VIDEO: "What is Real-World Evidence?" — youtube.com — a short, plain-language explainer on how RWE differs from clinical trial data and where regulators accept it]

What makes telemetry count as regulatory-grade evidence

Not all data is created equal. Regulators distinguish between data you happen to have and data you can defend.

The FDA's RWE framework emphasizes two things:

Relevance. Does the data actually capture the outcome you care about? A CGM measures glucose well. It does not directly measure heart attacks, so it cannot alone support a cardiovascular claim.

Reliability. Was the data collected and processed with quality controls? This means documented data curation, validated algorithms, and an audit trail.

For device makers, this reframes data infrastructure as a regulatory function, not just an IT function. The team that designs your cloud schemaschemaA schema is the formal blueprint that defines how data is structured, named, typed, and related within a database, file, or message.Voir la définition complète → is, indirectly, shaping what claims you can make later.

The strategic implication

A device company that treats telemetry as exhaust (a byproduct to be discarded) leaves value on the table. A company that treats telemetry as a designed evidence pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète → can:

  • Detect safety issues earlier and cheaper than competitors
  • Support label expansions without funding a full new trial
  • Enter payer negotiations armed with real-world outcomes

The business case is not abstract. RWE-backed claims can shorten the path to new indications, and real-world outcome data increasingly matters to payers deciding what to reimburse.

Vérification des acquis

1. The lesson describes the relationship between telemetry and real-world evidence by saying 'Telemetry is raw. Evidence is curated.' What is the primary conceptual implication of this distinction?

2. Why does the lesson emphasize that one CGM produces roughly 288 readings per patient per day across millions of users?

3. How does continuous telemetry fundamentally change post-market surveillance (PMS) compared to traditional methods?

CHOIX MULTIPLES

4. Select ALL correct answers. Based on the telemetry-to-evidence pipeline described, which statements are accurate?

Sélectionnez toutes les réponses correctes.

CHOIX MULTIPLES

5. Select ALL correct answers about the distinction between post-market surveillance (PMS) and real-world evidence (RWE) as presented in the lesson.

Sélectionnez toutes les réponses correctes.

Where this gets hard: the limits

RWE is powerful, not magic. A few honest constraints:

Confounding. In real-world datareal-world dataRWD, données collectées en dehors des essais cliniques contrôlés : dossiers médicaux, claims d'assurance, données de dispositifs connectés, base des Real-World Evidence (RWE)., patients are not randomized. If sicker patients get a particular device, raw outcomes look worse even if the device is fine. Analysts use statistical methods to adjust, but adjustment is never perfect.

Selection effects. Telemetry only covers patients whose devices connect and who stay engaged. The patients you fail to observe may be exactly the ones at highest risk.

Interoperability. A hospital may use devices from several manufacturers, each with its own dataown dataData collected directly from your own customers and prospects through your own channels: your most reliable and privacy-compliant source.Voir la définition complète → format. Combining them into one evidence base is a genuine engineering challenge, and standards like HL7 FHIR aim to help but are unevenly adopted.

Privacy and consent. Using patient telemetry for evidence beyond direct care raises consent questions. What patients agreed to at implant may not clearly cover every downstream analysis.

None of these kill the value. They define the guardrails. The credible device companies are the ones that acknowledge these limits in their submissions rather than hiding them.

Key Takeaways

  • Telemetry is a two-lane road. The same data stream feeds routine post-market surveillance (safety monitoring) and, when curated rigorously, real-world evidence that can support new regulatory claims.
  • Volume alone is worthless. CGMs and pacemakers generate enormous data, but only documented provenance, handled missing data, and bias adjustment turn raw telemetry into regulatory-grade evidence.
  • Devices reveal what trials cannot. Long-horizon questions, like how a pacemaker lead ages over a decade, are answerable only through continuous real-world monitoring.
  • Data architecture is a regulatory decision. How you design storage, de-identification, and audit trails today determines which claims you can defend to the FDA tomorrow.
  • RWE has honest limits. Confounding, selection effects, and consent constraints mean RWE supplements rather than replaces controlled evidence. The strongest submissions name these limits directly.

Précédent

ALCOA+ and data integrity in regulated environments

Suivant

Building a closed-loop quality analytics system