Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Interface Egress and Ingress 95th Percentile

I am looking for the 95th percentile for [IN_Megabytes] and [OUT_Megabytes] for each distinct [FullName] by day, week, and month. The data sample is every hour. I have data for a whole month. Here is what the dataset I am working with looks like (there are approx. 1000 interfaces, each polled every hour for the megabyte in and megabyte out):

intf.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous  - You could write a Measure like this for the incoming:

 

Ingress 95th Percentile = PERCENTILE.EXC(YourTable[IN_Megabytes],.95)

And another for the outgoing:

 

Egress 95th Percentile = PERCENTILE.EXC(YourTable[OUT_Megabytes],.95)

Use these measures in your visuals, along with relevant dates and FullName - the calculations will be run within each "filter context".

 

I hope this helps. If it does, please Mark as a solution.
I also appreciate Kudos.
Nathan Peterson

View solution in original post

1 REPLY 1
Anonymous
Not applicable

@Anonymous  - You could write a Measure like this for the incoming:

 

Ingress 95th Percentile = PERCENTILE.EXC(YourTable[IN_Megabytes],.95)

And another for the outgoing:

 

Egress 95th Percentile = PERCENTILE.EXC(YourTable[OUT_Megabytes],.95)

Use these measures in your visuals, along with relevant dates and FullName - the calculations will be run within each "filter context".

 

I hope this helps. If it does, please Mark as a solution.
I also appreciate Kudos.
Nathan Peterson

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.