Dear All,
I have custom datasets to calculate total bandwidth from SSL VPN users, the data is from Log Type Traffic :
SELECT
srcip,
dstip,
user,
service,
sum(COALESCE(sentbyte, 0) + COALESCE(rcvdbyte, 0)) AS bandwidth,
sum(COALESCE(rcvdbyte, 0)) AS traffic_in,
sum(COALESCE(sentbyte, 0)) AS traffic_out
FROM
$log
WHERE
$filter
AND (logflag & 1 > 0)
AND(((lower(srcintf) = lower('ssl.TRUST_VDOM'))))
GROUP BY
srcip,
dstip,
user,
service
HAVING
sum(COALESCE(sentbyte, 0) + COALESCE(rcvdbyte, 0)) > 0
ORDER BY
bandwidth DESC
And now we require to know the duration of connection for each SSL VPN users, related with previous datasets. But I can't find any documentation yet. Is that possible to do?
Nominating a forum post submits a request to create a new Knowledge Article based on the forum post topic. Please ensure your nomination includes a solution within the reply.
Hello adiday,
Thank you for using the Community Forum. I will seek to get you an answer or help. We will reply to this thread with an update as soon as possible.
Thanks,
Select Forum Responses to become Knowledge Articles!
Select the “Nominate to Knowledge Base” button to recommend a forum post to become a knowledge article.
User | Count |
---|---|
1732 | |
1106 | |
752 | |
447 | |
240 |
The Fortinet Security Fabric brings together the concepts of convergence and consolidation to provide comprehensive cybersecurity protection for all users, devices, and applications and across all network edges.
Copyright 2024 Fortinet, Inc. All Rights Reserved.