You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
311 B
14 lines
311 B
#!/bin/sh
|
|
BASIC_U=
|
|
BASIC_P=
|
|
SOURCE=http://localhost:9101/metrics
|
|
DEST=http://localhost:9100/metrics
|
|
IWANNASLEEP=15
|
|
|
|
alias pushmetrics="curl -s \"${SOURCE}\" | curl -u \"${BASIC_U}:${BASIC_P}\" --data-binary @- \"${DEST}\" >> /dev/null"
|
|
|
|
pushmetrics
|
|
sleep $IWANNASLEEP
|
|
pushmetrics
|
|
sleep $IWANNASLEEP
|
|
pushmetrics
|
|
|