Need to know a method for changing the origin of QOS data.
Release : 8.x or higher
- various reasons, including missing QOS data in metric view, reports, correction of data, migration to a new environment and origin, etc.
How to delete or merge old (obsolete) origins so they no longer display in IM or UMP:
https://knowledge.broadcom.com/external/article?articleId=34704
Essentially, you can run a query like:
SELECT * FROM S_QOS_DATA WHERE ORIGIN = '<OLD/BAD/WRONG ORIGIN_NAME>'
UPDATE S_QOS_DATA SET origin= '<new_origin_name>' WHERE origin ='<old_or_wrong_origin>' OR nim_origin = '<old_or_wrong_origin>'
But please review the article listed above for more details.