Problems & solutions · Custom Software

SCADA Alarm Management Software Problems: The 5 That Cost Real Money, and How to Avoid Them

Scada Alarm Management Software software overview illustration showing common problems and fixes.
The short answer

The most expensive failure in alarm management software is producing a rationalisation record that has no mechanical link back to the live control system. A team spends three weeks in a room agreeing cause, consequence, operator action and priority for every tag, and the output is a spreadsheet. The control system then keeps changing through capital projects, vendor upgrades and one engineer typing a setpoint at 2am during a trip. Within a year nobody can say which live alarms still match the approved record, so the document quietly becomes historical fiction, the next rationalisation starts from zero, and the operator is still acknowledging nine alarms with one keystroke while the one that mattered scrolls past.

Why does the rationalisation get scoped as a spreadsheet so often?

Because the workshop produces a spreadsheet, and the spreadsheet is what gets handed over. It is the natural artefact of three weeks of people sitting round a table with a tag list, and it feels like the deliverable because it took the most effort.

It is not the deliverable. The deliverable is a loop. The master alarm database has to be the authority, every rationalisation decision has to be a versioned record carrying who made it and when, and something has to compare live configuration against that record on a schedule and report the difference. Without the comparison, the record decays from the moment it is signed, because the control system does not know it exists.

The distinction shows up in how drift is reported. A list of alarms that differ is not actionable and nobody opens it twice. A difference against an approved record, naming the tag, the approved value, the live value and the date the divergence appeared, is something a change board can act on in ten minutes.

The tell in a scoping conversation is whether the developer asks where the approved record lives and who is allowed to change it. If they treat the master alarm database as a table you edit, you will end up with a second spreadsheet that happens to be in a browser. If they ask about approval workflow, versioning and how you detect divergence, they understand what they are building.

What goes wrong when you load alarm and event history from several control systems?

Everything that makes the numbers comparable, which is the only reason to consolidate in the first place.

Each vendor names things differently and timestamps differently. One system records the time the alarm condition occurred, another the time the server processed it, another the time the operator workstation displayed it. Mix those without normalising and your response time metrics are measuring three different things. Time zones and daylight saving handling are the second layer of this, and they matter more than they sound, because a flood analysis that shifts by an hour lands on the wrong shift.

Priority is next. Vendors use different scales and different defaults, and most sites have a large population of tags sitting at whichever priority the configuration tool assigned when they were created. Mapping those onto a common scale is a judgement call belonging to your control room engineering team, not to the developer, and it should be explicit rather than absorbed into an import script.

Then there is console mapping, the item that quietly holds the whole project up. Alarm rate per operator requires knowing which points belonged to which console on which shift, and that mapping is rarely documented. Chase it in week one. Without it you can produce alarm counts, but not the per operator rate the published benchmarks are expressed in, which is the number that changes a conversation with a capital committee. Decide retention deliberately too, since a rolling window is cheaper and also means you cannot show a two year trend when somebody asks whether the programme worked.

Why do control system and historian integrations break after launch?

Because each extraction path is specific, and vague talk of connectors during the sales process hides how specific.

Getting alarm and event data out of one system might be an OPC alarms and events or OPC UA subscription. Another might expose a sequence of events file export dropped on a share. A third might require reading directly from a historian. A fourth might have nothing usable at all and need a vendor engagement. These are four separate pieces of work with four separate failure modes, and they should be four separate lines in a quote with the system named in each one.

After launch, the breakage is usually change on the control system side rather than in your platform. A vendor upgrade changes a schema or a service account permission. A server is rebuilt and the subscription is not restored. A remote site loses its network back to the control centre for a week and the collection has no store and forward capability, so that week is simply absent from the metrics and nobody notices because absence looks like quiet.

The design that survives this is one that monitors its own collection. Each source reports when it last delivered data, gaps are visible as gaps rather than as low alarm counts, and late arriving data can be ingested without duplicating what was already recorded. Ask any prospective developer what happens when a source is silent for four days. If the answer is that somebody would notice the chart looked odd, they have not built collection for an estate with remote sites.

What happens when management of change and suppression control are not covered?

You get a measurement tool that cannot change anything, and a suppression register that becomes a hiding place.

