Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
KPI Reporting Generator
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coscine
backend
scripts
KPI Reporting Generator
Merge requests
!9
Fix: Try/Catch
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix: Try/Catch
dev
into
main
Overview
0
Commits
6
Pipelines
4
Changes
12
Merged
Petar Hristov
requested to merge
dev
into
main
2 years ago
Overview
0
Commits
6
Pipelines
4
Changes
12
Expand
0
0
Merge request reports
Compare
main
version 3
1178db0f
2 years ago
version 2
0f81b509
2 years ago
version 1
146eaa71
2 years ago
main (base)
and
latest version
latest version
e463b7b2
6 commits,
2 years ago
version 3
1178db0f
5 commits,
2 years ago
version 2
0f81b509
3 commits,
2 years ago
version 1
146eaa71
1 commit,
2 years ago
12 files
+
367
−
54
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
src/KPI Generator/Reportings/ApplicationProfile/ApplicationProfileReporting.cs
+
4
−
1
Options
@@ -14,6 +14,7 @@ public class ApplicationProfileReporting : Reporting<ApplicationProfileReporting
public
override
IEnumerable
<
ReportingFileObject
>
GenerateReporting
()
{
Console
.
WriteLine
(
$" -
{
GetType
().
Name
}
: Begin reporting generation"
);
var
reportingFiles
=
new
List
<
ReportingFileObject
>();
var
returnObjects
=
GetApplicationProfiles
();
@@ -23,7 +24,9 @@ public class ApplicationProfileReporting : Reporting<ApplicationProfileReporting
Path
=
GetReportingPathGeneral
(
ReportingFileName
),
Content
=
ConvertStringContentsToStream
(
JsonConvert
.
SerializeObject
(
returnObjects
,
Formatting
.
Indented
))
});
Console
.
WriteLine
(
$" -
{
GetType
().
Name
}
: \"
{
GetReportingPathGeneral
(
ReportingFileName
)}
\" generated successfully"
);
Console
.
WriteLine
();
return
reportingFiles
;
}
Loading