{"id":1452,"date":"2026-09-07T00:30:45","date_gmt":"2026-09-07T00:30:45","guid":{"rendered":"https:\/\/mestric.com\/mqtt-v-proizvodnji\/"},"modified":"2026-09-07T00:30:45","modified_gmt":"2026-09-07T00:30:45","slug":"mqtt-v-proizvodnji","status":"publish","type":"post","link":"https:\/\/mestric.com\/sl\/mqtt-v-proizvodnji\/","title":{"rendered":"Zagon protokola MQTT v produkcijskem okolju za vodje obratov: US$1.000 na stroj"},"content":{"rendered":"<\/p>\n<p>MQTT is a suitable, lightweight messaging protocol for production environments, and it works best when paired with an edge gateway, a broker and a proper MES integration. It gives you scalable, bi-directional data flow between machines and software without heavy network overhead. The practical next step is not a factory-wide rollout: pilot one machine with a single gateway and broker, prove the data flow, then scale.<\/p>\n<hr>\n<blockquote>\n<p><strong>TL;DR:<\/strong><\/p>\n<ul>\n<li>Local brokers near machines maintain low latency for real-time control and monitoring, while central brokers support enterprise analytics and reporting.<\/li>\n<li>Piloting on inexpensive hardware like Raspberry Pi, then upgrading to industrial-grade devices, typically costs around US$1,000 per machine at scale, depending on wiring and existing assets.<\/li>\n<li>Securing MQTT involves enabling TLS, using certificate-based authentication, and implementing topic-level access controls to prevent security vulnerabilities.<\/li>\n<li>Proper topic hierarchy, QoS settings, and a phased pilot are essential to avoid operational failures and excessive bandwidth use in large-scale deployments.<\/li>\n<li>Integrating MQTT with legacy protocols like Modbus or OPC UA requires careful translation layers, which should be well-documented to prevent long-term maintenance issues.<\/li>\n<\/ul>\n<\/blockquote>\n<hr>\n<div data-blg-cta=\"after_tldr\" data-blg-cta-layout=\"banner\" style=\"margin:28px 0;font-family:-apple-system, BlinkMacSystemFont, &apos;Segoe UI&apos;, Roboto, Helvetica, Arial, sans-serif\">\n<div style=\"border-radius:26px;padding:22px\">\n<div style=\"background:#ffffff;border-radius:18px;overflow:hidden\">\n<div style=\"padding:34px 30px;text-align:center\">\n<div style=\"margin:0 0 18px\"><span style=\"display:inline-block;max-width:100%;border-radius:999px;padding:6px 13px;font-size:12px;font-weight:800;letter-spacing:0.1em;text-transform:uppercase;line-height:1.3;background:#669f94;color:#ffffff\">Mestric<\/span><\/div>\n<div style=\"font-size:26px;font-weight:800;line-height:1.2;letter-spacing:-0.01em;color:#1f2937;margin:0\">Turn Machine Data Into Decisions<\/div>\n<div style=\"width:56px;height:6px;border-radius:3px;background:#669f94;margin:12px 0 14px;margin-left:auto;margin-right:auto\"><\/div>\n<div style=\"font-size:15px;line-height:1.55;color:#64748b;margin:0 0 24px;max-width:44em;margin-left:auto;margin-right:auto\">Mestric connects manufacturing equipment with real-time performance tracking, quality monitoring, productivity analytics, and AI-powered optimization tools.<\/div>\n<p><a href=\"https:\/\/mestric.com\/sl\/\" style=\"display:inline-block;border-radius:10px;font-weight:700;font-size:15px;text-decoration:none;padding:13px 26px;background:#669f94;color:#ffffff\">Explore Mestric<\/a><\/div>\n<\/div>\n<\/div>\n<\/div>\n<h2 id=\"table-of-contents\">Table of Contents<\/h2>\n<ul>\n<li><a href=\"#mqtt-v-proizvodnji-the-protocol-fundamentals-you-need-first\">MQTT v proizvodnji: the protocol fundamentals you need first<\/a><\/li>\n<li><a href=\"#how-mqtt-fits-into-a-factory-architecture\">How MQTT fits into a factory architecture<\/a><\/li>\n<li><a href=\"#piloting-mqtt-hardware-phases-and-realistic-costs\">Piloting MQTT: hardware, phases and realistic costs<\/a><\/li>\n<li><a href=\"#securing-an-industrial-mqtt-deployment\">Securing an industrial MQTT deployment<\/a><\/li>\n<li><a href=\"#where-mqtt-changes-production-outcomes\">Where MQTT changes production outcomes<\/a><\/li>\n<li><a href=\"#where-mqtt-rollouts-go-wrong\">Where MQTT rollouts go wrong<\/a><\/li>\n<li><a href=\"#connecting-mqtt-to-legacy-protocols-and-older-equipment\">Connecting MQTT to legacy protocols and older equipment<\/a><\/li>\n<li><a href=\"#storing-and-managing-the-data-mqtt-generates\">Storing and managing the data MQTT generates<\/a><\/li>\n<li><a href=\"#scaling-mqtt-across-a-large-factory-footprint\">Scaling MQTT across a large factory footprint<\/a><\/li>\n<li><a href=\"#turning-mqtt-streams-into-dashboards-and-analytics\">Turning MQTT streams into dashboards and analytics<\/a><\/li>\n<li><a href=\"#how-mestric-reads-mqtt-telemetry-on-the-shop-floor\">How Mestric reads MQTT telemetry on the shop floor<\/a><\/li>\n<li><a href=\"#see-how-mestric-turns-mqtt-data-into-shop-floor-decisions\">See how Mestric turns MQTT data into shop-floor decisions<\/a><\/li>\n<li><a href=\"#sources\">Sources<\/a><\/li>\n<\/ul>\n<h2 id=\"mqtt-v-proizvodnji-the-protocol-fundamentals-you-need-first\">MQTT v proizvodnji: the protocol fundamentals you need first<\/h2>\n<p>MQTT works on a publish\/subscribe model. A machine (or its gateway) publishes a message to a topic on a broker; anything subscribed to that topic receives it instantly, with no direct connection between sender and receiver. That decoupling is precisely what makes MQTT v proizvodnji so much easier to manage than the point-to-point integrations that dominate older SCADA setups.<\/p>\n<p>The protocol\u2019s <a href=\"https:\/\/mqtt.org\/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">three quality-of-service levels<\/a>, retained messages and persistent sessions matter more on a factory floor than they might elsewhere. QoS 0 fires and forgets, QoS 1 guarantees delivery but allows duplicates, and QoS 2 guarantees exactly one delivery, at the cost of extra handshaking. MQTT 5 adds richer error reporting and message expiry over MQTT 3.1.1, and the protocol carries ISO 20922 standard status, which matters when procurement teams ask whether a technology is vendor-locked or genuinely open.<\/p>\n<p>Why manufacturers keep choosing it:<\/p>\n<ul>\n<li>Minimal header overhead, so it runs comfortably on constrained edge hardware and patchy cellular links<\/li>\n<li>Bi-directional by design, so commands flow down to machines as easily as telemetry flows up<\/li>\n<li>Broker-mediated architecture, so adding a new subscriber never means rewiring existing devices<\/li>\n<li>Built-in TLS support for encrypting data in transit across untrusted OT networks<\/li>\n<\/ul>\n<h2 id=\"how-mqtt-fits-into-a-factory-architecture\">How MQTT fits into a factory architecture<\/h2>\n<p>Where you put the broker decides how the whole system behaves. A local broker sitting close to the machines keeps HMI and SCADA response times fast, because messages never leave the plant network. A central or cloud broker, by contrast, is built for enterprise reporting and cross-site analytics, where a few hundred milliseconds of latency is irrelevant.<\/p>\n<p>Most production deployments end up combining both, structured roughly like this:<\/p>\n<ol>\n<li><strong>Edge layer<\/strong>: gateways read PLC or sensor signals and publish to a local broker under a consistent topic structure, often described as a unified namespace (UNS), so <code>plant\/line1\/machine3\/telemetry<\/code> means the same thing on every site.<\/li>\n<li><strong>Local broker<\/strong>: handles time-sensitive HMI and SCADA subscriptions with minimal lag, and can run independently if the wider network drops.<\/li>\n<li><strong>Bridging and clustering<\/strong>: local brokers bridge to a central broker cluster, which gives resilience if one node fails and lets MQTT brokers stream data outward to analytics platforms and MES.<\/li>\n<li><strong>MES\/SCADA consumption<\/strong>: rather than polling machines directly, MES and SCADA subscribe to relevant topics and get pushed updates the moment something changes.<\/li>\n<\/ol>\n<p>Many plants run MQTT alongside OPC UA rather than instead of it. MQTT handles lightweight telemetry transport; OPC UA supplies the richer semantic data model where machines need it.<\/p>\n<h2 id=\"piloting-mqtt-hardware-phases-and-realistic-costs\">Piloting MQTT: hardware, phases and realistic costs<\/h2>\n<p>Skip the enterprise rollout on day one. Every documented success story in industrial MQTT starts narrow and expands only once the basics are proven.<\/p>\n<ol>\n<li><strong>Prototype on cheap hardware.<\/strong> A Raspberry Pi is enough to prove the concept on one machine: read a signal, publish it, confirm the broker and dashboard show the right value.<\/li>\n<li><strong>Move to industrial-grade edge I\/O once validated.<\/strong> Ruggedised units in the groovRIO class replace the prototype hardware for production use, because they tolerate factory power, vibration and temperature swings a Pi was never built for.<\/li>\n<li><strong>Decide broker placement before scaling.<\/strong> Local broker for machine-level control loops, bridged to a central cluster for reporting, is the pattern that holds up as sites multiply.<\/li>\n<li><strong>Run a checklist before go-live<\/strong>: TLS enabled, authentication configured, topic structure agreed, QoS assigned per message type, and a rollback plan if the gateway fails.<\/li>\n<li><strong>Define success metrics up front<\/strong>: message latency under load, zero unplanned downtime attributable to the pilot, and dashboard data matching manual logs for at least two weeks.<\/li>\n<\/ol>\n<p>One of the better-documented industrial rollouts, from MTNA\u2019s deployment covered by Automation World, prototyped on a Raspberry Pi before moving to Opto 22 groovRIO devices, and reported an implemented budget of roughly US$1,000 per machine once scaled across sites. That figure is a useful planning anchor rather than a universal quote, since wiring complexity and existing PLC age both move the number.<\/p>\n<p><strong>Strokovni nasvet:<\/strong> <em>Run the pilot on the machine with the worst existing visibility, not the easiest one to wire up. That is where the business case for expansion writes itself.<\/em><\/p>\n<p>Before you touch a second machine, confirm the <a href=\"https:\/\/www.automationworld.com\/communication\/article\/55322237\/opto-22-scaling-industrial-iot-in-legacy-environments-mtnas-journey-with-mqtt-and-groovrio\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">pilot validates naming and QoS conventions<\/a> you intend to reuse everywhere else. Retrofitting topic structures across twenty machines is far costlier than getting them right on one.<\/p>\n<h2 id=\"securing-an-industrial-mqtt-deployment\">Securing an industrial MQTT deployment<\/h2>\n<p>An MQTT broker left open, or protected by a shared password everyone on the floor knows, is not a hypothetical risk. It is one of the <a href=\"https:\/\/viris.si\/blog\/nevarne-konfiguracije-protokola-mqtt\/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">most commonly documented misconfigurations<\/a> in industrial deployments, and it is entirely avoidable.<\/p>\n<ul>\n<li>Force TLS on every connection and use certificate-based authentication (X.509) or OAuth rather than anonymous access<\/li>\n<li>Apply topic-level access control lists so a device can publish only where it needs to, and subscribe only to what its role requires<\/li>\n<li>Match QoS to the message: telemetry rarely needs QoS 2, but safety-critical commands often do<\/li>\n<li>Run brokers in a clustered, high-availability configuration with monitoring and regular backups, so one node failing does not blind the floor<\/li>\n<\/ul>\n<p><strong>Strokovni nasvet:<\/strong> <em>Reserve \u201cexactly once\u201d delivery for commands, not high-frequency telemetry. HiveMQ\u2019s own <a href=\"https:\/\/www.hivemq.com\/resources\/modernizing-the-manufacturing-industry\/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">modernisation guidance<\/a> treats QoS 2 as a complexity cost worth paying only where duplicate delivery would cause real harm.<\/em><\/p>\n<h2 id=\"where-mqtt-changes-production-outcomes\">Where MQTT changes production outcomes<\/h2>\n<p>The value shows up fastest on the shop floor, not in a boardroom slide. Once telemetry flows continuously instead of being logged by hand every hour, the gaps between what happened and what someone recorded start closing.<\/p>\n<ul>\n<li>Real-time dashboards replace end-of-shift paper logs, which tightens visibility into OEE the moment a line slows down<\/li>\n<li>Predictive maintenance models get a steady stream of sensor data to train on, catching drift before a machine actually fails<\/li>\n<li>Remote configuration and command topics let MES or IT push changes without anyone walking to a control panel<\/li>\n<li>Standardised telemetry across machines means a new site can be onboarded using the same topic conventions, not a bespoke integration<\/li>\n<\/ul>\n<p>Faster issue detection is the outcome most engineers notice first. When a spike in vibration or temperature publishes within seconds rather than surfacing on a shift report the next morning, the response window changes from hours to minutes. Explore how <a href=\"https:\/\/mestric.com\/sl\/seven-proven-benefits-real-time-monitoring\/\" target=\"_blank\" rel=\"noopener\">real-time monitoring<\/a> translates into measurable gains once the data pipeline is in place.<\/p>\n<h2 id=\"where-mqtt-rollouts-go-wrong\">Where MQTT rollouts go wrong<\/h2>\n<p>Most failed deployments do not fail because MQTT is the wrong protocol. They fail because of avoidable operational choices made under time pressure.<\/p>\n<ul>\n<li>Leaving brokers open or relying on shared credentials, which turns a monitoring tool into a security liability<\/li>\n<li>Building flat or inconsistent topic hierarchies, so a subscriber accidentally receives data from machines it was never meant to see<\/li>\n<li>Defaulting every message to QoS 2 or marking too much as retained, which causes duplicate deliveries and unnecessary bandwidth spikes<\/li>\n<li>Attempting a factory-wide rollout before a single pilot has proven the topic structure and QoS choices actually hold up<\/li>\n<\/ul>\n<p>Every one of these is a design decision, not a limitation of the protocol itself, which is why a deliberate pilot phase earns its place in every serious implementation plan.<\/p>\n<h2 id=\"connecting-mqtt-to-legacy-protocols-and-older-equipment\">Connecting MQTT to legacy protocols and older equipment<\/h2>\n<p>Most factories are not starting from a clean slate. Modbus, Profibus, and ageing PLCs running proprietary ladder logic are still doing the actual work on the floor, and none of them speak MQTT natively.<\/p>\n<p>The practical answer is an edge gateway that translates. It reads signals from the legacy protocol on one side and republishes them as MQTT topics on the other, without touching the machine\u2019s own control logic. That non-invasive approach matters more than it sounds: I\/O tapping rather than code modification keeps production risk low, because nobody is rewriting logic on a PLC that has run unattended for fifteen years.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/csuxjmfbwmkxiegfpljm.supabase.co\/storage\/v1\/object\/public\/blog-images\/organization-16618\/1788644095028_Legacy-machine-signals-translated-into-MQTT-topics.jpeg\" alt=\"Legacy machine signals translated into MQTT topics\"><\/p>\n<p>Where the equipment already speaks OPC UA, the gateway\u2019s job is simpler: OPC UA servers can often publish directly into an MQTT broker, giving you the semantic richness of OPC UA\u2019s data model alongside MQTT\u2019s lightweight transport. Where the equipment only speaks Modbus, expect to map registers manually to topic names, which is tedious but predictable work.<\/p>\n<p>The mistake worth avoiding is treating protocol translation as a one-off script. Document every mapping (register, topic, unit, scaling factor) as you build it, because the person maintaining the system in three years will not have written it, and Modbus register maps are notoriously opaque without notes. A <a href=\"https:\/\/wjprototypes.com\/blog\/what-is-digital-manufacturing-a-guide-for-engineering-teams\" target=\"_blank\" rel=\"noopener\">digital manufacturing primer<\/a> is worth reading if your engineering team is weighing how far to modernise before touching legacy assets versus running a translation layer indefinitely. In practice, most plants run the translation layer far longer than planned, simply because replacing working legacy hardware rarely clears the cost-benefit bar.<\/p>\n<h2 id=\"storing-and-managing-the-data-mqtt-generates\">Storing and managing the data MQTT generates<\/h2>\n<p>A single machine publishing telemetry every second generates more data in a week than most manual logging systems produced in a year. Deciding what to keep, and where, matters as much as getting the messages flowing in the first place.<\/p>\n<p>Raw MQTT payloads are not a database. The broker\u2019s job is transport, not storage, so every serious deployment routes messages into a persistence layer immediately after they arrive. Time-series databases are the common choice for telemetry, since they are built to handle high-frequency writes and time-based queries efficiently, unlike a general-purpose relational database asked to do the same job.<\/p>\n<p>A sensible structure separates data by purpose rather than dumping everything into one table:<\/p>\n<ul>\n<li><strong>Hot storage<\/strong> for the last hours or days of data, queried constantly by dashboards and alerting<\/li>\n<li><strong>Warm storage<\/strong> for weeks to months, used for trend analysis and shift comparisons<\/li>\n<li><strong>Cold storage<\/strong> for long-term archives, kept mainly for compliance, audits or retraining predictive models<\/li>\n<\/ul>\n<p>Retention policy deserves a deliberate decision, not a default. Keeping every raw QoS 0 message forever is rarely worth the storage cost when a downsampled or aggregated version serves reporting needs just as well. What should never be downsampled is anything feeding a quality or safety record, where the original resolution may be needed later. Mapping <a href=\"https:\/\/mestric.com\/sl\/role-data-manufacturing-efficiency-quality\/\" target=\"_blank\" rel=\"noopener\">how collected data feeds decision-making<\/a> before you finalise a storage strategy avoids rebuilding it six months in, once someone asks for a report the raw pipeline was never designed to answer.<\/p>\n<h2 id=\"scaling-mqtt-across-a-large-factory-footprint\">Scaling MQTT across a large factory footprint<\/h2>\n<p>What works cleanly for five machines can strain badly at fifty. The usual bottleneck is not the protocol itself but the number of open connections, the size and frequency of retained messages, and how many subscribers are pulling from the same busy topics.<\/p>\n<p>Broker clustering is the standard answer. Rather than one broker handling every connection, a cluster distributes load across nodes and keeps the system running if one node drops, a pattern HiveMQ documents in detail for enterprise-scale unified namespace deployments. Local brokers per line or per site, bridged upward to a central cluster, tend to outperform a single monolithic broker serving the whole plant, because local traffic never has to leave the local network to reach its first subscriber.<\/p>\n<p>Topic design becomes a performance question at scale, not just an organisational one. Wildcard subscriptions across an entire plant\u2019s namespace look convenient during development, but they become expensive once hundreds of machines are publishing simultaneously, since every subscriber processes every matching message whether it needs it or not. Narrowing subscriptions to what a given dashboard or system genuinely consumes keeps broker load predictable as machine count grows.<\/p>\n<p>Message frequency is worth auditing before it becomes a problem. A sensor publishing every 100 milliseconds because that was the default, rather than because anything downstream needs that resolution, is a common and avoidable source of unnecessary broker load. Tuning publish intervals to match what the consuming system actually uses, rather than what the sensor is technically capable of, is one of the cheapest scalability wins available.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/csuxjmfbwmkxiegfpljm.supabase.co\/storage\/v1\/object\/public\/blog-images\/organization-16618\/1788644146735_Scaling-MQTT-across-a-large-factory-footprint-overview-diagram.jpeg\" alt=\"Scaling MQTT across a large factory footprint \u2014 overview diagram\"><\/p>\n<h2 id=\"turning-mqtt-streams-into-dashboards-and-analytics\">Turning MQTT streams into dashboards and analytics<\/h2>\n<p>Raw MQTT messages are not insight. Somewhere between the broker and the person making a decision, that data needs to become a chart, an alert, or a trend line someone can act on.<\/p>\n<p>Time-series visualisation platforms are the common layer directly above the broker, built to query high-frequency data and render it as live dashboards without the lag of a traditional business intelligence tool. Above that sits the analytics layer, where telemetry gets combined with quality and downtime records to answer questions no single machine\u2019s data stream could answer alone, such as which shift, which operator pattern, or which upstream process correlates with a defect spike.<\/p>\n<p>For predictive maintenance, the same MQTT streams that feed a dashboard can feed a machine learning model, since <a href=\"https:\/\/www.iiot-world.com\/smart-manufacturing\/discrete-manufacturing\/mqtt-in-manufacturing-scalable-data\/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">brokers are well placed to route data into both destinations simultaneously<\/a> without duplicating the connection to the machine itself. The practical choice most plants face is not whether to build custom visualisation, but whether to connect MQTT into a platform that already understands manufacturing KPIs, rather than building OEE and downtime logic from scratch on top of a generic charting tool. That is precisely the layer where an MES earns its place in the stack, turning a topic full of numbers into a metric a production manager actually uses.<\/p>\n<h2 id=\"how-mestric-reads-mqtt-telemetry-on-the-shop-floor\">How Mestric reads MQTT telemetry on the shop floor<\/h2>\n<p>The flow is straightforward: a machine publishes to its edge gateway, the gateway forwards to a broker, and an MES subscribes to the relevant topics to build live KPIs. That is the practical route from raw telemetry to a dashboard a production manager actually checks.<\/p>\n<p>The system takes that subscribed data and turns it into downtime analysis, quality monitoring and cost tracking without a separate reporting layer bolted on afterwards. Instead of a spreadsheet reconciled at shift end, the KPI updates as the machine publishes. An on-site demonstration shows how connected machinery feeds these dashboards in a live production setting, which is worth seeing before committing to any particular MQTT architecture.<\/p>\n<blockquote>\n<p><em>\u2014 Andra\u017e<\/em><\/p>\n<\/blockquote>\n<h2 id=\"see-how-mestric-turns-mqtt-data-into-shop-floor-decisions\">See how Mestric turns MQTT data into shop-floor decisions<\/h2>\n<p>This is a practical route from a working MQTT pilot to an MES that plant managers actually use, without building custom dashboards on top of raw broker topics yourself. Where a DIY stack leaves you assembling visualisation, quality logic and downtime reporting from separate tools, a suitable MES subscribes directly to machine topics and turns them into KPIs, cost analysis and quality alerts your team can act on the same shift.<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/csuxjmfbwmkxiegfpljm.supabase.co\/storage\/v1\/object\/public\/blog-images\/organization-16618\/1771068359718_mestric.jpg\" alt=\"Mestric\"><\/p>\n<p>If your pilot machine is already publishing telemetry, the next step is straightforward: connect that feed to a system built for production KPIs rather than generic charts. See how <a href=\"https:\/\/mestric.com\/sl\/mes-vs-traditional-manufacturing-boost-efficiency-2026\/\" target=\"_blank\" rel=\"noopener\">MES compares to traditional manufacturing tracking<\/a> and request an on-site demonstration to see your own machine data rendered as live dashboards before deciding how far to scale.<\/p>\n<h2 id=\"sources\">Sources<\/h2>\n<ul>\n<li><a href=\"https:\/\/www.automationworld.com\/communication\/article\/55322237\/opto-22-scaling-industrial-iot-in-legacy-environments-mtnas-journey-with-mqtt-and-groovrio\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">Scaling Industrial IoT in Legacy Environments: MTNA\u2019s Journey with MQTT and groovRIO | Automation World<\/a><\/li>\n<li><a href=\"https:\/\/mqtt.org\/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">MQTT<\/a><\/li>\n<li><a href=\"https:\/\/www.hivemq.com\/resources\/modernizing-the-manufacturing-industry\/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">Modernizing the manufacturing industry with MQTT | HiveMQ<\/a><\/li>\n<li><a href=\"https:\/\/www.iiot-world.com\/smart-manufacturing\/discrete-manufacturing\/mqtt-in-manufacturing-scalable-data\/\" rel=\"nofollow noopener noreferrer\" target=\"_blank\">MQTT in manufacturing: scalable data | IIoT World<\/a><\/li>\n<\/ul>\n<h2 id=\"recommended\">Recommended<\/h2>\n<ul>\n<li><a href=\"https:\/\/mestric.com\/sl\/alarmiranje-v-proizvodnji\/\" target=\"_blank\" rel=\"noopener\">30\u201390 Day Alarm Pilot for Plant Managers: Model Alarms at the Source<\/a><\/li>\n<li><a href=\"https:\/\/mestric.com\/sl\/step-by-step-production-optimisation-guide\/\" target=\"_blank\" rel=\"noopener\">Step by Step Production Optimisation for Manufacturers<\/a><\/li>\n<li><a href=\"https:\/\/mestric.com\/sl\/real-time-production-monitoring-manufacturing\/\" target=\"_blank\" rel=\"noopener\">Real-Time Production Monitoring: Transforming Manufacturing<\/a><\/li>\n<li><a href=\"https:\/\/mestric.com\/sl\/connected-machinery-benefits-boost-efficiency-2026\/\" target=\"_blank\" rel=\"noopener\">Connected machinery benefits: boost efficiency in 2026<\/a><\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>Priro\u010dnik o MQTT za vodje obratov. Izvedite pilotni projekt na enem stroju za pribli\u017eno US$1,000, zagotovite varnost in raz\u0161irite sistem, nato pa si oglejte predstavitve podjetja Mestric, kako telemetrija postane klju\u010dni kazalnik uspe\u0161nosti (KPI) v realnem \u010dasu.<\/p>","protected":false},"author":1,"featured_media":1454,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1452","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-learn"],"acf":[],"_links":{"self":[{"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/posts\/1452","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/comments?post=1452"}],"version-history":[{"count":1,"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/posts\/1452\/revisions"}],"predecessor-version":[{"id":1453,"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/posts\/1452\/revisions\/1453"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/media\/1454"}],"wp:attachment":[{"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/media?parent=1452"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/categories?post=1452"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mestric.com\/sl\/wp-json\/wp\/v2\/tags?post=1452"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}