github.com/netdata/go.d.plugin@v0.58.1/modules/powerdns/metrics.go (about)

     1  // SPDX-License-Identifier: GPL-3.0-or-later
     2  
     3  package powerdns
     4  
     5  // https://doc.powerdns.com/authoritative/http-api/statistics.html#objects
     6  type (
     7  	statisticMetrics []statisticMetric
     8  	statisticMetric  struct {
     9  		Name  string
    10  		Type  string
    11  		Value interface{}
    12  	}
    13  )