Hello,
Assuming i have numbers, let's say 1-2-3-4-5-6. And each of those represent
Ip adress
number of request
method
1.1.1.2
1
get
1.1.1.3
1
get
1.1.1.4
2
get
1.1.1.5
4
get
1.1.1.6
4
get
1.1.1.7
5
get
1.1.1.8
7
get
What's could be the search to get following table
number of requests
number of IPs that make 'x' requests
1
2 (meaning to client has made 1 requests)
2
1
3
0
4
2
5
1
6
0
7
1
8
0
9
0
Thanks
... View more