8月18日docker实战常用测试平台搭建

课程价值

学习如何使用docker搭建常见的测试服务(grid,普罗米修斯)

课程大纲

  1. 使用docker selenium 搭建分布式UI自动化实践(基于grid的解决方案)
  2. 使用docker搭建基于普罗米修斯的监控体系。

普罗米修斯

#####启动node-exporter

nohup ./node_exporter/node_exporter >> node_exporter.log 2>&1 &
普罗米修斯主服务的配置文件
global:
  scrape_interval:     15s
  evaluation_interval: 15s

scrape_configs:
  - job_name: 'prometheus'
    static_configs:
    - targets: ['localhost:9090']
  - job_name: 'node_exporter'
    static_configs:
    - targets: ['k8s.testing-studio.com:9100']
  - job_name: 'mysql'
    static_configs:
    - targets: ['k8s.testing-studio.com:9104']
  - job_name: 'cadvisor'
    static_configs:
    - targets: ['k8s.testing-studio.com:8091']

PPT

https://pdf.ceshiren.com/dx3/0805_Docker课件/

课程时长

1.5h