Skip to main content

General

Operations Manager Path

Monitor system health, read dashboards, and respond to alerts and incidents.

This path is for operations managers, plant supervisors, and anyone who needs to monitor equipment and respond to issues without configuring the underlying infrastructure. By the end, you will be able to read the Operations Center, create dashboards, manage alerts, and diagnose common issues.

What You Will Be Able To Do

  • Use the Operations Center to assess platform health at a glance
  • Create dashboards with gauges, charts, and data tables
  • Respond to alerts and understand what triggered them
  • Read data quality scores to detect failing sensors
  • Use basic troubleshooting steps to report issues accurately

Estimated time: 1.5–2 hours


Prerequisites

info
Before You Start
  • Proxus is running with at least one device sending data
  • You have a user account with dashboard and monitoring access
  • Your admin has configured at least one notification channel (email, webhook)

Step-by-Step Path

See the big picture (10 min)

Focus on the Platform Capabilities section. You do not need to understand the technical architecture in detail, but it helps to know that data flows from machines through Gateways to the Central Server.


Learn the Operations Center (20 min)

This is your primary tool. It shows everything in one place.

  • Operations Center — Signal Insights, KPIs, Recommended Actions, and Data Flow Topology.

Focus on these Signal Insights and what they mean for your daily work:

InsightWhat It Tells YouWhen To Act
System RiskOverall platform stabilityScore drops below 70%
Data FreshnessHow current the data isAny device above 2 min staleness
ConnectivityGateway and device online/offlineAny gateway disconnected
Action QueuePrioritized list of things to fixAlways review this first
Event LagNetwork and pipeline delaysSustained lag above 5 seconds
Log PulseRecent error volumeError spike in the last 60 seconds

Create your first dashboard (25 min)

Hands-on exercise: Create a dashboard with:

  1. A Gauge showing current Temperature
  2. A Chart showing Temperature trend over the last hour
  3. A State Indicator showing device Online/Offline status

You will need to write a simple ClickHouse SQL query. Example:

SELECT avg(Value) as Temperature 
FROM DeviceRawData 
WHERE TagName = 'Temperature' 
  AND Time > now() - INTERVAL 1 HOUR

Query historical data (15 min)

Useful queries to try:

  • Average values per hour
  • Maximum and minimum values over a period
  • Count of readings per device per day

Understand alerts and actions (15 min)

  • Alerts — How alerts are triggered and where they appear.
  • Notifications — Email, webhook, and messaging channel setup.

After reading: You should know where to find active alerts in the UI and how to acknowledge or dismiss them.


Read data quality scores (10 min)

Key question: If a device shows 100% Accuracy but 40% Freshness, what does that likely mean?

Answer: The device was reading correctly when it was connected, but it has not sent new data in over an hour. Check gateway connectivity first.


Basic troubleshooting (15 min)

When something is wrong, follow this sequence:

Bookmark these pages. They are your first stop when creating a support ticket.


Where to Go Next