Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Producer can not write to broker nr. 2 #716

Closed
ErlendFax opened this issue May 2, 2024 · 9 comments
Closed

Producer can not write to broker nr. 2 #716

ErlendFax opened this issue May 2, 2024 · 9 comments

Comments

@ErlendFax
Copy link

ErlendFax commented May 2, 2024

We are running redpanda self-hosted with three brokers.

Our app consume from 1 topic, process messages, and produce to 3 topics. Consuming and processing takes no times, but producing back to topics works OK for a few messages, but then fails. It's possible I've gotten a bit confused here, but to me it looks like this specifically happens when writing to broker nr. 2.

We have a few other apps connected to the cluster, they all run fine. Some of them in go.

I am not sure what happens here, just reaching out to see if anyone got suggestions.

I tried to fiddle around with produce config, buffer sizes, etc. but no luck. Is my config wrong? Any ideas?

  • Go. 1.19
  • franz-go: 1.16.1
Snippets
...
configConsumer := []kgo.Opt{
  kgo.SeedBrokers(config.Redpanda.BrokerUrl),
  kgo.ConsumeTopics(config.Redpanda.ConsumerTopic),
  kgo.ConsumerGroup(config.Redpanda.GroupId),
  kgo.ClientID("lte-m-csv-parser-consumer"),
  kgo.Balancers(kgo.RoundRobinBalancer()),
  kgo.WithLogger(loggerConsumer),
}
consumerClient, err := kgo.NewClient(configConsumer...)
if err != nil {
  log.Fatalf("Failed to connect to Redpanda: %v", err)
}
defer consumerClient.Close()

  configProducer := []kgo.Opt{
    kgo.SeedBrokers(config.Redpanda.BrokerUrl),
    kgo.MaxBufferedBytes(10 * 1024), // 10 KB maximum buffer size
    kgo.ProducerBatchCompression(kgo.NoCompression()),
    kgo.WithLogger(loggerProducer),
    kgo.ClientID("lte-m-csv-parser-producer"),
  }
  producerClient, err := kgo.NewClient(configProducer...)
  if err != nil {
   log.Fatalf("Failed to connect to Redpanda: %v", err)
  }
  defer producerClient.Close()

  ...
...
// both of the below snippets are started in separate goroutines in main.

for {
  fetches := service.consumerClient.PollRecords(service.ctx, 100)

  fetches.EachError(func(topic string, partition int32, err error) {
    log.Printf("Error fetching from topic %s partition %d: %v", topic, partition, err)
  })

  fetches.EachRecord(func(record *kgo.Record) {
	  // Process record
	  messages := service.parseMessage(record.Value)
	  for _, message := range messages {
		  // send message to channel
		  service.channel <- message
		  messageCount++
	  }
      })
    }
}
...
// read from channel and produce to redpanda
  for message := range service.channel {
    service.producerClient.Produce(service.ctx, &message, callbackProducer)
  }
Logs
INFO 2024-05-02T14:31:13.563229821Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] wrote Produce v7; broker: 2, bytes_written: 1039, write_wait: 97.652µs, time_to_write: 79.068µs, err: <nil>
INFO 2024-05-02T14:31:13.566255149Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] read Produce v7; broker: 2, bytes_read: 0, read_wait: 88.88µs, time_to_read: 1.92081ms, err: EOF
INFO 2024-05-02T14:31:13.566264884Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] read from broker errored, killing connection; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2, successful_reads: 1, err: EOF
INFO 2024-05-02T14:31:13.566271592Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] retry batches processed; wanted_metadata_update: false, triggering_metadata_update: false, should_backoff: false
INFO 2024-05-02T14:31:13.820934368Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] opening connection to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2
INFO 2024-05-02T14:31:13.825469439Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] connection opened to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2
INFO 2024-05-02T14:31:13.827150889Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] connection initialized successfully; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2
INFO 2024-05-02T14:31:13.827367931Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] wrote Produce v7; broker: 2, bytes_written: 1039, write_wait: 5.907426ms, time_to_write: 42.369µs, err: <nil>
INFO 2024-05-02T14:31:13.827706811Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[DEBUG] read Produce v7; broker: 2, bytes_read: 0, read_wait: 38.142µs, time_to_read: 537.388µs, err: EOF
INFO 2024-05-02T14:31:13.827965487Z [resource.labels.containerName: lte-m-csv-parser] PRODUCER[WARN] read from broker errored, killing connection after 0 successful responses (is SASL missing?); addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2, err: EOF
@ErlendFax
Copy link
Author

Swapped to confluent kafka go and no producer problems. I still prefer franz-go though.

@twmb
Copy link
Owner

twmb commented May 3, 2024

@ErlendFax could you capture broker 2 logs around the EOF? EOF usually indicates that SASL is missing, but if br1 and br3 are working, something else is up here. I've never seen a situation like this.

The only main network difference I can think of between this client and confluent-kafka-go is the dialer under the hood.

@ErlendFax
Copy link
Author

Thank you for replying! When looking again I did see more clues from the producer logs.

Log entry from producer:

2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.

Log entry from redpanda-2:

