Data ingestion

Learn how to ingest metrics, logs, and traces into the Giant Swarm observability platform.

The Giant Swarm Observability Platform provides flexible, self-service data ingestion capabilities for logs, metrics, and traces. By default, all clusters are equipped with the necessary components to collect and forward observability data to the central platform.

Architecture overview

Each Giant Swarm cluster comes pre-configured with:

  • Grafana Alloy: Acts as the observability agent for metrics, logs, and traces collection
  • OTLP Gateway (otlp-gateway.kube-system.svc): Accepts OpenTelemetry Protocol (OTLP) data for metrics, logs, and traces and forwards it to the central storage
  • Central storage: Metrics are stored in Grafana Mimir, logs in Grafana Loki, and traces in Grafana Tempo

This architecture allows you to configure data collection declaratively using Kubernetes Custom Resources, making it easy to integrate into your existing deployment workflows.

Metrics ingestion

Application instrumentation

Before ingesting metrics, ensure your application is properly instrumented to expose metrics in Prometheus format.

Using ServiceMonitors

ServiceMonitors are the primary way to configure metric collection for applications that expose metrics through a Kubernetes Service.

Here’s a basic ServiceMonitor example:

apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
  labels:
    # Required for discovery by the metrics agent
    observability.giantswarm.io/tenant: my_tenant
    app.kubernetes.io/instance: my-service
  name: my-service
  namespace: monitoring
spec:
  endpoints:
  - interval: 60s   # Collection frequency
    path: /metrics  # Metrics endpoint path
    port: web       # Named port exposing metrics
  selector:         # Service label selector
    matchLabels:
      app.kubernetes.io/instance: my-service

Using PodMonitors

PodMonitors are useful for collecting metrics directly from pods when a Service isn’t necessary or doesn’t exist.

Use PodMonitors when:

  • Your application doesn’t require a Service for its primary function
  • You need to collect metrics from specific pod instances
  • You want more granular control over pod selection

Here is a basic PodMonitor example:

apiVersion: monitoring.coreos.com/v1
kind: PodMonitor
metadata:
  labels:
    # Required for discovery by the metrics agent
    observability.giantswarm.io/tenant: my_tenant
    app.kubernetes.io/instance: my-app
  name: my-app
  namespace: monitoring
spec:
  podMetricsEndpoints:
  - interval: 60s   # Collection frequency
    path: /metrics  # Metrics endpoint path
    port: http      # Named port exposing metrics
  selector:         # Pod label selector
    matchLabels:
      app.kubernetes.io/instance: my-app

Key requirements

Both examples carry the observability.giantswarm.io/tenant label, which the metrics agent requires to discover the resource and route the metrics to a tenant. Monitor the resulting resource usage in the ServiceMonitors Overview dashboard.

For the required labels, discovery rules, and a full field reference for ServiceMonitors and PodMonitors, see the ServiceMonitor and PodMonitor reference.

Log ingestion

Overview

Starting from CAPA v29.2.0 and CAPZ v29.1.0, clusters automatically collect system logs and forward them to the central Loki instance. You can also configure collection of application logs using two approaches:

The simplest way to enable log collection is by adding a tenant label to your pods:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-deployment
  namespace: example-namespace
spec:
  template:
    metadata:
      labels:
        # Enable automatic log collection
        observability.giantswarm.io/tenant: my_tenant
        app: nginx
    spec:
      containers:
      - name: nginx
        image: nginx:1.14.2

Method 2: PodLogs resources

PodLogs provide more flexibility for advanced log collection scenarios:

apiVersion: monitoring.grafana.com/v1alpha2
kind: PodLogs
metadata:
  name: example-podlog
  namespace: example-namespace
spec:
  namespaceSelector:
    matchLabels:
      kubernetes.io/metadata.name: example-namespace
  relabelings:
  # Configure tenant for data routing
  - action: replace
    replacement: myteam
    targetLabel: giantswarm_observability_tenant
  selector:
    matchLabels:
      app: nginx

Use PodLogs when you need to:

  • Filter pods using complex label selectors
  • Apply custom relabeling rules
  • Collect from multiple namespaces
  • Transform log metadata before ingestion

Default log collection

System logs are automatically collected from these namespaces:

  • kube-system
  • giantswarm

These are managed through predefined PodLogs resources and shouldn’t be modified.

OTLP ingestion

Starting from cluster release v31 (alpha) and fully supported from v33, the observability platform supports ingesting metrics, logs, and traces via the OpenTelemetry Protocol (OTLP) through a cluster-local gateway.

Important: OTLP ingestion must be enabled through your Account Engineer before use.

Before sending data, ensure your application is instrumented with OpenTelemetry libraries for your programming language. The gateway endpoints and ports, the SDK environment variables, and how OTLP data is routed to a tenant are documented in the OTLP ingestion reference.

Example

This deployment sends metrics and logs over OTLP/HTTP, routing them to the my_tenant tenant via the pod label:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: my-app
  namespace: example-namespace
spec:
  template:
    metadata:
      labels:
        observability.giantswarm.io/tenant: my_tenant
        app: my-app
    spec:
      containers:
      - name: app
        image: my-app:latest
        env:
        - name: OTEL_EXPORTER_OTLP_ENDPOINT
          value: "http://otlp-gateway.kube-system.svc:4318"
        - name: OTEL_METRICS_EXPORTER
          value: "otlp"
        - name: OTEL_LOGS_EXPORTER
          value: "otlp"
        - name: OTEL_RESOURCE_ATTRIBUTES
          value: "service.name=my-app"

Trace-specific considerations

  • Service graphs: Tempo automatically generates service topology maps from trace data
  • Metrics generation: Tempo can generate rate, error, and duration (RED) metrics from spans
  • Alerting limitation: Direct alerting on trace data isn’t supported; use metrics generated by Tempo’s metrics-generator instead

Multi-tenancy considerations

All observability data types use tenant-based routing to ensure data isolation:

  • Metrics: Use observability.giantswarm.io/tenant label on ServiceMonitors/PodMonitors
  • Logs: Use observability.giantswarm.io/tenant pod label or giantswarm_observability_tenant relabeling in PodLogs
  • Metrics, logs, and traces (OTLP): Use X-Scope-OrgID HTTP header (OTLP/HTTP) or observability.giantswarm.io/tenant pod label (gRPC and HTTP). The header takes precedence when both are set.

Important: Data sent to non-existent tenants will be dropped. Ensure your tenant exists in a Grafana Organization before configuring data collection.

Performance and cost considerations

Data ingestion affects platform resource consumption:

  • Metrics: More metrics increase Mimir resource usage
  • Logs: More logs increase Loki resource usage and Kubernetes API server load
  • Traces: More traces increase Tempo resource usage and network overhead
  • Network: Log tailing and trace collection use Kubernetes API and network resources

Monitor your usage through:

  • ServiceMonitors Overview dashboard for metrics
  • Kubernetes / Compute Resources / Pod dashboard for API server impact

Next steps