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

Hotfix - column order in APM analysis #152

Merged
merged 2 commits into from
Nov 12, 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
1 change: 0 additions & 1 deletion backend/extractionSteps/JobStepBase.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ def reportData(
headers = ["controller", "application", "applicationId"] + (["description"] if self.componentType == "apm" else []) + list(rawDataHeaders)

writeUncoloredRow(rawDataSheet, 1, headers)
rawDataSheet.column_dimensions["C"].hidden = True

# Write Data
rowIdx = 2
Expand Down
2 changes: 0 additions & 2 deletions backend/output/reports/AgentMatrixReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def createWorkbook(self, jobs, controllerData, jobFileName):
logging.debug(f"Creating workbook sheet for App Agents")
appAgentsSheet = workbook.create_sheet(f"Overall - App Agents")
writeUncoloredRow(appAgentsSheet, 1, ["controller", "application", "applicationId", *allAppAgentVersions])
appAgentsSheet.column_dimensions["C"].hidden = True

# Write Data
rowIdx = 2
Expand Down Expand Up @@ -65,7 +64,6 @@ def createWorkbook(self, jobs, controllerData, jobFileName):
1,
["controller", "application", "applicationId", *allMachineAgentVersions],
)
machineAgentsSheet.column_dimensions["C"].hidden = True

# Write Data
rowIdx = 2
Expand Down
2 changes: 0 additions & 2 deletions backend/output/reports/CustomMetricsReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ def createWorkbook(self, jobs, controllerData, jobFileName):
],
)

summarySheet.column_dimensions["D"].hidden = True

rowIdx = 2
for host, hostInfo in controllerData.items():
for component in hostInfo["apm"].values():
Expand Down
3 changes: 1 addition & 2 deletions backend/output/reports/MaturityAssessmentReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def createWorkbook(self, jobs, controllerData, jobFileName):
1,
data_header
)
analysisSheet.column_dimensions["D"].hidden = True

rowIdx = 2
for host, hostInfo in controllerData.items():
Expand All @@ -58,7 +57,7 @@ def createWorkbook(self, jobs, controllerData, jobFileName):
]

if reportType == "apm": # add desc after name
data_row.insert(3, (component["description"], None))
data_row.insert(4, (component["description"], None))

writeColoredRow(
analysisSheet,
Expand Down
2 changes: 0 additions & 2 deletions backend/output/reports/SyntheticsReport.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,6 @@ def createWorkbook(self, jobs, controllerData, jobFileName):
)
rowIdx += 1

summarySheet.column_dimensions["D"].hidden = True

addFilterAndFreeze(summarySheet, freezePane="F2")
resizeColumnWidth(summarySheet)

Expand Down
Loading