Update generator template

This commit is contained in:
Calle Pettersson 2019-08-03 15:10:27 +02:00
parent 9e198c55a4
commit 1a9d4afdd6
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ func New{{ .CollectorName }}Collector() (Collector, error) {
}
// Collect sends the metric values for each metric
// to the provided prometheus Metric channel.
func (c *{{ .CollectorName }}Collector) Collect(ch chan<- prometheus.Metric) error {
func (c *{{ .CollectorName }}Collector) Collect(ctx *ScrapeContext, ch chan<- prometheus.Metric) error {
if desc, err := c.collect(ch); err != nil {
log.Error("failed collecting {{ .CollectorName | toLower }} metrics:", desc, err)
return err