Skip to main content

Quick Start Guide

This guide will take you from your first login to viewing live monitoring data from your water treatment plant in just a few minutes.
Before starting, make sure you have received your login credentials from your system administrator.

Step 1: Access the Platform

1

Navigate to Login

Open your web browser and navigate to your Centinela instance URL (provided by your administrator).Alternatively, launch the Centinela desktop application if you’ve already installed it.
2

Enter Your Credentials

Enter your email address and password:
// Login validation requirements (from src/modules/LoginApp/view/index.jsx)
- Email: Must be a valid email format
- Password: Minimum 8 characters with at least 1 uppercase letter
Passwords must contain at least 8 characters, including 1 uppercase letter, 1 special character, and 1 number.
3

Select Your Client (if applicable)

If you have access to multiple water treatment facilities, you’ll see a client selection screen. Choose the facility you want to monitor.
Users with access to a single facility will be automatically directed to their dashboard.

Step 2: Navigate the Main Dashboard

Once logged in, you’ll land on the Home dashboard with live monitoring widgets.

Understanding the Home Dashboard

The home screen displays real-time indicators showing current plant status:

Live Data Cards

Real-time sensor readings updated every 30 seconds

Visual Indicators

Liquid fill gauges, circular indicators, and status lights

Pump Status

Current state of all pumps and equipment

System Alerts

Active alarms and notifications
// Dashboard data refresh (from src/modules/home/views/index.jsx)
const fetchMultipleData = async (allVars) => {
  const { data } = await request(
    `${backend['Centinela']}/multipleDataInflux`,
    'POST',
    allVars
  );
  setInflValues(data);
};

// Auto-refresh every 30 seconds
setInterval(() => fetchMultipleData(allVars), 30000);
All dashboard widgets automatically refresh every 30 seconds to display the latest sensor data from your plant.

Step 3: View Real-Time Charts

Access detailed time-series data and analytics:
1

Navigate to Charts

Click on the Charts or Dashboard option in the main navigation menu.
2

Explore Chart Types

Centinela offers multiple chart types for different analysis needs:
  • Line Charts: Track parameters over time (flow rates, pressure, etc.)
  • Gauge Charts: Real-time speedometer-style indicators
  • Boolean Charts: On/off status for pumps, valves, and equipment
  • Pie Charts: Distribution and consumption analysis
  • Bar Charts: Comparative analysis across time periods
3

Filter and Analyze

Use the built-in filters to:
  • Select date ranges
  • Choose specific variables to display
  • Zoom in on specific time periods
  • Export data for external analysis
Charts are organized in collapsible sections for easy navigation. Click any section to expand and view detailed visualizations.

Step 4: Check Plant Diagrams

Visualize your entire water treatment process:
1

Access Diagrams

Navigate to Diagrams or Process View from the main menu.
2

Select a Diagram

Choose from available process diagrams configured for your facility.
3

Interact with the Diagram

  • Zoom: Use the zoom buttons or scroll wheel to zoom in/out
  • Pan: Click and drag to move around the diagram
  • View Data: Hover over sensors and equipment to see live values
  • Animations: Watch flow lines animate to show system operation
// Real-time diagram updates (from src/modules/DrawDiagram/views/ViewDiagram.jsx)
// Data refreshes every 15 seconds
const interval = setInterval(updateInflux, 15000);
Process diagrams update every 15 seconds with live data. Animated flow lines show when pumps are running and valves are open.

Step 5: Monitor Alarms

Stay informed about critical events:
1

Access Alarm History

Click the Notifications icon in the top navigation bar, or navigate to Alerts in the main menu.
2

Review Active Alarms

  • Unread alarms appear highlighted in the list
  • Each alarm shows: timestamp, message, and severity
  • Click on an alarm to view full details
3

Manage Alarms

  • Mark individual alarms as read by clicking the eye icon
  • Use “Mark all as read” to clear multiple notifications
  • Filter alarms by date, type, or severity
Critical alarms require immediate attention. Always investigate alarm causes before marking them as read.

Step 6: Customize Your View

Personalize Centinela to match your preferences:

Dark Mode

Toggle between light and dark themes using the theme switcher in the top navigation.

Profile Settings

Access your profile to:
  • Update personal information
  • Change password
  • Configure notification preferences
  • Set default views
Advanced users with appropriate permissions can customize menu layouts and add shortcuts to frequently used features.

Common Tasks Quick Reference

  1. Navigate to the chart you want to export
  2. Use the filter options to select your desired date range
  3. Click the export button (usually in the chart toolbar)
  4. Choose your format (CSV, PDF, etc.)
  5. Download the file
  1. Go to the Home dashboard
  2. Locate the pump status widget
  3. Click on the pump you want to analyze
  4. View operational hours, cycles, and efficiency metrics
  1. Navigate to Configuration > Variables
  2. Review the list of configured sensors
  3. Check the status column for connection indicators
  4. Contact your administrator if sensors show as offline
  1. On the login screen, click “Recuperala” (Recover it)
  2. Enter your registered email address
  3. Check your email for a password reset link
  4. Follow the instructions to set a new password
// Password recovery flow (from src/modules/LoginApp/view/index.jsx)
const url = backend.Cooptech + '/password_recover';
await requestLogin(url, 'POST', { email: data.email });
Understand the main sections of Centinela:
  • /home - Main dashboard with live indicators
  • /chart - Detailed charts and analytics
  • /tabs - Custom tabbed views
  • /alert - Alarm history and management
  • /notificaciones - Notifications center

User Roles

Centinela supports different user profiles with varying access levels:

Administrator

Full access to all features, configurations, and user management

Operator

Access to monitoring, charts, and alarms - limited configuration access

Viewer

Read-only access to dashboards and reports

External User

Limited access to consumption data and invoices
Your available features depend on your assigned user profile. Contact your administrator to request additional permissions.

Next Steps

Now that you’re familiar with the basics:

Advanced Features

Explore pump control, custom charts, and advanced analytics

Desktop App

Install the native desktop application for enhanced performance

Configuration

Learn how to configure alarms, create diagrams, and customize dashboards

Need Help?

If you encounter any issues:
  1. Check Connectivity: Ensure you have a stable internet connection
  2. Refresh: Try refreshing your browser or restarting the desktop app
  3. Clear Cache: Clear browser cache if experiencing display issues
  4. Contact Support: Reach out to your Cooptech representative
If you see “No hay datos” (No data) messages, this may indicate:
  • Sensor connectivity issues
  • Backend service interruption
  • Configuration problems
Contact your system administrator for assistance.

You’re now ready to monitor and manage your water treatment plant with Centinela!