Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
MaXal committed Nov 13, 2023
1 parent b10e1f6 commit 3646659
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions dashboard/new-dashboard/src/components/vcs/PerformanceDashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,74 +39,74 @@ const chartsDeclaration: ChartDefinition[] = [
{
labels: ["Indexing"],
measures: [["vcs-log-indexing"]],
projects: [intellijSpecific, intellijSpecificSql]
projects: [intellijSpecific, intellijSpecificSql],
},
{
labels: ["Number of collected commits"],
measures: [["vcs-log-indexing#numberOfCommits"]],
projects: [intellijSpecific, intellijSpecificSql]
projects: [intellijSpecific, intellijSpecificSql],
},
{
labels: ["Real number of collected commits through git rev-list --count --all"],
measures: [["realNumberOfCommits"]],
projects: [intellijSpecific, intellijSpecificSql]
projects: [intellijSpecific, intellijSpecificSql],
},
//Show file history
{
labels: ["Show file history (test metric)"],
measures: [["showFileHistory"]],
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex]
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex],
},
{
labels: ["Show file history - showing first pack of data (test metric)"],
measures: [["showFirstPack"]],
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex]
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex],
},
{
labels: [
"Computing - time spent on computing a peace of history. If index - time of computing before the first rename. " +
"If git - time of computing before timeout of operation occurred"
"If git - time of computing before timeout of operation occurred",
],
measures: [["file-history-computing"]],
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex]
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex],
},
{
labels: ["Refreshing VCS Log when repositories change (on commit, rebase, checkout branch, etc.)"],
measures: [["vcs-log-refreshing"]],
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex]
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex],
},
{
labels: ["Building a [com.intellij.vcs.log.graph.PermanentGraph] for the list of commits"],
measures: [["vcs-log-building-graph"]],
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex]
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex],
},
{
labels: ["Loading full VCS Log (all commits and references)"],
measures: [["vcs-log-loading-full-log"]],
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex]
projects: [showFileHistoryEditorPhm, showFileHistoryEditorSql, showFileHistoryEditorNoIndex],
},
//Checkout
{
labels: ["Checkout"],
measures: [["git-checkout"]],
projects: ["intellij_clone_specific_commit/git-checkout"]
projects: ["intellij_clone_specific_commit/git-checkout"],
},
{
labels: ["Checkout FUS duration"],
measures: [["git-checkout#fusCheckoutDuration"]],
projects: ["intellij_clone_specific_commit/git-checkout"]
projects: ["intellij_clone_specific_commit/git-checkout"],
},
{
labels: ["Checkout FUS VFS refresh duration "],
measures: [["git-checkout#fusVfsRefreshDuration"]],
projects: ["intellij_clone_specific_commit/git-checkout"]
projects: ["intellij_clone_specific_commit/git-checkout"],
},
//Filter vcs log tab
{
labels: ["Filter Vcs Log tab"],
measures: [["vcs-log-filtering"]],
projects: [vcsLogFilterPhm, vcsLogFilterSql, vcsLogFilterNoIndex]
}
projects: [vcsLogFilterPhm, vcsLogFilterSql, vcsLogFilterNoIndex],
},
]
const charts = combineCharts(chartsDeclaration)
Expand Down

0 comments on commit 3646659

Please sign in to comment.