Changelog

Follow up on the latest improvements andย updates.

RSS

The Web API data source can now run a JavaScript pre-request script before every data stream request, so you can connect to APIs with authentication flows that don't fit standard Basic, Digest, OAuth 2.0 or JWT Bearer options.
Enable scripting on the data source
Turn on "Pre-request script" in the Web API data source configuration to show the Secrets and script fields. The script runs once before each request, so a single configuration covers every data stream that uses the data source.
Store credentials securely
Define key-value pairs under Secrets and access them in your script via the secrets object. Click the padlock next to a value to encrypt it when stored โ€” recommended for API keys, client secrets and authentication tokens.
Handle token exchange and signed requests
Your script can read and modify the request url, headers and body before it's sent. A writable state object lets you cache values such as access tokens between requests, stored encrypted, so you can fetch a token once and refresh it only when it expires. That makes it possible to support flows like exchanging a signed token for a short-lived access token, or calculating a request signature per call.
image

new

improved

fixed

Monthly Update

Changelog - July Update

Dashboard scheduling
leads this month: set any dashboard to deliver itself to Email, Teams or Slack on a recurring schedule, so your team gets the numbers pushed to them instead of having to remember to go and look. Alongside it,
SQL shaping now works on single datasets
, and there are three new and improved plugins:
Veeam Backup & Replication
,
GitLab self-hosted
and a rebuilt
Datadog
plugin. Elsewhere you can filter data in fullscreen by clicking a donut segment or line series, hide whole object types to cut the noise on a map, and sign in to the plugins CLI straight from your browser. This month's plugin sweep covers AWS, CSV, Google Analytics, Microsoft Defender, SCOM, SharePoint, Web API and Zabbix. ๐ŸŽ‰
---
โญ๏ธ New features
๐Ÿ“… Dashboard scheduling โ€” set up a recurring daily, weekly, monthly or yearly delivery of any dashboard to Email, Teams or Slack.
๐Ÿ’พ Veeam Backup & Replication plugin โ€” a new plugin that imports backup servers, repositories and backed-up objects, with data streams for backup jobs and repository storage space.
๐ŸฆŠ GitLab self-hosted/on-prem โ€” the GitLab plugin now supports self-hosted and on-prem instances, not just GitLab cloud.
๐Ÿถ Datadog Improvements โ€” a rebuilt Datadog plugin with a cleaner setup experience, new Cost, Monitors and Events Query data streams, and fresh out-of-the-box dashboards.
๐Ÿงฎ New: SQL for single datasets โ€” you can now apply SQL shaping to a single dataset from the Filter | Group | Sort tab, with autocomplete (Ctrl+Space) and SmartAssist โœจ available as you write it. SQL Analytics has been renamed 'Multiple datasets' to make the distinction clear.
โœจ Other enhancements
  • Access Control
    โ€” Tenants with a custom domain configured are now automatically redirected to it after logging in via the default SquaredUp URL (SAAS-9022)
  • Fullscreen
    โ€” click a donut segment or line series in the fullscreen view to filter down to the underlying rows behind that value (SAAS-7420).
  • Graph/Correlation, Low Code Plugins (LCP)
    โ€” Correlation rules can now be defined using source type and basic operators (SAAS-7776)
  • Map
    โ€” Adds a toolbar option to hide every object of a given type, and keep new ones of that type off the map as you expand it (SAAS-9676)
  • Security
    โ€” Adds per-user access control to the plugin and import routes reachable from the CLI (SAAS-9621)