ERROR 2024-05-02 14:00:03,199 [shard 0] kafka - kafka_batch_adapter.cc:130 - Cannot validate Kafka record batch. Missmatching CRC. Expected:1950350817, Got:4140228419
ERROR 2024-05-02T14:00:03.199527673Z [resource.labels.podName: redpanda-2] [resource.labels.containerName: redpanda] ERROR 2024-05-02 14:00:03,199 [shard 0] kafka - kafka_batch_adapter.cc:171 - batch has invalid CRC: {header_crc:0, size_bytes:1339, base_offset:{0}, type:batch_type::raft_data, crc:1950350817, attrs:{compression:none, type:CreateTime, transactional: 0, control: 0}, last_offset_delta:5, first_timestamp:{timestamp: 1714658396642}, max_timestamp:{timestamp: 1714658396642} .......

Included some logs, lots have been filtered out. Tried to find the relevant stuff.

[
  {
    "textPayload": "2024/05/02 14:00:02 Processed 58 messages",
    "insertId": "w738yii6crmdpalg",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:02.481827282Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.395487273Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] opening connection to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "vdv0y0y1atgafxa9",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.190972095Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection opened to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "ufgb3q74vjwejjub",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.198944939Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection initialized successfully; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "1f8sb90m1ohhicp7",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.199139269Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] wrote Produce v7; broker: 2, bytes_written: 2214, write_wait: 8.316396ms, time_to_write: 41.757µs, err: <nil>",
    "insertId": "zafn6xvs4iajyyht",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.199337261Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "ERROR 2024-05-02 14:00:03,199 [shard 0] kafka - kafka_batch_adapter.cc:130 - Cannot validate Kafka record batch. Missmatching CRC. Expected:1950350817, Got:4140228419",
    "insertId": "3dx9gxy4vdwn98c5",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "redpanda-2",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "redpanda",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.199471802Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app_kubernetes_io/instance": "redpanda",
      "k8s-pod/app_kubernetes_io/name": "redpanda",
      "k8s-pod/app_kubernetes_io/component": "redpanda-statefulset",
      "compute.googleapis.com/resource_name": "gke-dev-redpanda-pool-dev-c433462a-9zms",
      "k8s-pod/controller-revision-hash": "redpanda-7f6d9868cf",
      "k8s-pod/statefulset_kubernetes_io/pod-name": "redpanda-2",
      "k8s-pod/redpanda_com/poddisruptionbudget": "redpanda"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:04.768822253Z"
  },
  {
    "textPayload": "ERROR 2024-05-02 14:00:03,199 [shard 0] kafka - kafka_batch_adapter.cc:171 - batch has invalid CRC: {header_crc:0, size_bytes:1339, base_offset:{0}, type:batch_type::raft_data, crc:1950350817, attrs:{compression:none, type:CreateTime, transactional: 0, control: 0}, last_offset_delta:5, first_timestamp:{timestamp: 1714658396642}, max_timestamp:{timestamp: 1714658396642}, producer_id:-1, producer_epoch:-1, base_sequence:0, record_count:6, ctx:{term:{-1}, owner_shard:{0}}}",
    "insertId": "lh6e77uyai7oic81",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "redpanda",
        "location": "europe-west1-b",
        "pod_name": "redpanda-2",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.199527673Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/redpanda_com/poddisruptionbudget": "redpanda",
      "k8s-pod/app_kubernetes_io/instance": "redpanda",
      "k8s-pod/statefulset_kubernetes_io/pod-name": "redpanda-2",
      "compute.googleapis.com/resource_name": "gke-dev-redpanda-pool-dev-c433462a-9zms",
      "k8s-pod/app_kubernetes_io/name": "redpanda",
      "k8s-pod/controller-revision-hash": "redpanda-7f6d9868cf",
      "k8s-pod/app_kubernetes_io/component": "redpanda-statefulset"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:04.768822253Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] read Produce v7; broker: 2, bytes_read: 62, read_wait: 116.198µs, time_to_read: 404.85µs, err: <nil>",
    "insertId": "6v95x55ham3fb5hd",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.199982685Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[INFO] batch in a produce request failed; broker: 2, topic: test_slett, partition: 0, err: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., err_is_retryable: true, max_retries_reached: false",
    "insertId": "csk5bse8535jdz4g",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200409998Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "nqccma7jgkyum8kz",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200579852Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "9l1qr7peq1p7g1b7",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200609130Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "k4huuabqngrilhfz",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200614891Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "94idlc262vplj0yq",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200619820Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "trnpu6pepk5owoly",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200625359Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "uoum93fpnbn1j5dy",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200630464Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "zotmu5qre64a974f",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200635526Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "d2pr29l26695xmkb",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200678817Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "joj9hsdu7nne18c0",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200685505Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "rlbeucmq9hqpuqem",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200690984Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "t73peva1e827mfp8",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200696122Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "tel5ue7a8skkt3ge",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200700808Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "orn7z0fdoe8kirq6",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200706071Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "9vezz0hsd44yv29m",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200710862Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "pdv4g07t1tdvthbw",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200715958Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "anj2yxpve89ji3yp",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200721218Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "lx0q7a7fp7h1krg7",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200726262Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "1k6wqtw8jwgd803z",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200731600Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "7a1ftezk0n9tiky1",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200744982Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "2klo23y8xguj0skx",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200750718Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "u67gipxybuha14q0",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200803950Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "l5jbkt2bij077dc1",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200811961Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "41j9pjqcniojdmqi",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200817045Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "g1v9h1wnf7rpkhyo",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200822550Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "dwwiolb1gl37iwi5",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200827617Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "tyk2xbxpst5xiwkg",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200832168Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "28t5ewdopxkdf0sj",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200837051Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "6xcg4vuaalulk3ds",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200842280Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "fawakghjizj7aesv",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200848397Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "c03bjjlglr90jjp6",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200853423Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "m29yyk53rrwey4sp",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200858705Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "lt8hhrmmcppb2wa5",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200863834Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "ddqbjc7c52s2xssx",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200869056Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "gsdiomfo7554uhii",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200873945Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "5k3mcv08be7zz5ds",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200879103Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "4zaj9ew7lwyvqcxq",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200921188Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "lsjn8c35rng0s6q3",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200931190Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "jurzc3qrrl0usm1r",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200936073Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "6nqentmv089sklfx",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200986799Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "xq9drlcenllaifpw",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.200994437Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "kbr5pw8eghank0g1",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201000046Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "9lfatmkitebgy296",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201004949Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "xn6uga04qnmhbiwc",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201020847Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "3f9cihyr043ixyva",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201025913Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "958rvhd6vvcrc4xn",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201030632Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "uu5ioa69s6vd1qth",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201035887Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "jpp9d0dj2m287zys",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201041178Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "wbl7ve1pxukutneu",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201046647Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "20i99k5nqa4dzv1t",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201052214Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "v7w5bgrgxj18gr17",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201057364Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "lwl9ny4m1lwn6u3p",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201062562Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "0q8opqbahi0sxuf6",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201074817Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "vif72chl6z47b8w2",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201088963Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "e9v2z5kf0hideauv",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201094475Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "pz5hleexr5hchn9s",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201099383Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "60u2rx12h5hk3p8i",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201104086Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "z61jx2xfikfdcghh",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201109261Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "tnbf8ggxq8c53h2l",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201191523Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "2024/05/02 14:00:03 Error producing message:  CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.",
    "insertId": "buzs4863ldvdxaix",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201200345Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] produced; broker: 2, to: test_slett[0{err@-1,6(CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt.)}]",
    "insertId": "b81yo62m8cxxv61l",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.201274257Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] wrote Produce v7; broker: 2, bytes_written: 1039, write_wait: 88.722µs, time_to_write: 33.74µs, err: <nil>",
    "insertId": "iwv9vzba0hzy0fk4",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.657036219Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] read Produce v7; broker: 2, bytes_read: 0, read_wait: 140.701µs, time_to_read: 397.911µs, err: EOF",
    "insertId": "szxrottk16hgmtrs",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.657607336Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] read from broker errored, killing connection; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2, successful_reads: 1, err: EOF",
    "insertId": "xoerx0fxm4e6ygpf",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.657770100Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] retry batches processed; wanted_metadata_update: false, triggering_metadata_update: false, should_backoff: false",
    "insertId": "bu1lu5hghf2ja804",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.658183716Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[INFO] metadata update triggered; why: opportunistic load during sink backoff",
    "insertId": "zry3ah26tp6y2rol",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.658352396Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] wrote Metadata v7; broker: 1, bytes_written: 34, write_wait: 23.527µs, time_to_write: 32.777µs, err: <nil>",
    "insertId": "jbitke6sgu7h2wzf",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:03.658737880Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] read Metadata v7; broker: 1, bytes_read: 301, read_wait: 145.989µs, time_to_read: 1.381232ms, err: <nil>",
    "insertId": "r1qbzxp7f6g9s2hm",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.660287974Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] metadata refresh has identical topic partition data; topic: test_slett, partition: 0, leader: 2, leader_epoch: 1",
    "insertId": "uvqaolcfk6dmomf9",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.660983907Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] opening connection to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "5omjbm1lyhlvfp5h",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.898569218Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection opened to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "wacyxcnr4nuj5wp7",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.898596873Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection initialized successfully; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "bdpouonfil728wkt",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.898603221Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] wrote Produce v7; broker: 2, bytes_written: 1039, write_wait: 4.454894ms, time_to_write: 52.311µs, err: <nil>",
    "insertId": "wn1w1kjirev5f7pp",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:03.898608048Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] read Produce v7; broker: 2, bytes_read: 0, read_wait: 44.52µs, time_to_read: 3.217444ms, err: EOF",
    "insertId": "q6f5raatiouubo8o",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.902471578Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[WARN] read from broker errored, killing connection after 0 successful responses (is SASL missing?); addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2, err: EOF",
    "insertId": "0ri9fgwlkaxex3vt",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.902493308Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] retry batches processed; wanted_metadata_update: false, triggering_metadata_update: false, should_backoff: false",
    "insertId": "n27muf8yo8hrzao9",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.902503542Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] opening connection to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "jyfprf83r8sefnkj",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.902518785Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection opened to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "tj3d69hah8d4u89u",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.905464396Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection initialized successfully; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "jfvz9qq1us28h234",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:03.905483758Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] wrote Produce v7; broker: 2, bytes_written: 1039, write_wait: 4.6544ms, time_to_write: 28.472µs, err: <nil>",
    "insertId": "idiclql1hidx0kkd",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.905543058Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] read Produce v7; broker: 2, bytes_read: 0, read_wait: 47.439µs, time_to_read: 407.667µs, err: EOF",
    "insertId": "4b3sbh4aoztql5bx",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:03.906056679Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[WARN] read from broker errored, killing connection after 0 successful responses (is SASL missing?); addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2, err: EOF",
    "insertId": "728et1tbv3s7hcxh",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:03.906224664Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] retry batches processed; wanted_metadata_update: false, triggering_metadata_update: false, should_backoff: false",
    "insertId": "1j1wvxbduzkztg1r",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-02T14:00:03.906374457Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] opening connection to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "0r89mtk3rcquiszo",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:04.412972732Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection opened to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "w532191gzlgmgufw",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "namespace_name": "redpanda",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:04.415693843Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection initialized successfully; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "f3h9twohb4ktgtzz",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:04.415824803Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] wrote Produce v7; broker: 2, bytes_written: 1044, write_wait: 3.069908ms, time_to_write: 55.227µs, err: <nil>",
    "insertId": "19r9qivio4g4upmt",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:04.416061082Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] read Produce v7; broker: 2, bytes_read: 0, read_wait: 272.671µs, time_to_read: 573.925µs, err: EOF",
    "insertId": "qsh424mi3o3yj70d",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-02T14:00:04.417064075Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[WARN] read from broker errored, killing connection after 0 successful responses (is SASL missing?); addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2, err: EOF",
    "insertId": "wykgqw0kf96nceyp",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:04.417083204Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] retry batches processed; wanted_metadata_update: false, triggering_metadata_update: false, should_backoff: false",
    "insertId": "i9ulsu7vnrhlte8h",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:04.417088554Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] opening connection to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "tps7rsrxjmvh5fbc",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:04.417093690Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection opened to broker; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "74hch95li6k1a3l1",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-02T14:00:04.420880757Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] connection initialized successfully; addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2",
    "insertId": "jbnqjgc4gjbgzvga",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5"
      }
    },
    "timestamp": "2024-05-02T14:00:04.420894344Z",
    "severity": "INFO",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] wrote Produce v7; broker: 2, bytes_written: 1044, write_wait: 3.822379ms, time_to_write: 26.708µs, err: <nil>",
    "insertId": "cz38p6n5tzsvrz0z",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:04.421017736Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] read Produce v7; broker: 2, bytes_read: 0, read_wait: 278.429µs, time_to_read: 614.962µs, err: EOF",
    "insertId": "9u9lo983lxeukz2v",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:04.421792873Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "888f76864"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[WARN] read from broker errored, killing connection after 0 successful responses (is SASL missing?); addr: redpanda-2.redpanda.redpanda.svc.cluster.local.:9093, broker: 2, err: EOF",
    "insertId": "s2i0oglmn8x4h1u1",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-02T14:00:04.421800081Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "PRODUCER[DEBUG] retry batches processed; wanted_metadata_update: false, triggering_metadata_update: false, should_backoff: false",
    "insertId": "x3bwxmnn7r0h50df",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:04.421996689Z",
    "severity": "INFO",
    "labels": {
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stdout",
    "receiveTimestamp": "2024-05-02T14:00:06.722845798Z"
  },
  {
    "textPayload": "2024/05/02 14:00:04 strconv.Atoi: parsing \"00\\xdb\\r\\x00\\x18lte/csv/7359992935166918[[0\": invalid syntax",
    "insertId": "vxb0fn5xidgtyziz",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-888f76864-p89t5",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-02T14:00:04.808334481Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "888f76864",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-02T14:00:07.234686375Z"
  }
]

