What Is Telemetry? How It Works, RTUs, and Examples

Telemetry is the automatic measurement of data at a remote location and its transmission to another place, where it is stored, displayed, and analyzed. A sensor takes the reading, a remote unit sends it over radio, cellular, or satellite, and a platform receives the data and raises an alarm when something is out of range.
It's 3 in the morning and the level in the tank that supplies a rural water system is dropping faster than usual. Nobody is on site. The level sensor records the drop, the remote telemetry unit next to the tank sends the reading over the cellular network, and the on-call operator gets an alarm on their phone. Before driving out, they check the last few hours of tank level and the pump status, so they already know whether to look for a leak or a stalled pump.
This guide covers where the word comes from, the four parts of a telemetry system, what a remote telemetry unit (RTU) does, where telemetry is used, how it differs from telematics, telecontrol, and SCADA, and how to set up and budget a system. It's written for operations managers, system integrators, and device manufacturers, with short notes on hospital and software telemetry, which share the name. If you already have devices in the field and want one place to collect their data under your own brand, see how the Cloud Studio IoT platform works.
Where the Word Telemetry Comes From
The word joins two Greek roots: tele, "far," and metron, "measure." Telemetry means measuring at a distance, whether the link is copper wire, radio, or satellite.
Weather observation is an early example. The U.S. National Weather Service has taken upper-air observations with radiosondes since the late 1930s, and today's radiosondes hang below a balloon and transmit pressure, temperature, relative humidity, and GPS position every second.
Space exploration took the idea much further. Spacecraft send science and engineering data modulated on the downlink carrier, received on Earth by the antennas of NASA's Deep Space Network.
On the ground, utilities applied the same principle to assets spread across a territory. Most U.S. Geological Survey streamgages, for example, transmit stage data by satellite to USGS computers, which turn it into streamflow estimates.
What IoTITermIoT (Internet of Things)The IoT (Internet of Things) is the network of physical objects with sensors, software and connectivity that collect and exchange data and act autonomously.View profile changed is the cost of each measurement point. Low-power sensors, networks like LoRaWAN
ProtocolLoRaWANOpen long-range, low-power LPWANView profile and NB-IoT
ProtocolNB-IoT3GPP-standardized cellular LPWAN — carrier coverageView profile, and cloud platforms make telemetry affordable at sites where it never paid off before, such as a diesel tank on a farm or the pump of an irrigation well.
How a Telemetry System Works
A telemetry system has four parts, and each one can fail on its own: the sensor that measures, the remote unit that reads and transmits, the communication link, and the platform that receives the data.
| Part | What it does | Examples |
|---|---|---|
| Sensor | Turns a physical quantity into a signal or digital value | Level, pressure, flow, temperature, energy, GPS |
| Remote unit | Reads sensors, timestamps each reading, and sends it | RTU, data logger, IoT gateway, telemetry modem |
| Communication link | Carries data from the remote site to the center | Cellular, LoRaWAN, satellite, radio, fiber |
| Platform | Receives, stores, and displays data, and raises alarms | Dashboards, alarms, reports, APIs |
Sensors
If the sensor measures badly, the rest of the system transmits the error very efficiently. Industrial sensors usually output a 4-20 mA current loop, a 0-10 V signal, pulses from a meter, a dry contact, or a serial bus such as ModbusMProtocolModbusThe most widespread industrial fieldbusView profile over RS-485. The guide to IoT sensor types and protocols covers each family.
Communication Link
| Link | Fits | Watch for |
|---|---|---|
| Cellular (4G, LTE-M, NB-IoT) | Sites with carrier coverage | Data plan per device; 2G and 3G shutdowns |
| LoRaWAN | Many low-power sensors in one area | Small payloads; your own gateways or an operator network |
| Satellite | Sites with no coverage: wells, pipelines, vessels | Higher cost per message |
| Licensed radio (VHF or UHF) | Utilities with their own infrastructure | Licenses and repeaters |
| Wired, fiber, or Ethernet | Plants with a local network | Physical installation |
Many carriers have already shut down or are retiring their 2G and 3G networks, so check which technologies will stay active in your region before buying hardware. To choose between the two most common low-power options, read LoRaWAN vs NB-IoT, and for the protocol itself, the LoRa Alliance overview of LoRaWAN.
Platform
The platform receives messages over MQTTProtocolMQTTThe standard pub/sub protocol of IoTView profile or HTTP, or through the network server for LoRaWAN devices. It decodes them, stores the history, shows it on dashboards, evaluates alarms, generates reports, and exposes an API so other systems can read the data. For the publish/subscribe model behind MQTT, see what an MQTT broker is.
An alarm that flips on and off every time a value brushes the threshold ends up ignored. The fix is a return-to-normal value (hysteresis) and a minimum time the condition must hold before anyone gets notified.
What Is a Remote Telemetry Unit (RTU)?
A remote telemetry unit, also called a remote terminal unit (RTU), is a rugged field device that connects to sensors and equipment at an unattended site, collects their readings, and reports them to a central system. Most can also receive commands and switch outputs, such as starting a pump. RTUs are common in water and wastewater, electric utilities, and oil and gas, where sites are far apart and often lack grid power or a wired network.
What an RTU Does
- Reads inputs: analog signals (4-20 mA), digital contacts, pulse counters, and serial devices over Modbus.
- Logs each reading with a timestamp, buffers data when the link drops, and sends it when the link returns.
- Reports on a schedule and also by exception: when a value crosses a threshold, it sends right away.
- Runs simple local logic, such as stopping a pump on high level even when the connection to the center is down.
- Runs on grid power, a battery, or a solar panel, and works across wide temperature ranges.
RTU vs PLC vs IoT Gateway
| Feature | RTU | PLC | IoT gateway |
|---|---|---|---|
| Main job | Monitor remote sites and report over long-distance links | Fast local control of machines and processes | Collect data from many devices and forward it |
| Typical location | Wells, tanks, lift stations, substations, pipelines | Plant floor and machine cabinets | Plant, building, or site edge |
| Power | Often battery or solar | Mains power | Usually mains power |
| Communications | Cellular, radio, satellite; DNP3, Modbus, IEC 60870-5-104 | Industrial Ethernet and fieldbuses | Ethernet, Wi-Fi, cellular; MQTT, HTTP |
| Data handling | Logs, buffers, reports by exception | Runs control logic in fast scan cycles | Translates protocols, buffers, forwards |
The lines blur in practice. Many PLCs now ship with cellular or Ethernet modules, and many RTUs run control logic written in IEC 61131-3 languages, the same standard PLCs use. If your remote sites already have PLCs, the guide to IoT integration with PLCs explains how to get their data out.
How RTUs Report to a Platform
Traditional SCADA systems poll each RTU in turn over DNP3 or Modbus. DNP3 is widespread in North American water and electric utilities, while IEC 60870-5-104 is common in European power grids. Report by exception cuts traffic: the RTU speaks up when something changes, and the master polls less often just to confirm the site is alive. On a cellular or satellite link billed by data volume, that difference shows up on the monthly bill.
Newer RTUs and gateways publish to an MQTT brokerMTermMQTT brokerAn MQTT broker is the central server that receives messages from publishers and distributes them to subscribers by topic. Examples: Mosquitto, EMQX, HiveMQ.View profile over TLS, which suits cellular links and cloud platforms. When a device only speaks Modbus or another industrial protocol, an edge gateway translates it to MQTT and forwards the data. Either way, plan for the link to fail: the RTU should buffer readings, and the platform should flag any site that stops reporting.
Types of Telemetry and Where It's Used
Water, Energy, Oil, and Gas
Water utilities measure well level and flow, pump status, tank level, network pressure, and residual chlorine. Tank monitoring is one of the most common projects, for water, fuel, and chemicals. Energy teams read meters, substations, and solar plants, the starting point for any energy management program. Oil and gas operators watch wellheads, storage tanks, and pressure along pipelines.
Agriculture and Irrigation
Soil moisture probes, weather stations, flow meters, and pump status tell growers when and how much to irrigate without driving every field, and alert them when a center pivot stops.
Vehicles and Fleets
Vehicle telemetry combines GPS position with data from the vehicle itself: speed, fuel use, engine temperature, and diagnostic trouble codes read from the CAN busCProtocolCAN busRobust serial bus for automotive and industryView profile or OBD port. Formula 1 is the flashiest example. Cars send engine, brake, and tire data to the pit wall during every session, but only one way: since 2003, the rules have not allowed teams to change car settings remotely.
Space and Satellite
Satellites send housekeeping telemetry (temperatures, voltages, attitude) alongside instrument data and take commands from the ground. "Satellite telemetry" also covers using a satellite link to carry data from ground equipment, such as asset trackers or wells beyond cellular coverage.
Hospital Telemetry
In a hospital, telemetry means continuous heart monitoring for patients who can walk around. A small wireless transmitter sends the patient's ECG to a central station where nurses watch for alarms. Many hospitals have a dedicated telemetry unit for these patients.
Software Telemetry
In software, telemetry is the metrics, logs, and traces an application emits so its team can see how it behaves in production. OpenTelemetry is an open-source framework for generating, collecting, and exporting it. If you arrived here looking for observability tooling, that project is the place to start.
Telemetry vs Telematics vs Telecontrol vs SCADA
These terms get used interchangeably. The difference is which way the data travels and how much each system covers.
| Term | What it does | Data direction | Example |
|---|---|---|---|
| Telemetry | Measures at a distance and transmits | Field to center | Tank level every hour |
| Telecontrol | Sends commands to remote equipment | Center to field | Start a pump or close a valve |
| Telematics | Combines telecom and computing to manage data | Both ways | Delivery fleet management |
| SCADA | Supervises and controls a whole process | Both ways | A city's drinking water network |
| Remote monitoring | Uses telemetry to watch assets from afar | Field to center | Checking a plant's status on a phone |
Telecontrol closes the loop that telemetry opens: if the tank is full, it turns the pump off. Telematics is broader. A fleet telematics system uses each vehicle's telemetry as one input and adds routing, driver communication, and maintenance scheduling.
SCADA (supervisory control and data acquisition) combines telemetry, telecontrol, operator screens, alarms, and history for an entire process. The guide what is a SCADA system walks through its components.
How to Set Up a Telemetry System and What It Costs
1. Start With the Decision
Write down which decision the data will support, such as scheduling a tank refill or deciding whether to send a technician. That sets the variables, the reading interval, and who gets each alarm. Hourly readings may be enough for refills, while a pipe burst needs an alert within minutes.
2. Match Sensors to the Signal and the Site
Check that the remote unit accepts each sensor's output (4-20 mA, pulses, Modbus). Review the IP rating, the temperature range, and whether the site is a hazardous location that requires certified equipment.
3. Choose the Remote Unit and Power
Pick an RTU, data logger, gateway, or sensors with built-in radios. Without grid power, size the battery or solar panel for the worst month of the year, and require local storage for readings while the link is down.
4. Measure Coverage at the Mounting Point
Carrier coverage maps show expected outdoor service. Inside a metal cabinet, in an underground vault, or next to a steel tank the signal can drop sharply, so measure at the exact mounting point before choosing a technology and a data plan.
5. Configure the Platform
Define sites, assets, variables, and units; dashboards for each role; alarms with hysteresis and a minimum duration; who receives each alert; and user permissions. If data must reach an ERP or an existing SCADA, plan the API integration from day one.
6. Run a Short Pilot
Install a few representative sites, including the one with the worst coverage. Compare readings with manual measurements, count lost messages, and check battery drain and false alarms. Then write an installation procedure and scale.
What Drives the Cost
There's no list price. Cost depends on how many points you measure, where they are, and how many years you'll run the system, so break the budget into line items and price each one:
| Line item | What it includes | Payment |
|---|---|---|
| Hardware | Sensors, remote unit, battery or solar, enclosure | One-time, plus replacements |
| Installation | Site visits, travel, civil work, commissioning | One-time |
| Connectivity | Cellular data plans, satellite airtime, LoRaWAN gateways or network | Recurring |
| Platform | License or subscription, cloud or on-premise | Recurring |
| Integration | Decoders, dashboards, ERP or SCADA connection | One-time, plus changes |
| Operations | Maintenance, batteries, calibration, support | Recurring |
Compare offers by cost per measurement point per year over the life of the project. At remote sites, travel can cost as much as the hardware, so longer battery life saves truck rolls. Then weigh the total against what missing data costs you today, starting with inspection trips and problems found late.
Where Cloud Studio IoT Fits in a Telemetry Project
Cloud Studio IoT is a white-label IoT platform. Device manufacturers, system integrators, and service operators use it to deliver telemetry to their customers under their own brand. It's the fourth part of the system, and it connects to the other three like this:
- over MQTT, with a dedicated MQTT server per instance and TLS encryption, or through its HTTP API;
- over LoRaWAN, through the network server you already use, with integrations for The Things Stack, LORIOT, ThingPark X, Helium, ChirpStackCTermChirpStackChirpStack is an open-source LoRaWAN Network Server to deploy and manage private end-to-end LoRaWAN networks.View profile, and Orbiwise (Cloud Studio IoT does not operate a LoRaWAN network server; it integrates with yours);
- and with Modbus and OPC UAOProtocolOPC UAInteroperability standard for industrial automationView profile equipment through a software gateway we install at the edge, which sends the data to the platform securely over MQTT.
Inside the platform you get dashboards, SCADA-style views that update in near real time, and downloadable reports. Alerts use a threshold, a return-to-normal value, and a minimum duration, and notify contacts by email, SMS, or voice call. Each end customer sees only its own data through permission-based separation.
The cloud service runs on AWS, and the platform can also be installed on-premise. For operator screens in industrial projects, see cloud SCADA.
The platform has more than 150,000 connected devices, most of them streetlights in Buenos Aires that Cloud Studio IoT manages and monitors with partner Smartmation. In the Canary Islands, for Gesplan (Government of the Canary Islands), 240 solar-powered 4G sensors went into 120 schools across all seven islands in 18 working days instead of the 79 planned, with 120 public-link dashboards.
Key Takeaways
- Telemetry measures at a remote site and sends the data elsewhere; telecontrol goes the other way.
- Evaluate sensor, remote unit, link, and platform separately.
- An RTU reads, buffers, and reports; a PLC controls; a gateway translates and forwards.
- Budget per measurement point per year, including installation, connectivity, and operations.
If you have a telemetry project on the table, talk to the team and bring your list of variables, sites, and existing equipment.
Frequently Asked Questions
What does remote telemetry mean?
Remote telemetry is measuring conditions at a distant, usually unattended site and sending the readings automatically to a central system. A water utility reading tank levels miles away, or an oil company tracking wellhead pressure, uses remote telemetry. The "remote" part stresses that nobody is on site: sensors, a remote unit, and a communication link do the work.
What is an RTU used for?
An RTU (remote terminal unit or remote telemetry unit) connects to sensors and equipment at a remote site, logs their readings, and reports them to a SCADA system or IoT platform. It is used at wells, tanks, lift stations, substations, and pipelines. Most RTUs also accept commands, so operators can start pumps or open valves from the control room.
What is telemetry vs monitoring?
Telemetry is the mechanism: measuring data at a remote point and transmitting it. Monitoring is the purpose: watching that data to spot problems and act on them. You can monitor a machine by walking past it, with no telemetry at all. Remote monitoring needs telemetry, because the readings have to travel from the site to wherever people are watching.
What is telemetry in healthcare?
In healthcareHIndustryHealthcareView profile, telemetry is continuous remote monitoring of a patient's vital signs, most often heart rhythm. The patient wears a small wireless transmitter that sends their ECG to a central station, where nurses or monitor technicians watch for dangerous rhythms. It lets patients at risk of abnormal heart rhythms walk around while staying under observation.
What is a telemetry unit and what does it do?
It depends on the context. In a hospital, a telemetry unit is a nursing floor where patients wear heart monitors that transmit continuously to a central station, usually a level of care between intensive care and a general ward. In industry, "telemetry unit" usually means a remote telemetry unit (RTU): the field device that reads sensors and sends their data to a central system.
What is telemetry data?
Telemetry data is the stream of time-stamped measurements a remote device sends: tank level, pressure, flow, temperature, GPS position, or battery voltage, along with device status and alarms. Each record usually carries a device ID, a timestamp, and one or more values. Stored over time, it becomes the history you use for trends, reports, and troubleshooting.
How much does a telemetry system cost?
There's no single price. Cost depends on the number of measurement points, sensor types, distance to each site, connectivity (cellular, LoRaWAN, or satellite), and the platform. Ask vendors for a breakdown of hardware, installation, connectivity, platform, integration, and operations, then compare offers by cost per measurement point per year over the life of the project.
Related Articles

LoRaWAN Network Server: What It Does and How to Choose
A LoRaWAN network server handles every message your sensors send, and the one you pick shapes your costs, who holds the keys, and how far the network can grow.

AI and IoT: Why Artificial Intelligence Needs the Internet of Things to Have Real Impact
Artificial intelligence without AI and IoT combined is like a brain without a nervous system: intelligent, but blind. It can imagine. It can assume. It can... hallucinate. But it cannot feel what is happening in the real world. This is not a casual metaphor. It is the reality fac

FIWARE in 2026: Open IoT Standards Meet AI Copilots
What FIWARE is in 2026, how NGSI-LD works, how an AI Copilot consumes FIWARE context data, and when an open-standards stack beats a commercial IoT platform.
Ready to Transform Your Business?
Contact us to discover how Cloud Studio IoT can help you achieve your goals.