Report USB and sd-mux-ctrl states to Prometheus 26/130926/3
authorAleksander Mistewicz <a.mistewicz@samsung.com>
Wed, 26 Apr 2017 11:58:50 +0000 (13:58 +0200)
committerAleksander Mistewicz <a.mistewicz@samsung.com>
Tue, 8 Aug 2017 08:18:08 +0000 (10:18 +0200)
Change-Id: I14cab8af557aa9c447078b62442d036a6df86ab0

tsp/cronfile.example
tsp/jobs/trigger_downloads.sh
tsp/jobs/watch_usb.sh [new file with mode: 0755]

index 4dc5ca7..543e658 100644 (file)
@@ -1,4 +1,5 @@
 */10 * * * * /opt/testlab-major/tsp/jobs/watcher.sh
 0 */4 * * * /opt/testlab-major/tsp/jobs/watch_diskspace.sh
 0 * * * * /opt/testlab-major/tsp/jobs/watch_sdb.sh
+*/10 * * * * /opt/testlab-major/tsp/jobs/watch_usb.sh
 0 */8 * * * /opt/testlab-major/tsp/jobs/watch_symlinks.sh
index 3d57bb2..d765e4a 100755 (executable)
@@ -29,7 +29,6 @@ test -n "${TIMESTAMP}" || die "Missing argument: timestamp"
 mkdir -p "${WS_WATCHER}"
 cd "${WS_WATCHER}"
 
-# Create required files
 touch dispatched_urls
 touch "${TIMESTAMP}"
 
@@ -50,6 +49,8 @@ esac
 touch next_dwn
 next=$(cat next_dwn)
 test -n "$next" || next=1
+initial="$next"
+
 # Allocate 300 numbers in case this script terminates during dispatch
 echo $((next+300)) > "${WS_WATCHER}/next_dwn" || die "Write failed: ${WS_WATCHER}/next_dwn"
 # Append to unique_dispatch in case previous job failed
@@ -97,4 +98,9 @@ do
 done < unique_dispatch
 cd "${WS_WATCHER}"
 echo "$next" > "${WS_WATCHER}/next_dwn" || die "Write failed: ${WS_WATCHER}/next_dwn"
+
+# Report amount of new images
+post_prom "image_dispatch$(echo "$TIMESTAMP" | tr '.' '_')" "$((next-initial))" "Amount of images dispatched for $TIMESTAMP"
+
+# Cleanup
 rm -f unique_dispatch modified_urls manual_urls
diff --git a/tsp/jobs/watch_usb.sh b/tsp/jobs/watch_usb.sh
new file mode 100755 (executable)
index 0000000..99282a4
--- /dev/null
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+# Copyright (c) 2017 Samsung Electronics Co., Ltd All Rights Reserved
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Author: Aleksander Mistewicz <a.mistewicz@samsung.com>
+export TSP_DIR="$(CDPATH='' cd -- "$(dirname -- "$0")" && pwd -P)/.."
+
+. "${TSP_DIR}/common.sh"
+
+timeout 120 lsusb
+USB_RET="$?"
+post_prom "usb_status" "$USB_RET" "Return value of lsusb"
+
+timeout 120 /usr/local/bin/sd-mux-ctrl -l
+SDMUX_RET="$?"
+post_prom "sdmux_status" "$SDMUX_RET" "Return value of sd-mux-ctrl -l"