Skip to content

Commit 2618484

Browse files
committed
Changed Section Heading
1 parent b1076f6 commit 2618484

16 files changed

+87
-91
lines changed

Src/Private/Get-AbrOntapClusterLicense.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function Get-AbrOntapClusterLicense {
2525
process {
2626
$Nodes = Get-NcNode -Controller $Array
2727
foreach ($Node in $Nodes) {
28-
Section -Style Heading3 "$Node License Usage Summary" {
28+
Section -Style Heading3 "$Node License Usage" {
2929
Paragraph "The following section provides per node installed licenses on $($ClusterInfo.ClusterName)."
3030
BlankLine
3131
$License = Get-NcLicense -Owner $Node -Controller $Array
@@ -44,7 +44,7 @@ function Get-AbrOntapClusterLicense {
4444
$LicenseSummary | Where-Object { $_.'Risk' -like 'High' } | Set-Style -Style Critical -Property 'Risk'
4545
}
4646
$TableParams = @{
47-
Name = "License Usage Summary - $($Node)"
47+
Name = "License Usage - $($Node)"
4848
List = $false
4949
ColumnWidths = 25, 15, 38, 22
5050
}

Src/Private/Get-AbrOntapClusterLicenseUsage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function Get-AbrOntapClusterLicenseUsage {
3636
}
3737
}
3838
$TableParams = @{
39-
Name = "License Feature Summary - $($ClusterInfo.ClusterName)"
39+
Name = "License Feature - $($ClusterInfo.ClusterName)"
4040
List = $false
4141
ColumnWidths = 40, 20, 40
4242
}

Src/Private/Get-AbrOntapDiskAssign.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function Get-AbrOntapDiskAssign {
3232
}
3333
}
3434
$TableParams = @{
35-
Name = "Assigned Disk Summary - $($ClusterInfo.ClusterName)"
35+
Name = "Assigned Disk - $($ClusterInfo.ClusterName)"
3636
List = $false
3737
ColumnWidths = 50, 50
3838
}

Src/Private/Get-AbrOntapDiskBroken.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function Get-AbrOntapDiskBroken {
3838
$DiskFailed | Set-Style -Style Critical -Property 'Disk Name','Shelf','Bay','Pool','Disk Paths'
3939
}
4040
$TableParams = @{
41-
Name = "Failed Disk Summary - $($ClusterInfo.ClusterName)"
41+
Name = "Failed Disk - $($ClusterInfo.ClusterName)"
4242
List = $false
4343
ColumnWidths = 26, 13, 13, 13, 35
4444
}

Src/Private/Get-AbrOntapDiskOwner.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function Get-AbrOntapDiskOwner {
4242
}
4343
}
4444
$TableParams = @{
45-
Name = "Disk Owner Summary - $($Node)"
45+
Name = "Node Disk Owner - $($Node)"
4646
List = $false
4747
ColumnWidths = 20, 20, 25, 20, 15
4848
}

Src/Private/Get-AbrOntapDiskType.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function Get-AbrOntapDiskType {
3535
$DiskType | Where-Object { $_.'Container' -like 'broken' } | Set-Style -Style Critical -Property 'Disk Count'
3636
}
3737
$TableParams = @{
38-
Name = "Disk Container Type Summary - $($ClusterInfo.ClusterName)"
38+
Name = "Disk Container Type - $($ClusterInfo.ClusterName)"
3939
List = $false
4040
ColumnWidths = 50, 50
4141
}

Src/Private/Get-AbrOntapEfficiencyAggr.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ function Get-AbrOntapEfficiencyAggr {
5252
$Data = Get-NcAggr -Controller $Array | Where-Object {$_.AggrRaidAttributes.HasLocalRoot -ne 'True'}
5353
$Savingfilter = (Get-NcAggrEfficiency -Controller $Array | Select-Object -ExpandProperty AggrEfficiencyAdditionalDetailsInfo).NumberOfSisDisabledVolumes | Measure-Object -Sum
5454
if ($Data -and $Savingfilter.Sum -gt 0 -and $Healthcheck.Storage.Efficiency) {
55-
Section -Style Heading4 'HealthCheck - Volume efficiency opportunities for improvement' {
55+
Section -Style Heading4 'HealthCheck - Volume without deduplication enabled' {
5656
Paragraph "The following section provides the Volume efficiency healthcheck Information on $($ClusterInfo.ClusterName)."
5757
BlankLine
5858
$OutObj = @()
@@ -72,7 +72,7 @@ function Get-AbrOntapEfficiencyAggr {
7272
}
7373

7474
$TableParams = @{
75-
Name = "HealthCheck - Volume efficiency opportunities for improvement - $($ClusterInfo.ClusterName)"
75+
Name = "HealthCheck - Volume without deduplication - $($ClusterInfo.ClusterName)"
7676
List = $false
7777
ColumnWidths = 45, 55
7878
}

Src/Private/Get-AbrOntapNetworkMGMT.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function Get-AbrOntapNetworkMgmt {
2424

2525
process {
2626
if (Get-NcNetInterface -Controller $Array | Where-Object {$_.Role -eq 'cluster'}) {
27-
Section -Style Heading6 'Cluster Network Interfaces Summary' {
27+
Section -Style Heading6 'Cluster Network Interfaces' {
2828
Paragraph "The following section provides the Cluster Network Interfaces Information on $($ClusterInfo.ClusterName)."
2929
BlankLine
3030
$ClusterData = Get-NcNetInterface -Controller $Array | Where-Object {$_.Role -eq 'cluster'}
@@ -60,7 +60,7 @@ function Get-AbrOntapNetworkMgmt {
6060
}
6161
}
6262
}
63-
Section -Style Heading6 'Management Network Interfaces Summary' {
63+
Section -Style Heading6 'Management Network Interfaces' {
6464
Paragraph "The following section provides the Management Network Interfaces Information on $($ClusterInfo.ClusterName)."
6565
BlankLine
6666
$ClusterData = Get-NcNetInterface -Controller $Array | Where-Object {$_.Role -eq 'cluster_mgmt' -or $_.Role -eq 'node_mgmt'}
@@ -96,7 +96,7 @@ function Get-AbrOntapNetworkMgmt {
9696
}
9797
}
9898
if (Get-NcNetInterface -Controller $Array | Where-Object {$_.Role -eq 'intercluster'}) {
99-
Section -Style Heading6 'Intercluster Network Interfaces Summary' {
99+
Section -Style Heading6 'Intercluster Network Interfaces' {
100100
Paragraph "The following section provides the Intercluster Network Interfaces Information on $($ClusterInfo.ClusterName)."
101101
BlankLine
102102
$ClusterData = Get-NcNetInterface -Controller $Array | Where-Object {$_.Role -eq 'intercluster'}
@@ -132,7 +132,7 @@ function Get-AbrOntapNetworkMgmt {
132132
}
133133
}
134134
}
135-
Section -Style Heading6 'Data Network Interfaces Summary' {
135+
Section -Style Heading6 'Data Network Interfaces' {
136136
Paragraph "The following section provides the Data Network Interfaces Information on $($ClusterInfo.ClusterName)."
137137
BlankLine
138138
$ClusterData = Get-NcNetInterface -Controller $Array | Where-Object {$_.Role -eq 'data' -and $_.DataProtocols -ne 'fcp'}

Src/Private/Get-AbrOntapNodes.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ function Get-AbrOntapNodes {
3535
}
3636
}
3737
$TableParams = @{
38-
Name = "Node Summary - $($ClusterInfo.ClusterName)"
38+
Name = "Node Information - $($ClusterInfo.ClusterName)"
3939
List = $false
4040
ColumnWidths = 27, 27, 17, 17, 12
4141
}

Src/Private/Get-AbrOntapStorageAGGR.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function Get-AbrOntapStorageAGGR {
4444
$AggrSpaceSummary | Where-Object { $_.'Used' -ge 90 } | Set-Style -Style Critical -Property 'Used'
4545
}
4646
$TableParams = @{
47-
Name = "Aggregate Summary - $($ClusterInfo.ClusterName)"
47+
Name = "Aggregates - $($ClusterInfo.ClusterName)"
4848
List = $false
4949
ColumnWidths = 27, 10, 10, 10, 10, 8, 15, 10
5050
}

0 commit comments

Comments
 (0)