Reporting

Need to pull the report of weekwise VPN users connected for past 19 weeks

deepaksreepadma
New Member

index=juniper host="XXXXXXX" | stats count by user | stats count as Users
This query gives output of total number of users connection for the whole time period.
Need help to pull the report for last three months with shows weekwise user data?

Tags (1)
0 Karma

to4kawa
Ultra Champion

sample:

| makeresults count=2
| streamstats count
| eval _time=if(count=2,relative_time(_time,"-3month"),relative_time(_time,"@d"))
| makecontinuous span=1d _time
| eval user=mvindex(split("ABC",""),random()%3)
| timechart span=1d count by user

| timewrap 1w

recommend:

index=juniper host="XXXXXXX"
| timechart span=1d count by user
| timewrap 1w

use appropriate time picker.

0 Karma

shivanshu1593
Builder

Try this. It should give you the required data.

index=juniper host="XXXXXXX" earliest=-90d latest=now() | timechart span=1w count by user

Thank you,
Shiv
###If you found the answer helpful, kindly consider upvoting/accepting it as the answer as it helps other Splunkers find the solutions to similar issues###
0 Karma

to4kawa
Ultra Champion

I don't know juniper log. What kind of log is it?

how about timechart span=1w?

0 Karma

shivanshu1593
Builder

@to4kawa, it contains the logs of your Virtual Private Network a.k.a VPN. Like which user is connecting to your organizations network via VPN, how many users are connected. Then VPNs are divided region wise, so you get different VPN usage analysis statistics region wise.

Thank you,
Shiv
###If you found the answer helpful, kindly consider upvoting/accepting it as the answer as it helps other Splunkers find the solutions to similar issues###
0 Karma

to4kawa
Ultra Champion

thanks @shivanshu1593
I wanted to make sure the questioner could respond.

0 Karma
Get Updates on the Splunk Community!

Monitoring Postgres with OpenTelemetry

Behind every business-critical application, you’ll find databases. These behind-the-scenes stores power ...

Mastering Synthetic Browser Testing: Pro Tips to Keep Your Web App Running Smoothly

To start, if you're new to synthetic monitoring, I recommend exploring this synthetic monitoring overview. In ...

Splunk Edge Processor | Popular Use Cases to Get Started with Edge Processor

Splunk Edge Processor offers more efficient, flexible data transformation – helping you reduce noise, control ...