image

@twmb
Copy link
Owner

twmb commented May 3, 2024

Are you able to reliably recreate the batch that triggers this error? I'd like to repro this on my side, if possible. A CRC error is pretty fundamental so I'd have expected this to be raised earlier.

@ErlendFax
Copy link
Author

Not easily. Suggestions on how I can get this batch? Log it this error hits? Is there a callback func or something that can handle this and log?

@twmb
Copy link
Owner

twmb commented May 3, 2024

If you're able to get some set of records to reproduce this even infrequently, I can go on that. There's no way to know what exactly was in one batch or the next, but if you see this error maybe 1/100 times on some given set of input, then I can likely go from there.

@ErlendFax
Copy link
Author

ErlendFax commented May 3, 2024

Thank you for your help on this issue. So I used the callback func on the producer to print the message sent if an error occurred.

Tried parsing it but didn't really see anything odd. Curious if anyone else does, this is the first of in total 130 similar log entries:

2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 48 54 54 53 48 48 53 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 85 87 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 106 103 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 49 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 103 52 76 67 74 119 97 83 73 54 78 84 85 49 77 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 0 signal.NotifyContext(context.Background, [interrupt terminated])}

[123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 48 54 54 53 48 48 53 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 85 87 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 106 103 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 49 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 103 52 76 67 74 119 97 83 73 54 78 84 85 49 77 121 52 119 102 81 61 61 34 125]

