1.6 KiB
1.6 KiB
Telemetry for backend
By default, the telemetry is disabled by setting selector to none, like this
telemetry:
selector: ${SW_TELEMETRY:none}
none:
prometheus:
host: ${SW_TELEMETRY_PROMETHEUS_HOST:0.0.0.0}
port: ${SW_TELEMETRY_PROMETHEUS_PORT:1234}
but you can set one of prometheus or so11y to enable them, for more information, refer to the details below.
Prometheus
Prometheus is supported as telemetry implementor. By using this, prometheus collects metrics from SkyWalking backend.
Set prometheus to provider. The endpoint open at http://0.0.0.0:1234/ and http://0.0.0.0:1234/metrics.
telemetry:
selector: ${SW_TELEMETRY:prometheus}
prometheus:
Set host and port if needed.
telemetry:
selector: ${SW_TELEMETRY:prometheus}
prometheus:
host: 127.0.0.1
port: 1543
Grafana Visualization
Provide the grafana dashboard settings. Check SkyWalking Telemetry dashboard config.
Self Observability
SkyWalking supports to collect telemetry data into OAP backend directly. Users could check them out through UI or GraphQL API then.
Adding following configuration to enable self-observability related modules.
- Setting up prometheus telemetry.
telemetry:
selector: ${SW_TELEMETRY:prometheus}
prometheus:
host: 127.0.0.1
port: 1543
```.
2. Setting up prometheus fetcher
```yaml
prometheus-fetcher:
selector: ${SW_PROMETHEUS_FETCHER:default}
default:
active: ${SW_PROMETHEUS_FETCHER_ACTIVE:true}
- Make sure
config/fetcher-prom-rules/self.yamlexists.