root / plugins / other / pid @ 17f78427
Historique | Voir | Annoter | Télécharger (319 octets)
| 1 |
#!/bin/bash |
|---|---|
| 2 |
|
| 3 |
#%# family=manual |
| 4 |
#%# capabilities=autoconf |
| 5 |
|
| 6 |
STYLE=LINE2 |
| 7 |
GRAPH="pid" |
| 8 |
SECTION="system" |
| 9 |
|
| 10 |
run_autoconf() {
|
| 11 |
echo yes |
| 12 |
} |
| 13 |
|
| 14 |
run_config() {
|
| 15 |
cat << EOF |
| 16 |
graph_title ${GRAPH}
|
| 17 |
graph_category ${SECTION}
|
| 18 |
graph_vlabel pid |
| 19 |
pid.label pid |
| 20 |
pid.draw LINE2 |
| 21 |
pid.min 0 |
| 22 |
pid.info pid |
| 23 |
EOF |
| 24 |
} |
| 25 |
|
| 26 |
run_() {
|
| 27 |
echo "pid.value $$" |
| 28 |
} |
| 29 |
|
| 30 |
run_$1 |
