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
!1
New: KPI Generator Base Implementation
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
New: KPI Generator Base Implementation
Issue/2181-kpiGeneratorBase
into
dev
Overview
0
Commits
8
Pipelines
8
Changes
30
Merged
New: KPI Generator Base Implementation
Petar Hristov
requested to merge
Issue/2181-kpiGeneratorBase
into
dev
Aug 31, 2022
Overview
0
Commits
8
Pipelines
8
Changes
30
coscine/issues#2181
0
0
Merge request reports
Compare
dev
version 5
e1732c80
Aug 31, 2022
version 4
fc089f83
Aug 31, 2022
version 3
1c5e7803
Aug 31, 2022
version 2
4ed2f468
Aug 31, 2022
version 1
0e5cbed0
Aug 31, 2022
dev (base)
and
latest version
latest version
60389262
8 commits,
Sep 5, 2022
version 5
e1732c80
7 commits,
Aug 31, 2022
version 4
fc089f83
6 commits,
Aug 31, 2022
version 3
1c5e7803
5 commits,
Aug 31, 2022
version 2
4ed2f468
4 commits,
Aug 31, 2022
version 1
0e5cbed0
3 commits,
Aug 31, 2022
30 files
+
1066
−
85
Side-by-side
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 @ 60389262
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