You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/usr/bin/env sgsh -s /bin/bash## SYNOPSIS Web log statistics# DESCRIPTION# Provides continuous statistics over web log stream data.# Demonstrates stream processing.# Provide as an argument either the name of a growing web log file# or -s and a static web log file, which will be processed at a rate# of about 10 lines per second.## Copyright 2013 Diomidis Spinellis## 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.## Size of the window to report in seconds
WINDOW=10
WINDOW_OLD=$(expr $WINDOW\* 2)# Update interval in seconds
UPDATE=2
# Print the sum of the numbers read from the standard inputsum()
{
awk '{ sum += $1 } END {print sum}'
}
# Print the rate of change as a percentage# between the first (old) and second (new) valuechange()
{
# Can't use bc, because we have numbers in scientific notation
awk "END {OFMT=\"%.2f%%\"; print ($2 - $1) * 100 / $1}"</dev/null
}
if [ "$1"="-s" ]
then# Simulate log lines coming from a filewhileread line
doecho$line
sleep 0.01
done<"$2"else
tail -f "$1"fi|
scatter |{
# Window of accessed pages
-| awk -Winteractive '{print $7}'|store:page -b $WINDOW -u s
# Get the bytes requested
-| awk -Winteractive '{print $10}'|{
# Store total number of bytes
-| awk -Winteractive '{ s += $1; print s}'|store:total_bytes
# Store total number of pages requested
-| awk -Winteractive '{print ++n}'|store:total_pages
# Window of bytes requested
-||store:bytes -b $WINDOW -u s
# Previous window of bytes requested
-||store:bytes_old -b $WINDOW_OLD -e $WINDOW -u s
|}
# Gather and print the results|} gather |{
# Produce periodic reportswhile:do
WINDOW_PAGES=$(store:bytes -c | wc -l)
WINDOW_BYTES=$(store:bytes -c | sum )
WINDOW_PAGES_OLD=$(store:bytes_old -c | wc -l)
WINDOW_BYTES_OLD=$(store:bytes_old -c | sum)
clear
cat <<EOFTotal-----Pages: $(store:total_pages -c)Bytes: $(store:total_bytes -c)Over last ${WINDOW}s--------------------Pages: $WINDOW_PAGESBytes: $WINDOW_BYTESkBytes/s: $(awk "END {OFMT=\"%.0f\"; print $WINDOW_BYTES / $WINDOW / 1000}"</dev/null )Top page: $(store:page -c | sort | uniq -c | sort -rn | head -1)Change------Requests: $(change $WINDOW_PAGES_OLD$WINDOW_PAGES)Data bytes: $(change $WINDOW_BYTES_OLD$WINDOW_BYTES)EOF
sleep $UPDATEdone|}
The text was updated successfully, but these errors were encountered:
dspinellis
changed the title
Explore suitability of sgsh for stream processing on windows
Explore suitability of sgsh for stream processing on data windows
Apr 22, 2017
The text was updated successfully, but these errors were encountered: