sentrysoftware / metricshub

Universal Metrics Collection for OpenTelemetry
https://metricshub.com
GNU Affero General Public License v3.0
15 stars 4 forks source link

Moved the localhost resource configuration to the `data center 1` resource group in `metricshub-example.yaml` #450

Closed CherfaElyes closed 1 month ago

CherfaElyes commented 1 month ago

Specification

Currently, in the metricshub.yaml examples, the localhost is not located under a resource group.

# Simple resource configuration
resources:
  localhost:
    attributes:
      host.name: localhost
      host.type: windows
    protocols:
      wmi:
        timeout: 120

To do

Move the localhost configuration example under data center 1 resource group.

resourceGroups:
  data-center-1:
    attributes:
      site: data center 1
    resources:
      localhost:
        attributes:
          host.name: localhost
          host.type: windows
        protocols:
          wmi:
            timeout: 120

To do on both windows & linux examples