Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[inputs.modbus] Group coil/discrete/holding/input metric together #16031

Closed
ffutop opened this issue Oct 16, 2024 · 7 comments · Fixed by #16040
Closed

[inputs.modbus] Group coil/discrete/holding/input metric together #16031

ffutop opened this issue Oct 16, 2024 · 7 comments · Fixed by #16040
Assignees
Labels
feature request Requests for new plugin and for new features to existing plugins

Comments

@ffutop
Copy link

ffutop commented Oct 16, 2024

Use Case

I know modbus plugin will provide predefined tags: slave_id, type

but even I force tag type = "", the result still split in two records.

[[inputs.modbus]]
  name_override = "modbus"
  name = "modbus"
  timeout = "1s"
  controller = "tcp://172.16.2.31:502"
  configuration_type = "request"
  [[inputs.modbus.request]]
    slave_id = 1
    byte_order = "ABCD"
    register = "holding"
    fields = [{address = 101, name = '4x0102:INT', type = 'INT16'}]
    fields = [{address = 102, name = '4x0103:INT', type = 'INT16'}]

    [inputs.modbus.request.tags]
      type = ""

  [[inputs.modbus.request]]
    slave_id = 1
    byte_order = "ABCD"
    register = "input"
    fields = [{address = 134, name = '3x0135:INT', type = 'INT16'}]

    [inputs.modbus.request.tags]
      type = ""

[[outputs.file]]
  files = ["stdout"]
  data_format = "influx"

Expected behavior

modbus,name=modbus,slave_id=1 4x0102:INT=0i,4x0103:INT=0i,3x0135:INT=0i 1729060160000000000

Actual behavior

modbus,name=modbus,slave_id=1 4x0102:INT=0i,4x0103:INT=0i 1729060160000000000
modbus,name=modbus,slave_id=1 3x0135:INT=0i 1729060160000000000

Additional info

I read the source, the code force split in four types.

Should we modify it, and group metric together if user-defined tag set type = "" or set same type?

// https://github.com/influxdata/telegraf/blob/master/plugins/inputs/modbus/modbus.go#L245
tags := map[string]string{
	"name":     m.Name,
	"type":     cCoils,
	"slave_id": strconv.Itoa(int(slaveID)),
}
m.collectFields(acc, timestamp, tags, requests.coil)

tags["type"] = cDiscreteInputs
m.collectFields(acc, timestamp, tags, requests.discrete)

tags["type"] = cHoldingRegisters
m.collectFields(acc, timestamp, tags, requests.holding)

tags["type"] = cInputRegisters
m.collectFields(acc, timestamp, tags, requests.input)
// https://github.com/influxdata/telegraf/blob/master/plugins/inputs/modbus/modbus.go#L520C1-L547C2
func (m *Modbus) collectFields(acc telegraf.Accumulator, timestamp time.Time, tags map[string]string, requests []request) {
	grouper := metric.NewSeriesGrouper()
	for _, request := range requests {
		for _, field := range request.fields {
			// Collect tags from global and per-request
			ftags := map[string]string{}
			for k, v := range tags {
				ftags[k] = v
			}
			for k, v := range field.tags {
				ftags[k] = v
			}
			// In case no measurement was specified we use "modbus" as default
			measurement := "modbus"
			if field.measurement != "" {
				measurement = field.measurement
			}

			// Group the data by series
			grouper.Add(measurement, ftags, timestamp, field.name, field.value)
		}
	}

	// Add the metrics grouped by series to the accumulator
	for _, x := range grouper.Metrics() {
		acc.AddMetric(x)
	}
}
@ffutop ffutop added the feature request Requests for new plugin and for new features to existing plugins label Oct 16, 2024
@R290
Copy link
Contributor

R290 commented Oct 16, 2024

@ffutop
Copy link
Author

ffutop commented Oct 16, 2024

Aggregator need an extra delay. If group in inputs, it will be better.

And other inputs like s7comm, provide grouped metric

@srebhan
Copy link
Member

srebhan commented Oct 16, 2024

@ffutop please use the metric configuration style which does exactly this!

@srebhan srebhan added the waiting for response waiting for response from contributor label Oct 16, 2024
@ffutop
Copy link
Author

ffutop commented Oct 17, 2024

Hi, @srebhan . I tried metric configuration style, but there is no different.

Configuration

[[inputs.modbus]]
  name_override = "modbus"
  name = "modbus"
  timeout = "1s"
  controller = "tcp://172.16.2.31:502"
  configuration_type = "metric"
  [[inputs.modbus.metric]]
    slave_id = 1
    byte_order = "ABCD"
    fields = [
      {register = "holding", address = 101, name = '4x0102:INT', type = 'INT16'},
      {register = "holding", address = 102, name = '4x0103:INT', type = 'INT16'},
      {register = "input", address = 134, name = '3x0135:INT', type = 'INT16'},
    ]

    [inputs.modbus.metric.tags]
      type = ""

[[outputs.file]]
  files = ["stdout"]
  data_format = "influx"

Actual behavior

modbus,name=modbus,slave_id=1 4x0102:INT=0i,4x0103:INT=0i 1729125830000000000
modbus,name=modbus,slave_id=1 3x0135:INT=0i 1729125830000000000

Extra

I'm not sure if I missed something. I've read the source code, and it force split four types.

@telegraf-tiger telegraf-tiger bot removed the waiting for response waiting for response from contributor label Oct 17, 2024
@srebhan
Copy link
Member

srebhan commented Oct 18, 2024

@ffutop I now see the issue. Please test the binary in PR #16040, available as soon as CI finished the tests, and let me know if this fixes your issue!

Note: You need to set exclude_register_type_tag = true on the [[inputs.modbus]] level.

@srebhan srebhan self-assigned this Oct 18, 2024
@ffutop
Copy link
Author

ffutop commented Oct 20, 2024

@srebhan Thx, it works.

@ffutop ffutop closed this as completed Oct 20, 2024
@srebhan srebhan reopened this Oct 24, 2024
@srebhan
Copy link
Member

srebhan commented Oct 24, 2024

@ffutop please keep the issue open, it will be automatically closed once the PR is merged. This way other users can know when master contains the fix...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request Requests for new plugin and for new features to existing plugins
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants