Nobl9 Release Channels
We've introduced release channels to enhance the performance and stability of data source integrations. Nobl9 currently has 2 release channels available:
- The
stable
channel:
Thestable
channel is a distribution channel that provides all officially released features and changes that have undergone rigorous testing. The stable channel represents the final fully stable product ready for mission-critical production use. - The
beta
channel:
Thebeta
channel is a distribution channel that showcases the latest innovations and newest functionality, tested to deliver the best early-access experience possible. The beta channel allows users to try out recently shipped features that still need more testing in real-world scenarios. They arenβt considered fully stable yet for production use cases.
Features available in the beta
channel may be subject to change.
Overviewβ
The following table presents the beta
functionality along with the minimum required version of the Agent.
Feature | Min. Agent Version | Beta Functionality |
---|---|---|
Sumo Logic | agent-0.65.0-beta11 |
|
All new features that are related to data source integrations will be released to the beta
first. After the experimental testing phase of new features in beta
, the Nobl9 team will transfer the new functionality to the stable
distribution channel.
Currently, beta
is the default channel for all new Nobl9 users.
Switching Between Release Channelsβ
You can switch between channels using Nobl9 UI or sloctl
.
Selecting Release Channels in UIβ
You can choose the release channel for your data source (both Agent and Direct connection method) in the Data Source wizard. To do this, navigate to Integrations > Sources, choose your source and connection method (Agent/Direct) and select the release channel from the list menu.

For the Agent method, remember to deploy your Agent in Docker or Kubernetes once you clicked Add Data Source.
You can edit the Release Channel field only for the Direct connection method. For Agents, this field is inactive in the Edit Data Source step.
Defining Release Channel in sloctl
β
You can define the release channel in sloctl
with the sloctl apply
command for Agents
or Directs
. YAML definitions for Agents and Directs include the releaseChannel field that can take one of two values: stable
or beta
.
Below is an example YAML configuration for an Agent:
- apiVersion: n9/v1alpha
kind: Agent
metadata:
displayName: Agent DT
name: agent-dt
project: default
spec:
dynatrace:
url: https://{}
queryDelay:
minimumAgentVersion: 0.65.0-beta09
unit: Minute
value: 2
releaseChannel: beta
sourceOf:
- Metrics
Check YAML Guide and Sources documentation for more details on YAML definitions for specific Sources and connection methods.
Assumptionsβ
When you edit an existing Agent, you cannot change the value for the
releaseChannel
field;sloctl
will return an error.When adding a new Direct or Agent without specifying the
releaseChannel
, the default release channel is set tobeta
.For Agents, the
releaseChannel
field in the Nobl9 database is automatically updated, depending on the Agent version. So when you run the beta agent in your cluster, Nobl9 updates thereleaseChannel
field in the database tobeta
automatically.