String colorized stat config yaml.
()
| 148 | |
| 149 | // String colorized stat config yaml. |
| 150 | func (t StatConfig) String() string { |
| 151 | b, e := yaml.Marshal(t) |
| 152 | fatalIf(probe.NewError(e), "Unable to generate Prometheus config") |
| 153 | |
| 154 | return console.Colorize("yaml", string(b)) |
| 155 | } |
| 156 | |
| 157 | // JSON jsonified stat config. |
| 158 | func (t StatConfig) JSON() string { |