JSON jsonified prometheus config.
()
| 136 | |
| 137 | // JSON jsonified prometheus config. |
| 138 | func (c PrometheusConfig) JSON() string { |
| 139 | jsonMessageBytes, e := json.MarshalIndent(c.ScrapeConfigs[0], "", " ") |
| 140 | fatalIf(probe.NewError(e), "Unable to marshal into JSON.") |
| 141 | return string(jsonMessageBytes) |
| 142 | } |
| 143 | |
| 144 | // StatConfig - container to hold the targets config. |
| 145 | type StatConfig struct { |