๐Ÿž Bug fixes
  • Dashboards
    โ€” Fixes tile parsing batches crashing when a dashboard contains an empty tile (SAAS-9684)
  • Data Sources
    โ€” Fixes Azure imports reporting success while silently dropping objects when the resources stage was rate-limited (SAAS-9572)
  • Data Streams
    โ€” Fixes LCP imports paging forever when an API returns an explicit
    nextCursor: null
    on its final page (SAAS-9610)
  • Data Streams
    โ€” Fixes column metadata from later pages being discarded in multi-page plugin responses, which could drop columns entirely (SAAS-9613)
  • Data Streams
    โ€” Fixes multi-table SQL tiles dropping columns that resolve via a graph property lookup (SAAS-9678)
  • Drilldown
    โ€” Fixes the data stream header overlapping other content when scrolling a drilldown page on small screens (SAAS-9713)
  • Explore / Data
    โ€” Fixes the Explore preview rendering faded and non-interactive when a data stream has no parameters to configure (SAAS-9616)
  • Graph/Correlation, Low Code Plugins (LCP), Map
    โ€” Fixes correlation rules not being re-evaluated when a graph object's properties change, leaving stale edges behind (SAAS-4781)
  • Metadata
    โ€” Fixes Web API based LCPs losing their column ordering (SAAS-9475)
  • Map
    โ€” Fixes the object toolbar disappearing as you move the mouse towards it (SAAS-9675)
  • Map
    โ€” Fixes the map's zoom and control buttons rendering unstyled on the workspace overview and map pages (SAAS-9665)
  • Relay
    โ€” Fixes SCOM imports sitting idle for hours before failing with a timeout error (SAAS-9638)
  • Tile Editor
    โ€” Fixes drilldown and drillout links opening in the same tab, which lost unsaved tile editor changes (SAAS-9590)
  • Tile Editor / Columns
    โ€” Fixes cloned column order not matching the order shown in the visualisation options panel (SAAS-6960)
  • Visualisations / Table
    โ€” Fixes columns with a
    json
    shape breaking the tile when rendered as a table (SAAS-9674)
๐Ÿ”Œ Plugin improvements
  • AWS
    โ€” Fixes the CloudWatch Logs data stream truncating the message field so the full log entry is returned (PLUG-2349)
  • CSV
    โ€” Consolidates the two CSV data streams into a single Text / File data stream (PLUG-4658)
  • Datadog
    โ€” Adds a rewritten low-code Datadog plugin with streamlined data streams for events, metrics, cost and synthetic tests (PLUG-4649)
  • GitLab
    โ€” Adds support for on-prem GitLab instances, not just GitLab cloud (PLUG-3750)
  • GitLab
    โ€” Fixes CI/CD authentication failing with globally scoped personal access tokens by sending the PRIVATE-TOKEN header (PLUG-4584)
  • Google Analytics
    โ€” Removes the deprecated Universal Analytics (V3) plugin, whose upstream API no longer works (PLUG-4642)
  • Microsoft Defender
    โ€” Fixes the data source import failing with a 'response payload too large' error (PLUG-4678)
  • OpenWeatherMap
    โ€” Removes the OpenWeatherMap plugin, which no longer works against the current API (PLUG-4648)
  • SCOM
    โ€” Adds support for SCOM monitors (PLUG-2797)
  • SCOM
    โ€” Replaces choice chips with switch controls across all data streams for a more consistent editing experience (PLUG-4683)
  • SharePoint
    โ€” Adds a Lists data stream so items from any SharePoint list can be displayed in a tile (PLUG-4672)
  • Web API
    โ€” Can now run a pre-request script before each call (SAAS-8337, SAAS-9603)
  • WebAPI
    โ€” Extends the 'ignore certificate errors' option so it applies to authentication calls as well as data calls (PLUG-4677)
  • Zabbix
    โ€” Updates authentication to send the API key as a Bearer header, restoring support for Zabbix 7.2 and later (PLUG-4634)
  • Zabbix
    โ€” Fixes the metric import failing on large instances by paging the request instead of hitting the response size limit (PLUG-4676)
