Skip to content

Conversation

smortex
Copy link
Member

@smortex smortex commented Nov 28, 2024

When sending metrics to multiple services on distinct ports on the same
node, in order to avoid conflicts we need to allow overriding the server
hostname on a per resource basis.

Example use case:

class { 'collectd::plugin::network':
  servers => {
    'collectd' => {
      hostname => 'remote.example.com',
      port     => 25826,
    },
    'influxdb' => {
      hostname => 'remote.example.com',
      port     => 25827,
    },
  },
}

When sending metrics to multiple services on distinct ports on the same
node, in order to avoid conflicts we need to allow overriding the server
hostname on a per resource basis.

Example use case:

```puppet
class { 'collectd::plugin::network':
  servers => {
    'collectd' => {
      hostname => 'remote.example.com',
      port     => 25826,
    },
    'influxdb' => {
      hostname => 'remote.example.com',
      port     => 25827,
    },
  },
}
```
@smortex smortex added the enhancement New feature or request label Nov 28, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant