Reviewed-on: #17 Reviewed-by: sundapeng <sundp@mail.zgclab.edu.cn> Reviewed-by: xuxt <xuxt@zgclab.edu.cn>
23 lines
494 B
Bash
Executable File
23 lines
494 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
TEST_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
|
|
HEALTH_DIR="$TEST_ROOT/private/argus/agent/dev-e2euser-e2einst-pod-0/health"
|
|
|
|
cat > "$HEALTH_DIR/log-fluentbit.json" <<JSON
|
|
{
|
|
"status": "healthy",
|
|
"timestamp": "2023-10-05T12:05:00Z"
|
|
}
|
|
JSON
|
|
|
|
cat > "$HEALTH_DIR/metric-node-exporter.json" <<JSON
|
|
{
|
|
"status": "healthy",
|
|
"timestamp": "2023-10-05T12:05:00Z"
|
|
}
|
|
JSON
|
|
|
|
echo "[INFO] Health files written"
|