Skip to content

Commit

Permalink
cosmetic changes and fix to an exit logic
Browse files Browse the repository at this point in the history
  • Loading branch information
alexafshar authored May 3, 2023
1 parent 0c2b4a0 commit b9ebdcd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.5.9.6
v1.5.9.7
4 changes: 2 additions & 2 deletions backend/output/presentations/cxPptFsoUseCases.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def createCxHamUseCasePpt(folder: str):

def generatePitstopHealthCheckTable(folder, root, uc, pitstop):
slide = root.slides[uc.getSlideId(pitstop)]
data = [["Controller", "Checklist Item", "Tooltips", "Exit Criteria Logic"]]
data = [["Controller", "Checklist Item", "Tooltips ***", "Exit Criteria Logic"]]
for task in uc.getPitstopTasks(pitstop):
data.append([folder, f"{uc.getChecklistItem(task)}", f"{uc.getToolTip(task)}", uc.getHealthCheckStatus(task)])
addTable(slide, data, fontSize=10, top=2, left=1.5)
Expand Down Expand Up @@ -490,7 +490,7 @@ def calculate_kpis(apm_wb, agent_wb, uc: UseCase):
### ENG
FSO_HAM_ENG_1 = f'Pass' if all(count >= 5 for count in numberOfActionsBoundToEnabledPoliciesList) else f'Fail (Not all applications have at least 2 policies with actionable alerts). Only {len([x for x in numberOfActionsBoundToEnabledPoliciesList if x >= 2])} applications have at least 2 actionable alerts out of {totalApplications} applications.'

FSO_HAM_ENG_2 = f'Pass' if all(count >= 2 for count in dashboardsList) else f'Fail (there should be at least two dashboards configured). Only {len([x for x in dashboardsList if x >= 2])} dashboards are configured'
FSO_HAM_ENG_2 = f'Pass' if all(count >= 2 for count in dashboardsList) else f'Fail (there should be at least two dashboards configured per application). Only {len([x for x in dashboardsList if x >= 2])} applications have at least two dashboards configured out of {totalApplications} applications. '
FSO_HAM_ENG_3 = f'manual check'
FSO_HAM_ENG_4 = f'manual check'

Expand Down
Binary file not shown.
2 changes: 1 addition & 1 deletion input/thresholds/DefaultThresholds.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "v1.5.9.6",
"version": "v1.5.9.7",
"apm": {
"AppAgentsAPM": {
"platinum": {
Expand Down

0 comments on commit b9ebdcd

Please sign in to comment.