Qubitro Documentation
SupportLog inSign Up
  • Documentation
  • Guides
  • Developers
  • Welcome
  • Data Sources
    • No-Code Integrations
      • Onomondo
      • Notehub
      • The Things Stack
      • Soracom
      • Loriot
      • 1NCE
      • Golioth
      • AWS IoT Core LoRaWAN
      • Actility ThingPark
      • Chirpstack
      • Particle
    • MQTT
    • HTTP
  • Platform
    • Project
      • Settings
      • Access Management
      • Roles & Permissions
    • Device
      • Settings
    • Storage
      • Time Series Storage
    • Functions
      • Decoder Function
        • LoRaWAN Device Template Decoder
        • LoRaWAN Custom Decoder
        • Hex Payload Decoder
      • Transformation Function
      • Rule Function
        • Send Email
        • Webhooks
        • Slack
        • Twilio
        • Mailgun
        • SendGrid
      • Storage Function
        • AWS Redshift
        • Google BigQuery
        • MQTT Publish
        • MongoDB Time Series
      • Scheduled Function
        • HTTP
      • Function Settings
      • Function Templates
        • Settings
    • Monitoring
      • Dashboards
        • Setup & Configuration
        • Widgets
          • Chart
          • State Timeline
          • Gauge
          • Stat
          • Headline
          • Aggregated Chart
          • Map
          • Battery
          • Image
          • Image Map
          • Table
          • Storage Table
          • Iframe
          • Blob Storage
        • Settings
        • Access Management
        • Roles & Permission
      • Blueprints
        • Setup & Configuration
        • Settings
    • Credentials
      • API Keys
      • External Credentials
        • Slack
        • Mailgun
        • SendGrid
        • Twilio
        • AWS Redshift
        • MQTT
        • MongoDB
        • The Things Stack
      • Webhook Signing Key
  • Add-Ons
    • Storage Views
    • Aggregated View
    • Archived Views
    • Blob Storage
    • Managed Email
    • Audit Log
    • MCP Server
  • Organizations
    • Overview
    • General
    • Groups
    • Members & Roles
      • Read Only
      • Read/Write
      • Admin
    • Custom Roles
    • Add-Ons
    • Billing
    • Invoices
    • White-Label
  • Account Management
    • Personal Accounts
Powered by GitBook
On this page
  • Overview
  • Core Features
  • Enabling Aggregated View (Add-on Activation)
  • Creating an Aggregated View
  • Accessing Aggregated Data
  • Retention Period
  • Deleting an Aggregated View
Export as PDF
  1. Add-Ons

Aggregated View

Aggregated View allows you to store aggregated data separately from raw time series storage.

Overview

Aggregated View allows you to store aggregated data separately from raw time series storage. This feature helps you generate structured datasets by applying predefined aggregation methods to selected data points.

Core Features

  • Enterprise Plan Exclusive – Requires activation under Organization Settings > Add-ons.

  • Dedicated Storage for Aggregated Data – Allows you to store processed data separately from raw device data.

  • Predefined Aggregation Methods – Allows you to apply Minimum, Maximum, Summation, and Average to selected data points.

  • Customizable Data Points – Allows you to select specific data fields (e.g., temperature, pressure) for aggregation.

  • Seamless Dashboard Integration – Allows you to use Aggregated Views as a data source for widgets.

  • Optimized Querying – Allows you to retrieve structured and pre-processed data efficiently.

Enabling Aggregated View (Add-on Activation)

Aggregated View is an Enterprise plan exclusive feature and must be enabled as an Add-on under Organization Settings > Add-ons before use.

Before using Aggregated Views, you need to enable the Add-on:

  1. Navigate to Organization Settings > Add-ons.

  2. Locate Aggregated View and click Enable.

Once activated, Aggregated Views can be created under the Analytics tab on the Device Detail page.

Creating an Aggregated View

After activation, Aggregated Views can be created under the Analytics tab for any device that your account has access to.

  1. Go to the Device Detail page.

  2. Navigate to the Analytics tab.

  3. Click Create, then Aggregated View and provide:

    • Name (e.g., "Daily Energy Consumption")

    • Description (optional)

    • Data Points (choose specific fields such as temperature, humidity)

    • Aggregation Methods (select from Minimum, Maximum, Summation, and Average)

    • Retention Period (define how long aggregated data should be stored)

  4. Click Create to generate the view.

Once created, the Aggregated View will be available for dashboards, API access, and exports.

Accessing Aggregated Data

You can access Aggregated View data through:

Analytics tab under the Device Detail page

Dashboard Widgets (For viewing and managing stored objects)

Aggregated Views and their data are accessible through the special widget Aggregated Chart

API queries for programmatic access

Example response

{
    "success": true,
    "action": "get device data",
    "status": 200,
    "message": "Device data retrieved successfully.",
    "data": [
        {
            "acoustic_level_max": 93.46245132126344,
            "acoustic_level_min": 87.20657912746933,
            "temperature_max": 68.4575559158977,
            "temperature_min": 39.2556677836743,
            "time": "2025-03-03T19:00:00Z"
        },
        {
            "acoustic_level_max": 97.78007816859358,
            "acoustic_level_min": 42.27256631900725,
            "temperature_max": 79.5907532064648,
            "temperature_min": 37.220887969028894,
            "time": "2025-03-03T18:00:00Z"
        }
    ]
}

Retention Period

Aggregated Views store processed data separately from the default Time Series Storage but match the retention period.

Deleting an Aggregated View

To delete an Aggregated View:

  1. Navigate to Analytics > Aggregated Views.

  2. Select the view you want to remove.

  3. Click Delete to remove it permanently.

Deleting an Aggregated View does not affect raw device data stored in Time Series Storage.

Deleting an Aggregated View removes all data stored in it and cannot be undone.

PreviousStorage ViewsNextArchived Views

Last updated 2 months ago

Retrieve Aggregated View DataAllows to retrieve data from an aggregated view.