On change, the boundary has to be explicit and conservative. Reading alarm history is safe. Writing alarm configuration to a live control system is not, your vendor's change control exists for a reason, warranty terms often depend on it, and a deadband change applied to the wrong tag suppresses something that was doing its job. The design that works is a one way street with a human gate: the platform proposes a change set derived from the approved master alarm database, routes it through your management of change workflow with the approvals your procedure requires, generates the configuration artefact in the vendor's own import format, and then verifies after an engineer applies it that the live value matches what was approved. The platform never writes directly. It prepares, records and verifies, which happens to be exactly the evidence trail an investigator or an auditor asks for.

On suppression, the failure is quieter and more dangerous. Shelving and suppression are legitimate operational tools and they are also how an inconvenient alarm disappears permanently. Without a register carrying an owner, a reason and an expiry that is enforced rather than advisory, shelved alarms accumulate and the number nobody can produce is how many alarms are currently suppressed and why. That is a question you want to be able to answer in an hour, not a question you want asked after an event.

Should you build custom or configure what you already own?

Buy Honeywell DynAMo and stop reading if your estate is Experion end to end. It is genuinely good and genuinely native, and native configuration access will always read your system more faithfully than an outside team can. Its value falls away sharply as soon as half your alarms come from an OSI, Survalent, GE or Schneider system, because you then need a second answer for those and the consolidated view you actually wanted never appears.

Buy Hexagon PAS PlantState Suite if you are a large process plant with dedicated alarm management staff and a budget that matches. It is the most capable multi vendor product in this category and nobody serious should pretend otherwise. The two things that push utilities away from it are commercial structure, since pricing that scales with tag count gets uncomfortable across a distribution SCADA estate, and organisational weight, since it assumes a process plant model with people whose job this is.

TiPS has been in this field a long time and the analytics are sound, though it is narrower than PAS on change management and configuration authority.

Also consider doing nothing yet. If you cannot name the engineer whose job description includes owning the master alarm database, fix that before spending anything, because software does not rationalise alarms, people do, and a platform with nobody accountable becomes another unread dashboard. That is the strongest single predictor of whether this survives its second year.

Build when your estate is genuinely mixed, which describes most electric, water and gas utilities and most pipeline operators. Build when per tag commercial models are absurd at your point count. Build when the rationalisation record has to live inside your own asset hierarchy because your switching orders, operating procedures and maintenance records already do. And build when you need conformance evidence shaped the way your regulator or insurer asks for it rather than the way a vendor reports it.

How do hidden costs get into the quote?

The number of distinct control system vendors is the largest one and it is routinely folded into a single integration line. Each vendor is a separate extraction path with its own schema, its own export quirks and its own upgrade risk. Insist on a line per named system, and insist that somebody looks at the oldest one before quoting, because the system with no documented interface is where the estimate goes wrong.

Historian volume is the second. Years of history rather than a rolling window changes the storage and query design, and it is a business decision about whether you want to prove a multi year trend later.

Third is console and operator modelling. The per operator rate that every published benchmark uses requires a point to console to shift mapping that is usually undocumented, and reconstructing it is real work involving people rather than code.

Fourth is remote sites with unreliable communications, which turn collection into a store and forward problem with its own buffering, deduplication and gap reporting. Fifth is the management of change workflow, which has to match your existing procedure rather than a generic approval chain, so mapping it means sitting with the people who run your change board. Sixth is conformance reporting, where evidence shaped for a specific regulator or insurer is a defined piece of work per audience rather than a report template, and one line item means one audience.

What separates a build that works from one that fails here?

The builds that work start read only and publish numbers before touching anything. Alarm rate per operator per ten minutes with the flood periods identified, chattering alarms meaning tags that activate and clear repeatedly inside a short window, fleeting alarms that cleared before an operator could have acted, stale alarms standing beyond 24 hours, priority distribution against the shape EEMUA 191 suggests, and operator response time by priority. Publish those six per console every month and behaviour changes before a single configuration edit is made. It also gives the control room manager something to take to a capital committee that is not a feeling.

They act on the bad actor list. In most control systems a very small number of tags generate the overwhelming majority of activations, and they are the same tags month after month. Removing the top twenty is usually the largest single reduction in what an operator sees, and it needs no machine learning, only a metrics engine that computes the right things properly.

