veyron/runtimes/google/ipc,veyron/runtimes/google/rt: expose stats for security.

We export two stats with this CL:
(1) the runtime's principal (as "security/principal/{blessingstore|blessingroots|key}")
(2) each Server's blessings (as "ipc/server/routing-id/RID/security/blessings")

This gives us a quick way to examine any server's security setup, for debugging
etc.

While we're at it, also change the name of the ipc server stats, by introducing
'routing-id' as a name component before the routing id value, and 'methods'
before the method name.

Change-Id: Ifec895051cae72a6cfbf20fc3e1962a381021a75
diff --git a/tools/debug/test.sh b/tools/debug/test.sh
index 4c1471a..afb886e 100755
--- a/tools/debug/test.sh
+++ b/tools/debug/test.sh
@@ -61,7 +61,7 @@
   shell_test::assert_eq "${GOT}" "${WANT}" "${LINENO}"
 
   # Test stats read.
-  GOT=$("${DEBUG_BIN}" stats read "${EP}/__debug/stats/ipc/server/*/ReadLog/latency-ms" 2> "${DBGLOG}" | wc -l) \
+  GOT=$("${DEBUG_BIN}" stats read "${EP}/__debug/stats/ipc/server/routing-id/*/methods/ReadLog/latency-ms" 2> "${DBGLOG}" | wc -l) \
     || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug")
   shell_test::assert_gt "${GOT}" "0" "${LINENO}"
 
@@ -69,7 +69,7 @@
   local TMP=$(shell::tmp_file)
   touch "${TMP}"
   local -r DEBUG_PID=$(shell::run_server "${shell_test_DEFAULT_SERVER_TIMEOUT}" "${TMP}" "${DBGLOG}" \
-    "${DEBUG_BIN}" stats watch -raw "${EP}/__debug/stats/ipc/server/*/ReadLog/latency-ms")
+    "${DEBUG_BIN}" stats watch -raw "${EP}/__debug/stats/ipc/server/routing-id/*/methods/ReadLog/latency-ms")
   shell::timed_wait_for "${shell_test_DEFAULT_MESSAGE_TIMEOUT}" "${TMP}" "ReadLog/latency-ms"
   kill "${DEBUG_PID}"
   grep -q "Count:1 " "${TMP}" || (dumplogs "${TMP}"; shell_test::fail "line ${LINENO}: failed to find expected output")