I thought it would write several messages in one batch ... I would guess it does under the hood, but still confusing that this returns like this - one single message.

More logs (not all, too big)
[
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 0 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "uqckmhi9e6rqi1lk",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.918935568Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 1 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "drgoaxdc2t93r8qh",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.919120333Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 2 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "bdk4hkiaz0pml3gm",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.919284342Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 3 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "vmnhlshwufsn3lye",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.919694197Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 4 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "kqrv5bvof17qqeig",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.919714973Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 5 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "227isdd49pkpru5x",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.919818733Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 6 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "sjgf2wx55sd9aokj",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.920071995Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 7 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "l0lq727nco2vxpe7",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924624624Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 8 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "yfwbxwr1novx70ld",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924684381Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 9 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "ovtfa5cgbra8w3pn",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924696452Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 10 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "uxx8m4w168fid40f",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924710307Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 11 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "kipbi38zxrj7tz3q",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924724761Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 12 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "siu37foht4ruwv0k",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924735301Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 13 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "dpl7lxqcbuv3blvb",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924753415Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 14 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "ti2bcnlr52dsapry",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924761195Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 15 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "wluy4n8lkuudfxz3",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924771414Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 16 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "hcd53n6bym3lf6iq",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924782601Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 17 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "bd98z8wb9ifyeswq",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924791432Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 18 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "ub1x1bzslxvpa5b3",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924799337Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 19 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "yil03pow941b2v55",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924812241Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 20 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "8zjhkxdcmymzy6d9",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924832339Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 21 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "1ffgvqrcnpxox4y9",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924844148Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 22 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "zuvy7f4g6gdy47bp",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924852436Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 23 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "w125ba9687lm9raf",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924858466Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 24 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "prjcxrjrj4lfzqhn",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924871737Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 25 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "82wpu3hu3vu88wjp",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924880467Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 26 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "2q06u9aq3ynqhu0d",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924888772Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 56 55 50 57 49 57 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 53 84 87 49 113 73 87 100 82 86 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 103 51 77 106 107 120 79 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 77 122 73 119 76 67 74 119 97 83 73 54 77 84 99 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 48 78 122 85 117 77 67 119 105 97 84 69 105 79 106 69 117 77 122 103 119 76 67 74 112 77 105 73 54 77 67 52 48 79 84 103 115 73 109 107 122 73 106 111 119 76 106 81 52 78 121 119 105 100 84 69 105 79 106 73 121 78 83 52 51 76 67 74 49 77 105 73 54 77 106 73 50 76 106 81 115 73 110 85 122 73 106 111 121 77 106 85 117 79 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 27 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "j4m4pnna1mvrnuqd",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.924900203Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 0 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "uey3li9jve1wv0ov",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.926499497Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 1 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "yslx2dwkylsj7aj4",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.926629797Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 2 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "3shdzt1atcjdwd2p",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.927194695Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 3 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "yqfx2xsq9ooby3cy",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.927235144Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 4 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "54q734qb94mlf8ui",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.927245682Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 5 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "q59clqyx06abwlec",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.927269066Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 6 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "9mc9vkrecnjcgwjv",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.927289807Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 7 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "82eub4u4whhe64bs",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.927690092Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 8 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "4p37qfi3mhrach2c",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.927711989Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 9 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "iffj9xjpmedkrtyz",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.927735019Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 10 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "n59uqsjjs42wlx3i",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.928327209Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 11 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "jlatbrp8o5nudotn",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.928347502Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 12 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "vosbboawprnn3sjg",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.928371078Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 13 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "jq8q4u6ecvfabmxk",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.928385067Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 14 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "gxtqy7p5i0n57mmz",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.928659018Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 15 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "kyelb3c8pc9mlgos",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.928672929Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 16 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "0mpxhccw8i7zhmpy",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.929212199Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 17 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "tnsq0mct33wy6k47",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.929249270Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 18 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "2rtorda7t2jszpy5",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.929259725Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 19 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "g4wbrekrutgpgmna",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.929516691Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 20 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "7118qezxj30un6je",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.929543070Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 21 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "h5jv5665kftq4ipf",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.929556118Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 22 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "ji8gdr99k21a7xej",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.930267892Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 23 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "00d5oam6pk5sybsi",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.930295232Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 24 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "lh95yenn896mra42",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.930321628Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 25 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "epcpooiwzpvfk1h8",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.930343487Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 26 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "d43t5k3gwqi7ispk",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.930352922Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 27 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "qfhra64xw4witm3z",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.930359876Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 28 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "fs4dr08y2zrta12s",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.930378408Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 29 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "vx3d5ipjhpp29d8b",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.931027905Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 30 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "da3tpkbz2qs2biq7",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.931050897Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 31 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "utro4r7gy4x0p365",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.931070013Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 32 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "i6my7q3wzl1399vv",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.931077272Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 33 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "pe1n5qt8385fp891",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.931085700Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 55 48 53 48 48 53 54 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 108 79 84 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 103 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 51 77 68 85 119 77 68 85 50 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 120 79 83 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 79 84 77 117 77 67 119 105 97 84 69 105 79 106 65 117 77 122 81 115 73 109 107 121 73 106 111 119 76 106 65 49 76 67 74 112 77 121 73 54 77 67 52 122 78 105 119 105 100 84 69 105 79 106 73 48 79 83 52 119 76 67 74 49 77 105 73 54 77 106 81 53 76 106 65 115 73 110 85 122 73 106 111 121 78 84 73 117 77 72 48 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 34 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "r8mbg2sdghrutcn4",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.931103325Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 35 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "h84j4vam8y3rbr7g",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.933491474Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 36 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "f6lithbm1nquvteg",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.933568092Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 37 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "cumljlpxrb1hu59e",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.933608372Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 38 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "oov0ztch6f68qivw",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.934076798Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 39 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "hizjwz03km0a1zn3",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.934084581Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 40 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "3ad86tg6r7qp3zbv",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.934101276Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 41 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "hy64f2ohstmkxt2h",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.934108106Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 42 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "97v2hmt9qx2zxzej",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.934133219Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 49 51 56 55 48 49 50 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 49 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 73 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 65 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 73 115 73 110 66 112 73 106 111 48 78 84 89 48 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 43 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "yq5gcd7bfli96h2u",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.934140994Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 57 57 57 55 56 51 49 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 122 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 99 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 53 79 84 107 51 79 68 77 120 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 79 68 65 115 73 110 66 112 73 106 111 120 77 106 69 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 65 117 77 67 119 105 99 87 85 105 79 106 73 53 79 83 52 119 76 67 74 112 77 83 73 54 77 67 52 52 77 67 119 105 97 84 73 105 79 106 65 117 78 84 99 115 73 109 107 122 73 106 111 119 76 106 73 122 76 67 74 49 77 83 73 54 77 106 81 120 76 106 65 115 73 110 85 121 73 106 111 121 77 122 107 117 77 67 119 105 100 84 77 105 79 106 73 48 77 67 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 0 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "rmvihvhgiq8b6paj",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.941264637Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 57 57 57 55 56 51 49 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 122 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 99 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 53 79 84 107 51 79 68 77 120 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 79 68 65 115 73 110 66 112 73 106 111 120 77 106 69 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 65 117 77 67 119 105 99 87 85 105 79 106 73 53 79 83 52 119 76 67 74 112 77 83 73 54 77 67 52 52 77 67 119 105 97 84 73 105 79 106 65 117 78 84 99 115 73 109 107 122 73 106 111 119 76 106 73 122 76 67 74 49 77 83 73 54 77 106 81 120 76 106 65 115 73 110 85 121 73 106 111 121 77 122 107 117 77 67 119 105 100 84 77 105 79 106 73 48 77 67 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 1 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "2yy5w9py2jd4ojsm",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.941957345Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 57 57 57 55 56 51 49 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 122 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 99 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 53 79 84 107 51 79 68 77 120 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 65 115 73 110 66 112 73 106 111 120 77 106 65 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 65 117 77 67 119 105 99 87 85 105 79 106 73 53 79 83 52 119 76 67 74 112 77 83 73 54 77 67 52 52 77 67 119 105 97 84 73 105 79 106 65 117 78 84 99 115 73 109 107 122 73 106 111 119 76 106 73 122 76 67 74 49 77 83 73 54 77 106 81 119 76 106 65 115 73 110 85 121 73 106 111 121 77 122 103 117 77 67 119 105 100 84 77 105 79 106 73 48 77 67 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 2 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "r63punghw80gzxwy",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.943037080Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 57 57 57 55 56 51 49 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 75 82 122 104 118 97 106 81 122 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 84 99 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 53 79 84 107 51 79 68 77 120 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 65 115 73 110 66 112 73 106 111 120 77 106 65 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 65 117 77 67 119 105 99 87 85 105 79 106 73 53 79 83 52 119 76 67 74 112 77 83 73 54 77 67 52 52 77 67 119 105 97 84 73 105 79 106 65 117 78 84 99 115 73 109 107 122 73 106 111 119 76 106 73 122 76 67 74 49 77 83 73 54 77 106 81 119 76 106 65 115 73 110 85 121 73 106 111 121 77 122 103 117 77 67 119 105 100 84 77 105 79 106 73 48 77 67 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 3 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "6b1atqlmj809shq3",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.943224976Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 51 51 55 54 51 54 54 54 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 83 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 69 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 77 122 78 122 89 122 78 106 89 50 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 48 77 122 89 48 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 122 78 84 85 117 77 67 119 105 97 84 69 105 79 106 69 52 76 106 81 119 76 67 74 112 77 105 73 54 77 84 85 117 78 122 103 115 73 109 107 122 73 106 111 122 76 106 107 119 76 67 74 49 77 83 73 54 77 106 77 121 76 106 65 115 73 110 85 121 73 106 111 121 77 122 77 117 77 67 119 105 100 84 77 105 79 106 73 122 77 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 4 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "kiqqrwbg5mqhiwhh",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.943814321Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 51 51 55 54 51 54 54 54 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 83 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 85 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 69 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 77 122 78 122 89 122 78 106 89 50 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 68 65 115 73 110 66 112 73 106 111 48 77 122 89 48 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 122 78 84 85 117 77 67 119 105 97 84 69 105 79 106 69 52 76 106 81 119 76 67 74 112 77 105 73 54 77 84 85 117 78 122 103 115 73 109 107 122 73 106 111 122 76 106 107 119 76 67 74 49 77 83 73 54 77 106 77 121 76 106 65 115 73 110 85 121 73 106 111 121 77 122 77 117 77 67 119 105 100 84 77 105 79 106 73 122 77 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 5 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "zrq0qtjfryujx3vn",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.943992313Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 51 51 55 54 51 54 54 54 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 83 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 69 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 77 122 78 122 89 122 78 106 89 50 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 106 65 115 73 110 66 112 73 106 111 48 77 122 69 121 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 122 78 106 73 117 77 67 119 105 97 84 69 105 79 106 69 52 76 106 69 122 76 67 74 112 77 105 73 54 77 84 85 117 78 68 77 115 73 109 107 122 73 106 111 122 76 106 107 50 76 67 74 49 77 83 73 54 77 106 77 121 76 106 65 115 73 110 85 121 73 106 111 121 77 122 77 117 77 67 119 105 100 84 77 105 79 106 73 122 77 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 6 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "ujlxos4pwdt7qe1e",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.944250064Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 51 51 55 54 51 54 54 54 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 83 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 69 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 77 122 78 122 89 122 78 106 89 50 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 106 65 115 73 110 66 112 73 106 111 48 77 122 69 121 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 122 78 106 73 117 77 67 119 105 97 84 69 105 79 106 69 52 76 106 69 122 76 67 74 112 77 105 73 54 77 84 85 117 78 68 77 115 73 109 107 122 73 106 111 122 76 106 107 50 76 67 74 49 77 83 73 54 77 106 77 121 76 106 65 115 73 110 85 121 73 106 111 121 77 122 77 117 77 67 119 105 100 84 77 105 79 106 73 122 77 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 7 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "8ru9rrxagkleu5kt",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.944402837Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 51 51 55 54 51 54 54 54 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 83 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 69 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 77 122 78 122 89 122 78 106 89 50 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 79 68 65 115 73 110 66 112 73 106 111 48 77 122 81 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 122 78 106 69 117 77 67 119 105 97 84 69 105 79 106 69 52 76 106 73 120 76 67 74 112 77 105 73 54 77 84 85 117 78 68 77 115 73 109 107 122 73 106 111 48 76 106 65 50 76 67 74 49 77 83 73 54 77 106 77 122 76 106 65 115 73 110 85 121 73 106 111 121 77 122 81 117 77 67 119 105 100 84 77 105 79 106 73 122 77 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 8 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "pdjelwykcqlb2mxz",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.945533508Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 51 51 55 54 51 54 54 54 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 83 81 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 106 65 105 76 67 74 121 99 51 78 112 73 106 111 116 78 122 69 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 77 122 78 122 89 122 78 106 89 50 79 67 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 79 68 65 115 73 110 66 112 73 106 111 48 77 122 81 51 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 119 76 106 65 115 73 110 70 108 73 106 111 122 78 106 69 117 77 67 119 105 97 84 69 105 79 106 69 52 76 106 73 120 76 67 74 112 77 105 73 54 77 84 85 117 78 68 77 115 73 109 107 122 73 106 111 48 76 106 65 50 76 67 74 49 77 83 73 54 77 106 77 122 76 106 65 115 73 110 85 121 73 106 111 121 77 122 81 117 77 67 119 105 100 84 77 105 79 106 73 122 77 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 9 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "xprdsnzmd4ix0x9e",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.945717149Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 56 52 50 51 51 57 56 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 79 85 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 68 89 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 52 78 68 73 122 77 122 107 52 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 106 65 115 73 110 66 112 73 106 111 121 79 68 85 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 77 122 77 105 52 119 76 67 74 120 90 83 73 54 77 67 52 119 76 67 74 112 77 83 73 54 77 67 52 51 77 67 119 105 97 84 73 105 79 106 69 117 77 84 73 115 73 109 107 122 73 106 111 120 76 106 99 119 76 67 74 49 77 83 73 54 77 106 81 48 76 106 65 115 73 110 85 121 73 106 111 121 78 68 77 117 77 67 119 105 100 84 77 105 79 106 73 48 77 105 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 10 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "bggv47edmqi317j7",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.945955808Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 56 52 50 51 51 57 56 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 79 85 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 68 89 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 52 78 68 73 122 77 122 107 52 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 106 65 115 73 110 66 112 73 106 111 121 79 68 85 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 77 122 77 105 52 119 76 67 74 120 90 83 73 54 77 67 52 119 76 67 74 112 77 83 73 54 77 67 52 51 77 67 119 105 97 84 73 105 79 106 69 117 77 84 73 115 73 109 107 122 73 106 111 120 76 106 99 119 76 67 74 49 77 83 73 54 77 106 81 48 76 106 65 115 73 110 85 121 73 106 111 121 78 68 77 117 77 67 119 105 100 84 77 105 79 106 73 48 77 105 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 11 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "44it19rdj3gkbyim",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.946062762Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 56 52 50 51 51 57 56 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 79 85 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 68 89 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 52 78 68 73 122 77 122 107 52 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 106 65 115 73 110 66 112 73 106 111 121 79 68 85 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 77 122 77 105 52 119 76 67 74 120 90 83 73 54 77 67 52 119 76 67 74 112 77 83 73 54 77 67 52 51 77 67 119 105 97 84 73 105 79 106 69 117 77 84 73 115 73 109 107 122 73 106 111 120 76 106 99 119 76 67 74 49 77 83 73 54 77 106 81 48 76 106 65 115 73 110 85 121 73 106 111 121 78 68 77 117 77 67 119 105 100 84 77 105 79 106 73 48 77 105 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 12 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "hjwh9763pgzphuvt",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.946228698Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 56 52 50 51 51 57 56 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 79 85 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 77 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 68 89 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 52 78 68 73 122 77 122 107 52 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 122 78 106 65 115 73 110 66 112 73 106 111 121 79 68 85 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 77 122 77 105 52 119 76 67 74 120 90 83 73 54 77 67 52 119 76 67 74 112 77 83 73 54 77 67 52 51 77 67 119 105 97 84 73 105 79 106 69 117 77 84 73 115 73 109 107 122 73 106 111 120 76 106 99 119 76 67 74 49 77 83 73 54 77 106 81 48 76 106 65 115 73 110 85 121 73 106 111 121 78 68 77 117 77 67 119 105 100 84 77 105 79 106 73 48 77 105 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 13 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "29lgc1uzeun6zfk2",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser"
      }
    },
    "timestamp": "2024-05-03T16:07:38.946454689Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 56 52 50 51 51 57 56 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 79 85 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 68 89 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 52 78 68 73 122 77 122 107 52 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 65 115 73 110 66 112 73 106 111 121 79 68 73 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 77 122 77 121 52 119 76 67 74 120 90 83 73 54 77 67 52 119 76 67 74 112 77 83 73 54 77 67 52 51 77 67 119 105 97 84 73 105 79 106 69 117 77 84 73 115 73 109 107 122 73 106 111 120 76 106 99 119 76 67 74 49 77 83 73 54 77 106 81 48 76 106 65 115 73 110 85 121 73 106 111 121 78 68 77 117 77 67 119 105 100 84 77 105 79 106 73 48 77 105 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 14 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "nc7hlvemcej552s7",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev",
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "location": "europe-west1-b"
      }
    },
    "timestamp": "2024-05-03T16:07:38.955362443Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 53 55 48 54 53 54 55 50 56 52 50 51 51 57 56 57 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 109 83 106 89 53 89 109 53 79 85 83 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 65 105 76 67 74 121 99 51 78 112 73 106 111 116 79 68 89 115 73 109 49 108 100 71 86 121 88 50 108 107 73 106 111 105 78 84 99 119 78 106 85 50 78 122 73 52 78 68 73 122 77 122 107 52 79 83 73 115 73 110 86 117 97 88 103 105 79 106 69 51 77 84 81 51 78 84 73 48 77 68 65 115 73 110 66 112 73 106 111 121 79 68 73 117 77 67 119 105 99 71 85 105 79 106 65 117 77 67 119 105 99 87 107 105 79 106 77 122 77 121 52 119 76 67 74 120 90 83 73 54 77 67 52 119 76 67 74 112 77 83 73 54 77 67 52 51 77 67 119 105 97 84 73 105 79 106 69 117 77 84 73 115 73 109 107 122 73 106 111 120 76 106 99 119 76 67 74 49 77 83 73 54 77 106 81 48 76 106 65 115 73 110 85 121 73 106 111 121 78 68 77 117 77 67 119 105 100 84 77 105 79 106 73 48 77 105 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 15 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "j5pva948l1k6q3jo",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.955490017Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 54 54 51 57 57 49 56 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 112 109 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 81 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 78 68 65 48 76 67 74 119 97 83 73 54 77 122 103 50 78 105 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 16 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "6p1dpgm9syempad4",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "project_id": "hark-tech",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "cluster_name": "dev",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "namespace_name": "redpanda"
      }
    },
    "timestamp": "2024-05-03T16:07:38.955522180Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 54 54 51 57 57 49 56 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 112 109 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 81 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 78 68 65 48 76 67 74 119 97 83 73 54 77 122 103 50 78 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 0 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "4c4hxs8wk215htvv",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.955546923Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 54 54 51 57 57 49 56 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 112 109 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 103 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 78 68 65 52 76 67 74 119 97 83 73 54 77 122 103 50 78 121 52 119 102 81 61 61 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 18 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "wqjmi3is5vhqef7y",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "project_id": "hark-tech"
      }
    },
    "timestamp": "2024-05-03T16:07:38.955563589Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 54 54 51 57 57 49 56 47 108 49 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 112 109 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 68 103 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 78 68 65 52 76 67 74 119 97 83 73 54 77 122 103 50 78 121 52 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 78 68 69 119 76 67 74 119 97 83 73 54 77 122 103 50 78 67 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 77 122 85 49 76 106 65 115 73 109 107 120 73 106 111 120 77 67 52 121 77 122 103 115 73 109 107 121 73 106 111 50 76 106 73 48 77 67 119 105 97 84 77 105 79 106 69 122 76 106 73 120 77 105 119 105 100 84 69 105 79 106 73 122 79 83 52 122 76 67 74 49 77 105 73 54 77 67 52 119 76 67 74 49 77 121 73 54 77 106 77 52 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 0 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "7fct9n71c4ihxb4p",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "cluster_name": "dev",
        "location": "europe-west1-b",
        "namespace_name": "redpanda",
        "project_id": "hark-tech",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn"
      }
    },
    "timestamp": "2024-05-03T16:07:38.955570743Z",
    "severity": "ERROR",
    "labels": {
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser",
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 54 54 51 57 57 49 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 112 109 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 84 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 89 50 77 122 107 53 77 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 78 68 69 119 76 67 74 119 97 83 73 54 77 122 103 50 78 67 52 119 76 67 74 119 90 83 73 54 77 67 52 119 76 67 74 120 97 83 73 54 77 67 52 119 76 67 74 120 90 83 73 54 77 122 85 49 76 106 65 115 73 109 107 120 73 106 111 120 77 67 52 121 77 122 103 115 73 109 107 121 73 106 111 50 76 106 73 48 77 67 119 105 97 84 77 105 79 106 69 122 76 106 73 120 77 105 119 105 100 84 69 105 79 106 73 122 79 83 52 122 76 67 74 49 77 105 73 54 77 67 52 119 76 67 74 49 77 121 73 54 77 106 77 52 76 106 66 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 20 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "b3xwtos32ojy2n6j",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "container_name": "lte-m-csv-parser",
        "namespace_name": "redpanda",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "location": "europe-west1-b",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.955581092Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/app": "lte-m-csv-parser",
      "k8s-pod/pod-template-hash": "66898544ff"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  {
    "textPayload": "2024/05/03 16:07:38 Failed to produce message: CORRUPT_MESSAGE: This message has failed its CRC checksum, exceeds the valid size, has a null key for a compacted topic, or is otherwise corrupt., &{[] [123 34 116 111 112 105 99 34 58 34 108 116 101 47 99 115 118 47 54 57 55 48 54 51 49 52 48 54 54 51 57 57 49 56 47 108 50 34 44 34 99 111 110 116 101 110 116 34 58 34 101 121 74 107 90 88 90 112 89 50 86 102 97 87 81 105 79 105 74 88 84 68 104 115 81 108 112 109 97 121 73 115 73 109 82 48 98 83 73 54 73 106 73 119 77 106 81 116 77 68 85 116 77 68 78 85 77 84 103 54 77 68 89 54 78 84 65 105 76 67 74 121 99 51 78 112 73 106 111 116 77 84 65 120 76 67 74 116 90 88 82 108 99 108 57 112 90 67 73 54 73 106 89 53 78 122 65 50 77 122 69 48 77 68 89 50 77 122 107 53 77 84 103 105 76 67 74 49 98 109 108 52 73 106 111 120 78 122 69 48 78 122 85 121 78 68 69 119 76 67 74 119 97 83 73 54 77 106 107 48 76 106 65 115 73 110 66 108 73 106 111 119 76 106 65 115 73 110 70 112 73 106 111 120 77 84 77 117 77 67 119 105 99 87 85 105 79 106 65 117 77 67 119 105 97 84 69 105 79 106 69 117 77 106 65 51 76 67 74 112 77 105 73 54 77 67 52 52 79 68 73 115 73 109 107 122 73 106 111 119 76 106 81 52 78 105 119 105 100 84 69 105 79 106 73 122 79 83 52 121 76 67 74 49 77 105 73 54 77 67 52 119 76 67 74 49 77 121 73 54 77 106 77 52 76 106 74 57 34 125] [] 0001-01-01 00:00:00 +0000 UTC test_slett 0 {0} 0 0 0 0 signal.NotifyContext(context.Background, [interrupt terminated])}",
    "insertId": "azhcrpgp8i6ptryv",
    "resource": {
      "type": "k8s_container",
      "labels": {
        "namespace_name": "redpanda",
        "container_name": "lte-m-csv-parser",
        "location": "europe-west1-b",
        "pod_name": "lte-m-csv-parser-66898544ff-4vvhn",
        "project_id": "hark-tech",
        "cluster_name": "dev"
      }
    },
    "timestamp": "2024-05-03T16:07:38.955642643Z",
    "severity": "ERROR",
    "labels": {
      "compute.googleapis.com/resource_name": "gke-dev-dev-e2-4-1361cce2-zlcq",
      "k8s-pod/pod-template-hash": "66898544ff",
      "k8s-pod/app": "lte-m-csv-parser"
    },
    "logName": "projects/hark-tech/logs/stderr",
    "receiveTimestamp": "2024-05-03T16:07:41.121500558Z"
  },
  ...
]

@twmb
Copy link
Owner

twmb commented May 8, 2024

I just tried writing that exact message to a local test-slett topic on Redpanda with the same producer settings, but I'm not getting an error. Are you able to reliably trigger the error with that input, or is there more to it (and maybe that's just one message failing in the middle)?

@twmb
Copy link
Owner

twmb commented May 26, 2024

Please let me know if you have some program that I can run to reproduce this; I'll close this issue for now otherwise. The only other issue that has a CORRUPT_MESSAGE error in it is #459, and the problem there was the user was mutating the record while it was being produced.

@twmb twmb closed this as completed May 26, 2024
@twmb twmb removed the TODO label May 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants