Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes the example configuration for 5GMS QoE Metrics Reporting #60

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified assets/images/5gms/postman-m1-metrics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 20 additions & 1 deletion pages/5g-media-streaming/tutorials/metrics-reporting.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,26 @@ variable with the value from the JSON file:

In Postman navigate to `Collections` and select `5G-MAG M1`. Navigate to `Metrics-Reporting` and
select `Create Metrics Reporting Configuration`. Then adjust the attributes in the payload section based on the desired
configuration. Click on `Send` once the configuration is set:
configuration. An example configuration looks the following:

````json
{
"scheme": "",
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think an empty scheme property is valid here.

Either the property should be populated with a valid URI or else it should be omitted altogether.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The AF is robust enough to handle the empty string, I will change the example though

"dataNetworkName": "",
"reportingInterval": 10,
"samplePercentage": 100,
"urlFilters": [],
"samplingPeriod": 5,
"metrics": [
"urn:3GPP:ns:PSS:DASH:QM10#HTTPList",
"urn:3GPP:ns:PSS:DASH:QM10#BufferLevel",
"urn:3GPP:ns:PSS:DASH:QM10#RepSwitchList",
"urn:3GPP:ns:PSS:DASH:QM10#MPDInformation"
]
}
````

Click on `Send` once the configuration is set:

![Postman M1 Metrics](../../../assets/images/5gms/postman-m1-metrics.png)

Expand Down