🐧 Linux TippsDebian 11 Long Term Support reaches end-of-life(31.08.2026 um 02:00 Uhr)
🐧 Linux TippsUpdated Debian 13: 13.7 released(12.09.2026 um 02:00 Uhr)
🕵️ SicherheitslückenUSN-8741-1: Flatpak vulnerabilities(10.09.2026 um 10:44 Uhr)
🕵️ SicherheitslückenUSN-8742-1: Netty vulnerability(10.09.2026 um 11:01 Uhr)
🕵️ SicherheitslückenUSN-8737-2: GNU C Library vulnerabilities(10.09.2026 um 13:25 Uhr)
🕵️ SicherheitslückenUSN-8743-1: PHP vulnerabilities(10.09.2026 um 13:48 Uhr)
🕵️ SicherheitslückenUSN-8744-1: Python vulnerabilities(10.09.2026 um 15:53 Uhr)
🐧 Linux TippsUSN-8748-1: Linux kernel (NVIDIA) vulnerabilities(10.09.2026 um 17:32 Uhr)
🕵️ SicherheitslückenUSN-8745-1: KissFFT vulnerabilities(10.09.2026 um 17:36 Uhr)
🕵️ SicherheitslückenUSN-8746-1: libEBML vulnerability(10.09.2026 um 17:48 Uhr)
🐧 Linux TippsDebian 11 Long Term Support reaches end-of-life(31.08.2026 um 02:00 Uhr)
🐧 Linux TippsUpdated Debian 13: 13.7 released(12.09.2026 um 02:00 Uhr)
🕵️ SicherheitslückenUSN-8741-1: Flatpak vulnerabilities(10.09.2026 um 10:44 Uhr)
🕵️ SicherheitslückenUSN-8742-1: Netty vulnerability(10.09.2026 um 11:01 Uhr)
🕵️ SicherheitslückenUSN-8737-2: GNU C Library vulnerabilities(10.09.2026 um 13:25 Uhr)
🕵️ SicherheitslückenUSN-8743-1: PHP vulnerabilities(10.09.2026 um 13:48 Uhr)
🕵️ SicherheitslückenUSN-8744-1: Python vulnerabilities(10.09.2026 um 15:53 Uhr)
🐧 Linux TippsUSN-8748-1: Linux kernel (NVIDIA) vulnerabilities(10.09.2026 um 17:32 Uhr)
🕵️ SicherheitslückenUSN-8745-1: KissFFT vulnerabilities(10.09.2026 um 17:36 Uhr)
🕵️ SicherheitslückenUSN-8746-1: libEBML vulnerability(10.09.2026 um 17:48 Uhr)

🔧 Programmierung 🕛 vor 1 Jahr 8 Min Lesezeit
0

From Zero to Observability: Your first steps sending OpenTelemetry data to an Observability backend

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

In formal terms, OpenTelemetry 🔭 is an open source framework used for instrumenting, generating, collecting, and exporting telemetry data for applications, services, and infrastructure. It provides vendor-neutral tools, SDKs and APIs for generating, collecting, and exporting telemetry data such as traces, metrics, and logs to any observability backend, including both open source and commercial tools



While some concepts might seem straightforward to experienced engineers, I believe it’s important to share ideas in a way that’s inclusive and approachable. With that in mind, think of OpenTelemetry (a.k.a OTel) as an universal translator for data from various applications and systems. Imagine you’re managing a group of machines or software programs, each speaking its own language. Clearly you need to understand what they’re saying to monitor their performance and spot issues.



This is where OTel steps in to gather and standardize this data—things like error logs or performance metrics—and organizes it so you can send this data to a “central location” or backend for analysis. OTel transforms raw information into something clear and actionable, making it easier for users to gain deep visibility into their workloads, helping to observe, monitor, troubleshoot, and optimize software systems.






What to expect in this guide



This Hands-on article will seek to guide you on how to start your observability journey, sending logs, metrics and traces from Kubernetes-deployed applications to an observability backend/vendor using OTel. Whether you're a first-time user or an experienced engineer seeking a fast, hands-on setup, this is your chance to enhance your OTel and Kubernetes observability skills.



With OTel growing its contributor base and ranking as the second and the .





