Manual:GetLagTimes.php/ko
Appearance
| 미디어위키 버전: | ≥ 1.9 |
| 미디어위키 파일: getLagTimes.php | |
|---|---|
| 위치: | maintenance/ |
| 소스 코드: | master • 1.46.0 • 1.45.4 • 1.43.9 |
| 클래스: | GetLagTimes |
상세
getLagTimes.php file is a maintenance script to display replication lag times from $wgLoadBalancer.
옵션/인수
| Option | Description | Required? |
|---|---|---|
| --report | Report the lag values to StatsD | Optional |
사용법
php maintenance/run.php getLagTimes [ --report ]
Terminal
$ php maintenance/run.php getLagTimes 10.0.0.236 db3.pmtpa.wmnet 0 10.0.0.237 db4.pmtpa.wmnet 8 ******** 10.0.0.102 samuel.pmtpa.wmnet 1 *
In MediaWiki version 미디어위키 1.39 and earlier, you must invoke maintenance scripts using
php maintenance/scriptName.php instead of php maintenance/run.php scriptName.The script can be repeatedly called from the command line to create a simple 'lagtop' script that monitors a cluster's status.
# simple shell script to run getLagTimes.php every five seconds
while [true]
do
php maintenance/run.php getLagTimes
sleep 5
done