Hi, Seeking help in obtaining the login count with the command below. I found the command from sites online providing examples. grep "04/Jan" weblogin.jsp http1.1" 200 | cut -d[ -f2 | cut -d] -f1 | awk -F: '{print $2":00"}' | sort -n | uniq -c I'm trying to capture the date and the login count by using the application URL with the 200 status. Thank you
Are you trying to get a count of how many times a user has logged in or the total amount of users logged in at the current time?
Hi, It will be the total count of how many users has logged in and the hourly count of their logged in instance. Thank you.