Kubesphere whizard-logging
Use when working with WizTelemetry Logging extension for KubeSphere, including installation, configuration, and log query API
git clone https://github.com/kubesphere/kubesphere
T=$(mktemp -d) && git clone --depth=1 https://github.com/kubesphere/kubesphere "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/whizard-logging" ~/.claude/skills/kubesphere-kubesphere-whizard-logging && rm -rf "$T"
skills/whizard-logging/SKILL.mdWizTelemetry Logging
Overview
WizTelemetry Logging is an extension component in the KubeSphere Observability Platform for log collection, processing, and storage.
When to Use
- Installing or configuring the WizTelemetry Logging extension
- Understanding log collection architecture (container logs + disk log collection)
- Using the log query API to query logs
Components
| Component | Description | Default Enabled |
|---|---|---|
| vector-logging | Container log collection (collects stdout/stderr from Docker/Containerd) | true |
| logsidecar-injector | Disk log collection (collects logs from files inside containers) | false |
Dependencies
- WizTelemetry Platform Service (whizard-telemetry): Required
- WizTelemetry Data Pipeline (vector): Required
- OpenSearch (opensearch): Required
Installation
Prerequisites
REQUIRED: Complete all steps in order before generating InstallPlan.
Step 1: Get Available Clusters and Confirm Target
⚠️ CRITICAL: DO NOT proceed until target clusters are determined.
Step 1.1: Get available clusters
kubectl get clusters -o jsonpath='{.items[*].metadata.name}'
Step 1.2: Determine target clusters
- If user explicitly specified target clusters in the request → Use those clusters directly, proceed to Step 2
- If user did NOT specify target clusters → Ask user to confirm which clusters to deploy to, then proceed to Step 2
Ask user (if not specified):
Available clusters: host, dev Which clusters do you want to deploy WizTelemetry Logging to?
Step 2: Get Latest Version (if not provided by user)
MUST do this to get the latest version:
kubectl get extensionversions -n kubesphere-system -l kubesphere.io/extension-ref=whizard-logging -o jsonpath='{range .items[*]}{.spec.version}{"\n"}{end}' | sort -V | tail -1
This outputs the latest version (e.g.,
1.4.0). Note this down - you'll use it in the InstallPlan.
Install WizTelemetry Logging
⚠️ IMPORTANT: Complete prerequisite steps BEFORE this step.
Based on your selections:
- Target clusters: User-confirmed cluster names
⚠️ CRITICAL: InstallPlan
MUST be metadata.name
. DO NOT use any other name.whizard-logging
⚠️ CRITICAL:
field is YAML format. You MUST:config
- Use the config structure exactly as shown in the template
- DO NOT add configuration fields that are not shown in the template
- DO NOT modify the structure or hierarchy
⚠️ CRITICAL: All placeholders MUST be replaced with actual values. DO NOT leave them as placeholders.
Template
apiVersion: kubesphere.io/v1alpha1 kind: InstallPlan metadata: name: whizard-logging namespace: kubesphere-system spec: extension: name: whizard-logging version: <VERSION> # From Step 2 enabled: true upgradeStrategy: Manual clusterScheduling: placement: clusters: - <TARGET_CLUSTERS>
Replace placeholders:
: From Step 3 (e.g.,<VERSION>
)1.4.0
: User-confirmed cluster names<TARGET_CLUSTERS>
Note: OpenSearch sink configuration (endpoints, auth) is provided by the vector extension. Make sure vector is installed and configured with OpenSearch before installing logging.
Enable Disk Log Collection
To enable disk log collection, add
logsidecar-injector to the config:
apiVersion: kubesphere.io/v1alpha1 kind: InstallPlan metadata: name: whizard-logging namespace: kubesphere-system spec: extension: name: whizard-logging version: <VERSION> # From Step 3 enabled: true upgradeStrategy: Manual config: | logsidecar-injector: enabled: true vector-logging: filter: extraLabelSelector: "app.kubernetes.io/name!=kube-events-exporter" calico: enabled: true systemd: docker: enabled: true kubelet: enabled: true sinks: opensearch: enabled: true index: prefix: "{{ .cluster }}-logs" timestring: "%Y.%m.%d" clusterScheduling: placement: clusters: - <TARGET_CLUSTERS>
Configuration Parameters
Logsidecar Injector Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| bool | false | Enable disk log collection |
| string | vector | Sidecar type |
| string | 100m | CPU limit |
| string | 100Mi | Memory limit |
| string | 10m | CPU request |
| string | 10Mi | Memory request |
Vector Logging Parameters
Filter Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| string | "app.kubernetes.io/name!=kube-events-exporter" | Extra label selector |
| string | "" | Extra namespace label selector |
| list | [] | List of namespaces to collect |
| list | [] | List of namespaces to exclude |
Calico Log Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| bool | true | Enable Calico log collection |
| list | ["/var/log/calico/cni/cni*.log"] | Calico log paths |
Systemd Log Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| bool | true | Enable Docker systemd log collection |
| bool | true | Enable Kubelet systemd log collection |
| string | /var/log/journal | Systemd journal directory |
OpenSearch Sink Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| bool | true | Enable OpenSearch sink |
| string | "{{ .cluster }}-logs" | Index prefix |
| string | "%Y.%m.%d" | Index time format |
ISM Policy Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| bool | false | Enable Index State Management policy |
| string | "7d" | Minimum index retention period |
Log Query API
Query Logs
curl -X GET "http://whizard-telemetry-apiserver.extension-whizard-telemetry.svc:80/kapis/logging.kubesphere.io/v1alpha2/logs?operation=query&log_query=error&size=10&cluster=host&sort=desc" \ -H "X-Remote-User: admin"
Query Parameters:
| Parameter | Type | Default | Description |
|---|---|---|---|
| string | query | Operation type: query/statistics/histogram/export |
| string | Comma-separated list of namespaces | |
| string | Fuzzy match namespace names | |
| string | Comma-separated list of workloads | |
| string | Fuzzy match workload names | |
| string | Comma-separated list of pods | |
| string | Fuzzy match pod names | |
| string | Comma-separated list of containers | |
| string | Fuzzy match container names | |
| string | Log content keywords (case-insensitive) | |
| string | 15m | Time interval for histogram (e.g., 15m, 1h, 1d) |
| string | Start time (seconds since epoch) | |
| string | End time (seconds since epoch) | |
| string | desc | Sort order: asc/desc |
| int | 0 | Offset |
| int | 10 | Number of results |
| string | host | Cluster name |
| int | Max lines for export |
Extension Operations
Check Extension Status
kubectl get installplan -n kubesphere-system -l extension.kubesphere.io/name=whizard-logging kubectl get extensionversions -n kubesphere-system whizard-logging
Uninstall Extension
Uninstall from all clusters:
kubectl delete installplan -n kubesphere-system whizard-logging
Uninstall from specific cluster:
To remove WizTelemetry Logging from a specific cluster, update the InstallPlan by removing that cluster from
clusterScheduling.placement.clusters:
apiVersion: kubesphere.io/v1alpha1 kind: InstallPlan metadata: name: whizard-logging namespace: kubesphere-system spec: extension: name: whizard-logging version: <VERSION> enabled: true upgradeStrategy: Manual clusterScheduling: placement: clusters: - <REMAINING_CLUSTERS> # Remove the cluster you want to uninstall from