Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix install commands #17

Merged
merged 1 commit into from
Apr 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ kubectl apply -f https://raw.githubusercontent.com/alibaba/kubeskoop/main/deploy
Confirm that the installation is complete and obtain access through the following steps:
```shell
# View the status of Skoop exporter
kubectl get pod -n kubeskoop -l app=skoop-exporter -o wide
kubectl get pod -n kubeskoop -l app=kubeskoop-exporter -o wide
# View the status of Probe collection probes
kubectl get --raw /api/v1/namespaces/kubeskoop/pods/skoop-exporter-t4d9m:9102/proxy/status |jq .
# Obtain the entrance of Prometheus service, which is exposed by NodePort by default
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ kubectl apply -f https://raw.githubusercontent.com/alibaba/kubeskoop/main/deploy

```shell
# 查看Skoop exporter的运行状态
kubectl get pod -n kubeskoop -l app=skoop-exporter -o wide
kubectl get pod -n kubeskoop -l app=kubeskoop-exporter -o wide

# 查看Probe采集探针的运行状态
kubectl get --raw /api/v1/namespaces/{{skoop-exporter的pod namespace}}/pods/{{skoop-exporter的pod name}}:9102/proxy/status |jq .
Expand Down Expand Up @@ -72,7 +72,7 @@ Skoop-exporter以DaemonSet方式部署在集群中,可以通过以下方式验

```shell
# 查看Skoop exporter的运行状态
kubectl get pod -n skoop -l app=skoop-exporter -o wide
kubectl get pod -n skoop -l app=kubeskoop-exporter -o wide

# 获取到pod的信息后,可以通过apiserver查看Probe采集探针的运行状态
kubectl get --raw /api/v1/namespaces/{{skoop-exporter的pod namespace}}/pods/{{skoop-exporter的pod name}}:9102/proxy/status |jq .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ kubectl apply -f https://raw.githubusercontent.com/alibaba/kubeskoop/main/deploy

```shell
# 查看Skoop exporter的运行状态
kubectl get pod -n kubeskoop -l app=skoop-exporter -o wide
kubectl get pod -n kubeskoop -l app=kubeskoop-exporter -o wide
# 查看Probe采集探针的运行状态
kubectl get --raw /api/v1/namespaces/kubeskoop/pods/skoop-exporter-t4d9m:9102/proxy/status |jq .
# 获取Prometheus服务的入口
Expand Down