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
GitLab 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
!2
Release: Sprint/2022 17
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Release: Sprint/2022 17
dev
into
main
Overview
0
Commits
2
Pipelines
1
Changes
30
Merged
Petar Hristov
requested to merge
dev
into
main
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
30
This Merge Request is automatically created
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
9db6102c
2 commits,
2 years ago
30 files
+
1066
−
85
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
30
src/KPI Generator/Reportings/ApplicationProfile/ApplicationProfileReporting.cs
0 → 100644
+
21
−
0
View file @ 9db6102c
Edit in single-file editor
Open in Web IDE
using
KPIGenerator.Utils
;
using
static
KPIGenerator
.
Utils
.
CommandLineOptions
;
namespace
KPIGenerator.Reportings.ApplicationProfile
;
public
class
ApplicationProfileReporting
:
Reporting
<
ApplicationProfileReportingOptions
>
{
public
ApplicationProfileReporting
(
ApplicationProfileReportingOptions
options
)
:
base
(
options
)
{
ReportingFileName
=
"application_profiles.json"
;
}
public
override
IEnumerable
<
ReportingFileObject
>
GenerateReporting
()
{
/*
* 1. Collect the reporting for the whole database -- General/{ReportingReportingFileName}
* --> See envisioned folder structure.
*/
throw
new
NotImplementedException
();
}
}
Loading