First Steps
This guide walks you through your first session with Konnect — connecting a data source, asking your first question, and creating your first dashboard.
Step 1: Open the Manufacturing IDE
Section titled “Step 1: Open the Manufacturing IDE”After installing Konnect, open your browser to http://localhost:7080. You’ll land on the Manufacturing IDE — the main workspace.
The IDE has three key areas:
- Left panel — Data Sources explorer and Kai (AI assistant)
- Centre panel — Dashboard workspace for charts and visualisations
- Sidebar — Navigation to other pages (MQTT, OPC-UA, Data Sources, etc.)
Step 2: Connect your first data source
Section titled “Step 2: Connect your first data source”You can connect a data source through the UI or by asking Kai.
Option A: Through the Data Sources page
Section titled “Option A: Through the Data Sources page”- Click Data Sources in the sidebar navigation.
- Click Add Connection.
- Select your database type (PostgreSQL, MySQL, SQL Server, SQLite, or DuckDB).
- Enter your connection details:
- Host — e.g.,
host.docker.internal(for databases on your host machine) or the Docker service name - Port — e.g.,
5432for PostgreSQL - Database — the database name
- Username and Password
- Host — e.g.,
- Click Test Connection to verify.
- Click Save.
Option B: Ask Kai to discover data sources
Section titled “Option B: Ask Kai to discover data sources”If your data sources are running as Docker containers on the same network, Kai can discover them automatically. In the chat panel, type:
Scan for available data sourcesKai will scan running Docker containers and identify databases, MQTT brokers, and other services.
Tip: If you’re using the Docker Compose setup from the Installation guide, your PostgreSQL database and MQTT broker are already on the same network and will be auto-discovered.
Step 3: Ask your first question
Section titled “Step 3: Ask your first question”With a data source connected, click on the Kai chat panel in the left sidebar (or press the Chat button in the header).
Try one of these example questions:
| Question | What it does |
|---|---|
Show me all tables in the database | Lists discovered tables and schemas |
What columns are in the [table_name] table? | Shows the structure of a specific table |
Show me the last 10 rows from [table_name] | Queries recent data |
Create a line chart of temperature over the last 8 hours | Generates a chart on the dashboard |
Kai will:
- Analyse your question
- Select the right tools (database query, analytics, etc.)
- Query your connected data sources
- Return an answer — with data tables, charts, or both
Step 4: Create your first dashboard
Section titled “Step 4: Create your first dashboard”Ask Kai to build a dashboard for you:
Build a dashboard with temperature, pressure, and flow rate from the last 24 hoursKai will create multiple charts and place them on your dashboard workspace. You can also:
- Drag data sources from the left panel onto the dashboard to create charts manually.
- Click on a chart to cycle through different visualisation styles (line, bar, scatter, gauge, etc.).
- Create tabs — click the + button to add a new dashboard tab for a different view.
Step 5: Explore further
Section titled “Step 5: Explore further”Now that you have a working setup, here’s what to try next:
| Task | Guide |
|---|---|
| Connect an MQTT broker | MQTT Integration → |
| Connect an OPC-UA server | OPC-UA Integration → |
| Learn the full IDE layout | Orientation & Navigation → |
| Ask Kai about analytics | Chat & AI Assistant → |
| Run direct SQL queries | SQL Query Editor → |
| Export a PDF report | Dashboards & Charts → |
Next steps
Section titled “Next steps”- Orientation & Navigation → — Learn the full UI layout and how to navigate between views.