Skip to content

Commit fe02616

Browse files
authored
Merge pull request #110 from metrico/debug
Debug
2 parents 0b1cea3 + 90ec04f commit fe02616

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

exporter/qrynexporter/logs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ func (e *logsExporter) pushLogsData(ctx context.Context, ld plog.Logs) error {
452452
}
453453

454454
func batchSamplesAndTimeSeries(ctx context.Context, db clickhouse.Conn, samples []Sample, timeSeries []TimeSerie) error {
455-
isCluster := ctx.Value("cluster").(bool)
455+
isCluster := ctx.Value(clusterKey).(bool)
456456
samplesBatch, err := db.PrepareBatch(ctx, samplesSQL(isCluster))
457457
if err != nil {
458458
return err

extension/pyroscope/config.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ package pyroscope
33
import "go.opentelemetry.io/collector/component"
44

55
type Config struct {
6-
ApplicationName string `json:"application_name"`
7-
Tags map[string]string `json:"tags"`
8-
ServerAddress string `json:"server_address"`
9-
BasicAuth BasicAuth `json:"basic_auth"`
10-
ProfileTypes []string `json:"profile_types"`
11-
TenantID string `json:"tenant_id"`
6+
ApplicationName string `mapstructure:"application_name"`
7+
Tags map[string]string `mapstructure:"tags"`
8+
ServerAddress string `mapstructure:"server_address"`
9+
BasicAuth BasicAuth `mapstructure:"basic_auth"`
10+
ProfileTypes []string `mapstructure:"profile_types"`
11+
TenantID string `mapstructure:"tenant_id"`
1212
}
1313

1414
type BasicAuth struct {
15-
Username string `json:"username"`
16-
Password string `json:"password"`
15+
Username string `mapstructure:"username"`
16+
Password string `mapstructure:"password"`
1717
}
1818

1919
func defaultConfig() component.Config {

0 commit comments

Comments
 (0)