### OverviewHostSpace Kubernetes Engine (HKE) is an enterprise-grade Kubernetes orchestration platform that focuses on automated scaling, monitoring, and high availability. This documentation covers the integration and configuration of the OpenTelemetry Collector in HKE for efficient observability. ### Key Features/Components- **OpenTelemetry Collector**: Collects, processes, and exports telemetry data- **HostSpace Kubernetes Engine (HKE)**: Orchestrates containers for scalability and high availability ### Step-by-step Instructions or Configuration Details1. **Deploy OpenTelemetry Collector**: ```yaml apiVersion: v1 kind: ConfigMap metadata: name: otel-collector-config data: config.yaml: | receivers: otlp: exporters: logging:
apiVersion: v1kind: Servicemetadata: name: otel-collectorspec: ports: - protocol: TCP port: 4317 targetPort: 4317 selector: app: otel-collector
kubectl get pods
kubectl describe pod <pod_name>