Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .chloggen/deprecate-collectd-zookeeper-monitor.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: deprecation

# The name of the component, or a single word describing the area of concern, (e.g. crosslink)
component: signalfx-agent

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: The collectd/zookeeper plugin is deprecated. Please use the [zookeeper receiver](https://github.com/signalfx/signalfx-agent/tree/main/internal/receiver/zookeeper) instead. This plugin will be removed by the end of March 2026.

# One or more tracking issues related to the change
issues: []

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
monitors:
- dimensions:
doc: |
**This plugin is deprecated and will be removed by the end of March 2026. Please follow the documentation to set up the zookeeper receiver.**

Monitors an Apache Zookeeper instance using the [Zookeeper collectd
plugin](https://github.com/signalfx/collectd-zookeeper). This plugin is
installed with the Smart Agent so no additional installation is required to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ type Monitor struct {

// Configure configures and runs the plugin in python
func (rm *Monitor) Configure(conf *Config) error {
rm.Logger().Warn("[NOTICE] The collectd/zookeeper plugin is deprecated. Please use the zookeeper receiver instead. This plugin will be removed by the end of March 2026.")
conf.pyConf = &python.Config{
MonitorConfig: conf.MonitorConfig,
ModuleName: "zk-collectd",
Expand Down
Loading