debugString writes debug information to the given string builder with the given prefix.
(sb *strings.Builder, prefix string)
| 280 | // debugString writes debug information to the given string builder with the |
| 281 | // given prefix. |
| 282 | func (m *Metric) debugString(sb *strings.Builder, prefix string) { |
| 283 | writeLine(sb, prefix, "Metric %s: %f %s", m.Name, m.Sample, m.Unit) |
| 284 | } |
| 285 | |
| 286 | // InitBigQuery initializes a BigQuery dataset/table in the project. If the dataset/table already exists, it is not duplicated. |
| 287 | func InitBigQuery(ctx context.Context, projectID, datasetID, tableID string, opts []option.ClientOption) error { |