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
!1
New: KPI Generator Base Implementation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
New: KPI Generator Base Implementation
Issue/2181-kpiGeneratorBase
into
dev
Overview
0
Commits
8
Pipelines
8
Changes
30
Merged
Petar Hristov
requested to merge
Issue/2181-kpiGeneratorBase
into
dev
2 years ago
Overview
0
Commits
8
Pipelines
8
Changes
30
Expand
coscine/issues#2181
0
0
Merge request reports
Compare
dev
version 5
e1732c80
2 years ago
version 4
fc089f83
2 years ago
version 3
1c5e7803
2 years ago
version 2
4ed2f468
2 years ago
version 1
0e5cbed0
2 years ago
dev (base)
and
latest version
latest version
60389262
8 commits,
2 years ago
version 5
e1732c80
7 commits,
2 years ago
version 4
fc089f83
6 commits,
2 years ago
version 3
1c5e7803
5 commits,
2 years ago
version 2
4ed2f468
4 commits,
2 years ago
version 1
0e5cbed0
3 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
Search (e.g. *.vue) (Ctrl+P)
src/KPI Generator/Reportings/ApplicationProfile/ApplicationProfileReporting.cs
0 → 100644
+
21
−
0
Options
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