Skip to content

Instantly share code, notes, and snippets.

@RoeiDimi
RoeiDimi / jarray_to_csv.go
Created January 14, 2024 10:11
Otel collector transformer jarray -> csv
package jarray_to_csv
import (
"bytes"
"context"
"encoding/csv"
"fmt"
"strconv"
"github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza/entry"
@RoeiDimi
RoeiDimi / csv.go
Created January 7, 2024 08:59
csv_parser with jarray support
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package csv // import "github.com/open-telemetry/opentelemetry-collector-contrib/pkg/stanza/operator/parser/csv"
import (
"context"
csvparser "encoding/csv"
"errors"
"fmt"
"io"