Jump to content

User:BTullis (WMF)

From Wikitech

m:User:BTullis (WMF)

How many servers of each role does the data-platform group manage?

sudo cumin --force -o txt 'A:owner-data-platform or A:owner-search-platform' 'grep role /etc/wikimedia/contacts.yaml' | awk 'x==1 { print $0 } /_____FORMATTED_OUTPUT_____/ { x=1 }' | awk '{print $NF}' | tr -d '()' | sort | uniq -c | sort -rn

How many physical servers are managed?

sudo cumin --force -o txt '(A:owner-search-platform or A:owner-data-platform) and P{F:virtual = physical}' 'grep role /etc/wikimedia/contacts.yaml' | awk 'x==1 { print $0 } /_____FORMATTED_OUTPUT_____/ { x=1 }' | awk '{print $NF}' | tr -d '()' | sort | uniq -c | sort -rn