proc_image:增加进程画像控制器程序,实现支持预先按需挂载,使用时激活并输出的功能 #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: LMP visualization by prometheus | |
on: | |
push: | |
branches: | |
- "*" | |
paths: | |
- 'eBPF_Visualization/eBPF_prometheus/**' | |
- '.github/workflows/ebpf_prometheus.yml' | |
pull_request: | |
branches: | |
- "*" | |
paths: | |
- 'eBPF_Visualization/eBPF_prometheus/**' | |
- '.github/workflows/ebpf_prometheus.yml' | |
jobs: | |
web-backend-build-and-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Build Prometheus Metrics Server | |
run: | | |
cd eBPF_Visualization/eBPF_prometheus | |
make | |
make start_service | |
sudo -E timeout 120 ./data-visual c example/vfsstat.py || if [[ $? != 124 && $? != 0 ]];then exit $?;fi | |
timeout-minutes: 5 |