Prerequisites:





  • configured (for this guide, I’m using an EKS. But is also welcome)

  • 6 GB of free RAM for the application

  • Helm 3.14+ installation (for Helm installation method only)

  • OpenTelemetry Collector (for this guide, I’m using the official .

    The easiest way is to expose services is by using kubectl port-forward, which I’m using in this guide:




    CODE
    kubectl port-forward svc/my-otel-demo-frontendproxy 8080:8080






    With the frontendproxy port-forward set up, you can access:

    Web store:

    Load Generator UI:





    Bringing your own backend:



    Now it’s time to configure the OTel Collector for Logz.io, using the Logz.io exporter and some additional Logz.io parameters. This will allow us to start sending telemetry from the OTel App to Logz.io.



    The OpenTelemetry Collector’s configuration is exposed in the Helm chart that we just deployed in the previous steps. Any additions you make will be merged into the default configuration and you can choose any backend of your choice, that’s the main idea of using OTel: vendor-neutrality.



    Create a configuration file named my-values-file.yaml with the following content:




    CODE
    opentelemetry-collector:
    config:
    receivers:
    otlp:
    protocols:
    grpc:
    endpoint: "0.0.0.0:4317"
    http:
    endpoint: "0.0.0.0:4318"

    exporters:
    logzio/logs:
    account_token: "YOUR-LOGS-SHIPPING-TOKEN"
    region: "your-region-code"
    headers:
    user-agent: logzio-opentelemetry-logs
    prometheusremotewrite:
    endpoint: https://listener.logz.io:8053
    headers:
    Authorization: "Bearer YOUR-METRICS-SHIPPING-TOKEN"
    user-agent: logzio-opentelemetry-metrics
    target_info:
    enabled: false
    logzio/traces:
    account_token: "YOUR-TRACES-SHIPPING-TOKEN"
    region: "your-region-code"
    headers:
    user-agent: logzio-opentelemetry-traces
    prometheusremotewrite/spm:
    endpoint: "https://listener-uk.logz.io:8053"
    add_metric_suffixes: false
    headers:
    Authorization: "Bearer YOUR-METRICS-SHIPPING-TOKEN"
    user-agent: "logzio-opentelemetry-apm"
    # Metrics account token for span metrics


    processors:
    batch:
    tail_sampling:
    policies:
    [
    {
    name: policy-errors,
    type: status_code,
    status_code: {status_codes: [ERROR]}
    },
    {
    name: policy-slow,
    type: latency,
    latency: {threshold_ms: 1000}
    },
    {
    name: policy-random-ok,
    type: probabilistic,
    probabilistic: {sampling_percentage: 10}
    }
    ]

    extensions:
    pprof:
    endpoint: :1777
    zpages:
    endpoint: :55679
    health_check:

    service:
    Extensions: [health_check, pprof, zpages]
    pipelines:
    logs:
    receivers: [otlp]
    processors: [batch]
    exporters: [logzio/logs]
    metrics:
    receivers: [otlp,spanmetrics]
    exporters: [prometheusremotewrite]
    traces:
    receivers: [otlp]
    processors: [tail_sampling, batch]
    exporters: [logzio/traces,logzio/logs,spanmetrics]
    Telemetry: #log verbosity for the Collector logs.
    logs:
    level: "debug"








    ❗️Notes:





    • Receivers: Defines how telemetry data is received

    • otlp: Specifies the protocol (grpc and http) for receiving logs, metrics, or traces from applications.


    • Exporters: Specifies where and how telemetry data is sent.


    • Services: Defines the data flow pipelines for processing telemetry.


    • tail_sampling defines which traces to sample after all spans in a request are completed. By default, it collects all traces with an error span, traces slower than 1000 ms, and 10% of all other traces.

    • The extensions session is optional.

    • When merging YAML values with Helm, objects are merged and arrays are replaced. The spanmetrics exporter must be included in the array of exporters for the traces pipeline if overridden. Not including this exporter will result in an error.

    • You can find all your personal parameters and Data shipping tokens logging into the Logz.io platform, going to Settings > Data shipping tokens. Or, going to Integrations > OpenTelemetry.

    • You can also find the full OTel configuration directly in the Logz.io platform, under Integrations and searching for OpenTelemetry or accessing the Logz.io




      • In the Logz.io App 360 menu is where you’ll find all the OpenTelemetry microservices deployed, creating the ability to dive into a specific service to get even more app-level details, traces and app metrics.





      Well done! your OTel configuration and the data were well collected and exported to the vendor backend!






      Wrapping Up:



      By following the steps laid out in this guide, you've taken the critical first steps in using OpenTelemetry. You’ve learned how to collect telemetry data from applications deployed in a Kubernetes environment using the OTel demo app and send it to a vendor backend, using the native vendor Exporter. In just a few simple steps, you’ve set up logs, metrics, and traces streaming into a unified observability platform/backend, enabling seamless monitoring and troubleshooting of your systems.






      Appendix: Troubleshooting & references




      • Common issues and fixes:

        No data in Logz.io: Verify the API tokens you used in my-values-file.


      • Further Reading:








      Vollständiger Original-Bericht
      Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
      ↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 0%
🟡 In Evaluierung 0%
🟢 Keine Auswirkung 0%
Spannende Innovation 0%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
Debian 11 Long Term Support reaches end-of-life
1 Quelle
Updated Debian 13: 13.7 released
1 Quelle
USN-8741-1: Flatpak vulnerabilities
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten From Zero to Observability: Your first steps sending OpenTelemetry data to an Observability backend

Thematisch verwandte Begriffe: From, Zero, Observability, Your · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...