The GitLab plugin now supports self-hosted/on-prem instances alongside GitLab's cloud-hosted offering. This release also includes a number of bug fixes and reliability improvements across pipelines, deployments, environments, releases, issues, and merge requests.
Canny-GitLab
The Datadog plugin has a cleaned-up, more modern experience throughout, plus three new data streams โ€” Cost, Monitors, and Events Query โ€” giving you broader visibility into your Datadog spend, monitor health, and event activity.
This updated version also ships with new out-of-the-box dashboards, including Overview, Monitors, Host, and Synthetic Test views.
Canny-Datadog
Bring your backup estate into SquaredUp. The new Veeam Backup & Replication plugin connects to your VBR server and surfaces repositories and jobs as objects, with live status and capacity in your dashboards.
The plugin ships with data streams for job status and repository status (both all-up and scoped to specific objects), plus ready-made dashboards โ€” an Overview covering failed/warning jobs and repository free space, and per-object Status perspectives for individual jobs and repositories.
We're releasing this as a SquaredUp Labs plugin as we'd love your feedback!
Canny-VEEAM
You can now use SQL shaping right in the
Filter | Group | Sort
tab. This makes it easier to perform custom aggregations or filtering on a single dataset. Plus, autocomplete (Ctrl+Space) and SmartAssist โœจ work here too!
SQL Analytics
has been renamed to
Multiple datasets
to better reflect it's functionality.
image

new

improved

fixed

Monthly Update

Changelog - June Update

Changelog - June Update
This release brings four new and improved integrations: the SCOM plugin now supports
persistent connector sessions
for a major performance and reliability boost, and new plugins for Microsoft Defender, Datto RMM, and AutoTask PSA let you bring device health, endpoint, and ticketing data into SquaredUp alongside everything else you monitor.
Beyond the headline integrations, this release includes a resizable navigation bar (๐ŸŽ‰), several CLI improvements, recursive dependent object imports for Low Code Plugins, and a wide range of bug fixes and plugin enhancements - most notably a significant CloudWatch data stream cleanup across the AWS plugin, plus new out-of-the-box dashboards for CircleCI and Zabbix.
---
โญ๏ธ New features
๐Ÿ› ๏ธ SCOM data source: Persistent Sessions: the SCOM plugin now supports persistent connector sessions, delivering a significant performance and reliability boost to dashboards monitoring SCOM data.
๐Ÿ›ก๏ธ Microsoft Defender plugin: Whether you're an IT admin keeping on top of device health or a security team reporting on incidents, you can now bring your Defender data into SquaredUp dashboards alongside everything else you already monitor.
Visualize your endpoints from DattoRMM: If you're an MSP or IT team using the Kaseya platform of tools then you probably use Datto RMM to manage endpoints, you can now bring that data into SquaredUp dashboards alongside everything else you monitor.
๐Ÿ› ๏ธ Visualize tickets and more from AutoTask PSA: You can now bring tickets, contracts, and projects into SquaredUp dashboards alongside everything else you monitor.
โœจ Other enhancements
  • Navigation
    โ€” You can now drag to resize the navigation bar, making it easier to work with deeper folder structures.
  • CLI
    โ€” Multiple improvements to the CLI: list objects, list configs, better validation and more. (SAAS-9470)
  • Low Code Plugins (LCP)
    โ€” Adds support for recursive dependent object imports, improving data completeness for plugins such as Jenkins and Unifi (SAAS-9099)
๐Ÿž Bug fixes
  • CLI
    โ€” Fixes an issue preventing deployment of LCP plugins built on schema version 2.1 (SAAS-9495)
  • CLI
    โ€” Fixes the CLI not correctly resolving object picker fields (SAAS-9538)
  • Plugin Architecture
    โ€” Fixes plugin errors being silently suppressed instead of surfaced to users (SAAS-9501)
  • Settings
    โ€” Fixes dividing lines and hover states on settings tables not stretching full width when scrolling horizontally (SAAS-9487)
  • Visualisations / Bar
    โ€” Fixes the tile editor not reopening the colour panel when re-editing a chart with custom colours configured (SAAS-9447)
๐Ÿ”Œ Plugin improvements
  • AWS
    โ€” Fixes the Synthetics Runs data stream to filter by run start time rather than completion time, so failed or long-running runs aren't excluded from the selected timeframe (PLUG-2999)
  • AWS
    โ€” Fixes the CloudWatch State History data stream returning duplicate or incorrect results when multiple nodes are selected (PLUG-3007)
  • AWS
    โ€” Restructures a set of overlapping CloudWatch data streams, deprecating redundant ones to simplify the plugin's data model (PLUG-4474)
  • AWS
    โ€” Merges several CloudWatch Metrics data streams into a single, more consistent data stream (PLUG-4475)
  • AWS
    โ€” Fixes the API Latency data stream showing a raw object ID instead of the readable API gateway name (PLUG-4570)
  • AWS
    โ€” Improves the metrics template stream so it surfaces the full set of available metrics instead of only those found on the first scoped node (PLUG-4619)
  • AWS
    โ€” Fixes a regression where a plugin update removed the combined CloudWatch metrics data source (PLUG-4650)
  • Azure
    โ€” Fixes several out-of-the-box dashboard tiles that had stopped resolving data after their underlying data stream was deprecated (PLUG-4660)
  • Azure DevOps
    โ€” Adds a call to fetch work items linked to a build, enabling lead-time-for-change reporting (PLUG-4564)
  • Azure DevOps
    โ€” Updates the out-of-the-box dashboard to use current, non-deprecated data streams (PLUG-4653)
  • CircleCI
    โ€” Adds out-of-the-box dashboards (PLUG-1324)
  • GitHub
    โ€” Fixes Code Scanning and Secret Scanning data streams so they can be added to tiles scoped to a repo collection, not just a single repo (PLUG-4639)
  • GitHub
    โ€” Fixes the Pull Requests data stream so the linked repository name resolves correctly (PLUG-4641)
  • Grafana
    โ€” Fixes an out-of-the-box dashboard bug where alerts of the same severity could appear duplicated (PLUG-4643)
  • Jira
    โ€” Fixes out-of-the-box dashboard SQL tiles that had stopped working correctly after a SQL engine change (PLUG-4647)
  • Microsoft Defender
    โ€” New plugin (PLUG-4654)
  • ODBC
    โ€” Adds a test connection button so users can validate configuration before saving (PLUG-3584)
  • SCOM
    โ€” Adds support for persistent connector sessions, improving Health State data stream performance so large scopes of servers return reliably instead of timing out (PLUG-3655)
  • WebAPI
    โ€” Fixes the Web API plugin to drop undefined query parameters and headers instead of sending them as empty values, preventing failures against APIs that reject empty parameters (PLUG-4625)
  • Zabbix
    โ€” Adds a configurable metric data stream so users can choose any host or server metric rather than a fixed list (PLUG-2230)
  • Zabbix
    โ€” Adds out-of-the-box dashboards (PLUG-2244)
  • Zendesk
    โ€” Updates authentication to meet Zendesk's tightened third-party app security requirements (PLUG-4402)
You can now proactively push dashboards to your team instead of relying on people to check them manually. Set up a recurring schedule (daily, weekly, monthly, or yearly) and SquaredUp will automatically deliver a snapshot (message and dashboard screenshot) to Email, Teams, or Slack. Whether it's a Monday morning status report to a Slack channel or a monthly SLO summary for stakeholders, scheduled sharing keeps everyone in the loop.
Set it up straight from any dashboard: click the arrow next to Share, select Schedule, and configure your frequency, destination, and delivery options. Each delivery includes a link back to the live dashboard, view-only if link sharing is enabled, or a standard sign-in link otherwise.
Screenshot 2026-07-01 at 11
The SCOM plugin now supports persistent connector sessions, delivering a significant performance and reliability boost to your dashboards monitoring SCOM data.
To get the full benefit of these changes, install or upgrade to the latest release of the relay agent via the Relay Agents page in Settings. For detailed installation and upgrade steps, just follow the link!
image
For those using the Kaseya tool suite we have released Autotask PSA. For MSPs using it to to manage tickets, contracts, and projects, you can now bring that data into SquaredUp dashboards alongside everything else you monitor.
The plugin includes multiple data streams to help you visualise data from Tickets, Contracts, Projects, Resources, and Financial Health. It comes with a ready-made Tickets dashboard to get you started straight away.
This is a community plugin, raised feedback directly with the author in GitHub. Just follow the link.
SquaredUp-Autotask
Load More
โ†’