Skip to content

Commit

Permalink
Validation improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
mig281 committed Nov 3, 2023
1 parent c8400c6 commit 903c025
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ All Qumulo metrics belong to one of the following OpenMetrics types.
<table>
<thead>
<tr>
<th width="15%">Metric Type</th>
<th class="width-15">Metric Type</th>
<th>Description</th>
</tr>
</thead>
Expand Down Expand Up @@ -65,11 +65,11 @@ The following table lists metric names, types, labels, and descriptions.
<table class="pdf-reduce">
<thead>
<tr>
<th width="30%">Metric Name</th>
<th width="13%">Metric Type</th>
<th class="width-30">Metric Name</th>
<th class="width-13">Metric Type</th>
<th>Labels</th>
<th width="10%">Suppor&shy;ted from Qumulo Core Version</th>
<th width="20%">Description</th>
<th class="width-10">Suppor&shy;ted from Qumulo Core Version</th>
<th class="width-20">Description</th>
</tr>
</thead>
<tbody>
Expand Down
3 changes: 2 additions & 1 deletion administrator-guide/s3-api/creating-managing-s3-buckets.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ To create and manage S3 buckets by using the S3 API, you also need:
## How S3 Buckets Map to the Qumulo File System
An S3 bucket exposes a portion of your Qumulo file system to applications that use the [Amazon S3 API]({{site.s3.docs.s3}}).

<a id="bucket-root"></a>The _bucket root directory_ (or _bucket root)_ is the directory to which you attach an S3 bucket. All files under the bucket root directory (and all of its subdirectories) are objects in the bucket. The presence of the slash (`/`) in objects' keys determines the directory hierarchy.
<a id="bucket-root"></a>
The _bucket root directory_ (or _bucket root)_ is the directory to which you attach an S3 bucket. All files under the bucket root directory (and all of its subdirectories) are objects in the bucket. The presence of the slash (`/`) in objects' keys determines the directory hierarchy.

{% include important.html content="Because S3 buckets can use any directory in the file system as a root directory, the same file can be an object in multiple buckets." %}

Expand Down
21 changes: 21 additions & 0 deletions css/customstyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,27 @@ a.navbar-brand {
color:white;
}

/* Custom table sizing */
.width-10 {
width: 10%;
}

.width-13 {
width: 13%;
}

.width-15 {
width: 15%;
}

.width-20 {
width: 20%;
}

.width-30 {
width: 30%;
}

@media print {
body {
display: block !important;
Expand Down

0 comments on commit 903c025

Please sign in to comment.