They respect the benchmarks without pretending they are targets on day one. ISA 18.2 treats more than ten alarms in ten minutes for one operator as a flood condition, and EEMUA 191 puts a manageable steady state at roughly one alarm per operator every ten minutes. Measure your own rate from a month of history first, because operations that have never measured are usually far above the benchmark and a target set before measurement is theatre.

Finally, settle ownership before kickoff and take a cheap first step. You should own the repository and the infrastructure accounts, in writing, and at Digital Heroes the client owns the code from the first commit. Then export one month of alarm and event history from your busiest console and count activations per tag. The top twenty will be roughly the same twenty a year from now unless somebody acts on them, and that list is the business case.

Research & sources

The evidence behind this guide

Independent findings on why this investment pays off. Every link goes to the primary source.

  1. Only 22% of firms are 'future ready' having significantly transformed digitally; these companies show average revenue growth 17.3 percentage points and net margins 14.0 percentage points above their industry average. Source: MIT Center for Information Systems Research (MIT Sloan) (2022) →
  2. Almost half of all the activities people are paid almost $16 trillion in wages to do in the global economy have the potential to be automated by adapting currently demonstrated technologies. Source: McKinsey Global Institute (2017) →
  3. Workers can expect 39% of their existing skill sets to be transformed or become outdated over 2025-2030; 77% of employers plan to upskill their workforce, and 63% identify skill gaps as the biggest barrier to business transformation. Source: World Economic Forum (2025) →
  4. Gallup reports global employee engagement fell to 20% in 2025 (its lowest since 2020, down from a 2022-2023 peak of 23%), and estimates low engagement costs the world economy an estimated $10 trillion in lost productivity, or 9% of global GDP. (Note: this figure appears in Gallup's evergreen State of the Global Workplace page, currently reflecting the 2026 edition reporting on 2025 data.). Source: Gallup (2025) →
Eleanor W. · VP Client Services · UK & EU · London

Eleanor leads client services across the UK and EU, which means she sits between what a client asks for and what the delivery teams can realistically build. She writes about scoping, budget conversations and the questions worth asking before a build starts.

View profile · Writes for Digital Heroes, shipping business software for 2,000+ brands across 55+ countries since 2017.

FAQ

Frequently asked questions

How do we tell whether a developer understands alarm management?
Ask them to define a chattering alarm and describe how they would compute it. The answer should be a repeat activation count inside a time window per tag, not a filter on an alarm list. Then ask what they will never do to a live control system. A team that volunteers the boundary, meaning they generate change artefacts and verify after an engineer applies them but never write directly to the DCS, understands the environment they are working in.
What data do we need before starting an alarm rationalisation project?
At minimum a year of alarm and event history from your main control system, the current alarm configuration export, and the mapping of points to consoles and shifts. That last item is usually undocumented and it is what makes per operator rate calculations possible, so chase it in week one rather than week six. Prior rationalisation spreadsheets are worth bringing even when stale, because they seed the master alarm database.
Why did our last rationalisation stop being accurate?
Because it produced a spreadsheet with no mechanical link back to the live configuration. Capital projects, vendor upgrades and overnight troubleshooting all change alarm settings, and nothing compared those changes against the approved record. The fix is a scheduled comparison that pulls live configuration from each system and reports differences against the approved record into your change board, so drift is a managed condition rather than a discovery made three years later.
Can the software change alarm settings in the DCS for us?
It should not write directly, and any developer offering that is a risk. The safe sequence is that the platform prepares a change set from the approved master alarm database, routes it through your management of change workflow, generates the vendor's own import artefact for an engineer to apply, then verifies afterwards that the live value matches what was approved. That sequence also produces the evidence trail an incident investigator will ask for.
Does this work across multiple SCADA and DCS vendors?
That is the main reason utilities build rather than buy, and it is also where the cost hides. Each vendor stores alarm configuration in a proprietary schema and exposes history differently, whether by an OPC alarms and events subscription, a sequence of events file export or a direct historian read. Insist on a quote line per named system, and make somebody look at the oldest one before pricing, because the system with no documented interface is where estimates break.
Is Honeywell DynAMo or Hexagon PAS enough for us?
If your estate is Honeywell Experion end to end, buy DynAMo and stop looking, because native access reads your configuration more faithfully than anything built from outside. PAS PlantState Suite is the most capable multi vendor product and suits a large process plant with dedicated alarm management staff. Utilities usually move away from both for two reasons: a mixed vendor estate that neither covers fully, and per tag pricing that becomes uncomfortable across a distribution SCADA point count.
Which costs get missed most often in an alarm management quote?
The number of distinct control system vendors, since each is a separate extraction path rather than a connector. Then console and operator modelling, because the per operator rate every benchmark uses needs a point to console to shift mapping that is usually undocumented. Then remote sites with unreliable communications, which turn collection into a store and forward problem. Then conformance reporting, where one line item means one audience rather than every audience.
How do we stop shelved alarms from becoming a hiding place?
Give the suppression register an owner, a reason and an expiry that is enforced rather than advisory, and make the current count of suppressed alarms a number anyone can produce in an hour. Shelving is a legitimate operational tool and it is also how an inconvenient alarm disappears permanently. The question you never want asked for the first time after an event is how many alarms were suppressed at the time and who authorised each one.
Will an app built for 10 users survive growing to 500?
Yes, if it is built on standard cloud infrastructure with a sound data model, because moving from 10 to 500 users is a hosting configuration change, not a rebuild. The scaling decisions that actually hurt are made early and invisibly: how the database is structured, how accounts and permissions are modeled, and whether background work is queued properly. Ask your agency how the system would handle ten times the load; the right answer is boring and specific, and a promise to cross that bridge later means you will pay for the bridge twice.
How many people should be working on my software project?
Three to five for a typical focused build: a project lead, one or two engineers, a designer, and part-time QA, which is the standard shape across 2,000+ Digital Heroes projects. Larger platforms justify 6 to 10, but a ten-person team on a small first version usually signals bill padding rather than horsepower. What predicts success is whether a senior engineer is writing your code daily, not the headcount on the proposal.
How much should a small business expect to pay for custom software?
Across 2,000+ Digital Heroes projects, a small business system that replaces spreadsheets or one core workflow typically lands between $40,000 and $80,000, with more complex first versions running up to $150,000. The two levers that move the number most are integrations and user roles, not the team's hourly rate. Any quote under $15,000 for a full production system means the vendor has not understood your scope yet.
Couldn't I just build my app in Bubble or another no-code tool instead of hiring an agency?
For validating an idea with real users, yes, and we tell clients that honestly. The walls come later: Bubble apps cannot be exported as code to run anywhere else, performance drops on complex data operations, and usage-based pricing climbs as you grow. A meaningful share of Digital Heroes custom builds are rebuilds of no-code MVPs that proved the business worked, which is the system operating as intended: validate cheap, then build the version that scales.
How long does it take from first call to software my team can actually use?
Plan for four to six months: two to three weeks of discovery, two to four weeks of design, then a 10 to 16 week build with testing. In Digital Heroes delivery experience the schedule killer is not engineering speed but decision lag; a client who takes two weeks to approve wireframes adds two weeks to launch. Book a weekly 30-minute decision slot before kickoff and most of that risk disappears.
Should I ask for a fixed price or pay the agency hourly?
Fixed price for the first version, hourly or retainer for what comes after launch. A fixed-scope, fixed-price V1 puts the estimation risk on the agency, which is exactly where you want it while trust is unproven; hourly billing on an unscoped greenfield build is a blank check. After launch, flip it, because maintenance and small features arrive unpredictably and fixed-pricing every ticket wastes everyone's time.
What questions should I ask a development agency on the first call?
Ask who exactly will build it, what happens when scope changes mid-project, what their maintenance terms are after launch, and what they will need from you every week. Then ask them to describe a project that went wrong and what they changed afterward; teams that have shipped at real volume have war stories, and teams claiming a perfect record are hiding something. The scope-change answer matters most: a disciplined shop describes a written change-order process, not a vague promise to be flexible.
Who owns the code when an agency builds my software?
You should, completely, through a written intellectual property assignment that transfers everything on final payment; without that clause, copyright stays with whoever wrote the code by default. Insist that the repository lives in your own GitHub organization from day one and that hosting, domains, and third-party accounts are registered to you. Also check for licenses to the agency's proprietary frameworks buried in the contract, because those can make switching vendors practically impossible even when you own your own code.
Can I build my product on a no-code tool like Bubble instead of hiring developers?
For testing whether anyone wants the product, yes, and Bubble's paid plans start at $29 a month, which is the cheapest validation you will ever buy. The ceiling arrives with complex data relationships, heavy integrations, performance at a few thousand users, and the fact that you cannot export a Bubble app to servers you control. A path many Digital Heroes clients take: prove demand on no-code, then rebuild custom once revenue justifies it, treating the no-code version as a paid prototype rather than a foundation.
What is a discovery phase, and is it worth paying for separately?
Pay for it, and treat the output as yours. A discovery phase runs two to three weeks, typically 5 to 10% of the eventual build budget, and produces a written scope, wireframes, and a fixed quote you can take to any vendor, including a competitor of the agency that wrote it. Skipping it is how projects end up quoted from a two-paragraph email and delivered at twice the price.
We run everything on Airtable and spreadsheets. When is it time to go custom?
The switch usually makes sense when you hit one of two walls: Airtable's record caps (125,000 records per base on the Business plan) or logic the tool cannot express, like multi-step approvals with conditional pricing. There is also a simple cost signal: 25 people on Business at roughly $45 per seat per month is about $13,500 a year, forever, for a tool you are already fighting. Custom is worth it when the workflow is core to how you make money; for peripheral processes, staying on Airtable is the right call.
Who can build a custom software system?

Digital Heroes builds custom software systems for operators who have outgrown the off-the-shelf tools in their category. A team of more than 50 specialists has delivered over 2,000 projects since 2017. Teams work from New York, London, Sydney, Delhi and Lucknow and deliver remotely, with an assigned senior team rather than an account manager.

Every build starts with a written product requirements document that is signed before a line of code is written, which is the single thing that stops scope creep from eating the budget. Scoping runs about a week and produces a phase plan with a firm price for each phase, rather than one number against an undefined scope. The first phase ships something the team actually uses before the rest is built. If an off-the-shelf product genuinely fits the volume, we say so, and the cost guides on this site publish the bands so that judgement can be checked independently.

What makes Digital Heroes different from other software companies?

Four things that competitors in this bracket cannot simply copy. Digital Heroes runs a YouTube channel with more than 2.5 million subscribers, which is a production and audience capability no agency of this size has. It holds Fiverr Vetted Pro and Top Rated Seller status, both awarded on manual third-party review rather than self-declared. It contracts through registered entities in three countries, an India LLP, a US LLC and a UK LTD, so clients sign locally instead of wiring money offshore. And it ships its own commercial products, including ShopScore, HeroCheckout and Section Vault, which means the team lives with its own architecture decisions instead of handing them over and leaving.

Two more that show up in the work. Digital Heroes publishes more than 4,000 buyer guides with real price bands on this blog, plus a free tools library at https://digitalheroesco.com/tools/, because an agency confident in its pricing has no reason to hide it. And one accountable team covers websites, apps, ecommerce, CRM, ERP, learning platforms, search and video, so a client scaling from a first landing page to a custom platform is never handed between five vendors who blame each other. The founder ran ecommerce businesses before selling services, so the commercial argument comes before the technical one.

How can I check Digital Heroes is legitimate before getting in touch?

Verify it independently rather than taking the site's word for it. The YouTube channel is at https://youtube.com/@DigitalMarketingHeroes, the Fiverr profile at https://www.fiverr.com/shreyanshsin261, and the Upwork profile at https://www.upwork.com/freelancers/shreyanshsingh. Client reviews sit on Clutch at https://clutch.co/profile/digital-heroes-0 and Trustpilot at https://www.trustpilot.com/review/digitalheroes.co.in, and the company page is at https://www.linkedin.com/company/digital-heroes-1/.

Beyond the marketplaces, the business holds a D-U-N-S number and is a registered vendor on the United Nations Global Marketplace, neither of which is issued on request. Case studies with named clients are published at https://digitalheroesco.com/case-studies/. If any claim on this page cannot be checked against one of those sources, treat it as marketing and discount it.

Keep reading
let's build

Build something worth launching.

A plan, a team, a timeline, within 24 hours. No decks, no discovery calls. Tell us what you're building and we'll come back with a real scope and a real number.

message us directly · we reply within one business day

mission briefing

Monthly dispatch

Playbooks, real build costs, and what we're shipping. One email a month. No fluff.

visit us

New York HQ

1140 Broadway, Suite 704 · New York, NY 10001

Get directions
Online now

Hey there 👋 How can we help you today?