Reporting creation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 hours ago
Hi Members,
Greetings!
We are required to create reports.
In the CMDB health dashboard, we have an overall score, which is a combination of completeness, compliance, and correctness.
Requirement: The user wants to populate the overall score based on the CMDB group.
Can't find the overall score stores in which table; also find there is a script included running to populate the overall score.
getOverAllScore: function(completeness, correctness, compliance) {
var weightedScore = 0;
weightedScore = this. _getParentMetricScore(completeness,weights) + this._getParentMetricScore(correctness,this.weights) + this._getParentMetricScore(compliance,this.weights);
return weightedScore;
},
I am not sure how we can create the reports. Any thought and suggestion toward the creation of the report is most welcome.