-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (50 loc) · 4.07 KB
/
index.html
File metadata and controls
50 lines (50 loc) · 4.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<title>Introduction to the Qumulo REST API</title>
<link rel="stylesheet" type="text/css" href="/css/style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="This page introduces the Qumulo REST API, qq CLI, python bindings, and curl commands." />
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@Qumulo">
<meta name="twitter:title" content="Introduction to the Qumulo REST API">
<meta name="twitter:description" content="This page introduces the Qumulo REST API, qq CLI, python bindings, and curl commands.">
<meta name="twitter:creator" content="@Qumulo">
<meta name="twitter:image" content="//qumulo.github.io/images/engineering-qumulo.png">
<meta property="og:title" content="Introduction to the Qumulo REST API" />
<meta property="og:type" content="article" />
<meta property="og:url" content="//qumulo.github.io/" />
<meta property="og:image" content="//qumulo.github.io/images/engineering-qumulo.png" />
<meta property="og:description" content="This page introduces the Qumulo REST API, qq CLI, python bindings, and curl commands." />
<meta property="og:site_name" content="Qumulo" />
</head>
<body>
<div id="header">
<div id="title-bar">
<a href="https://www.qumulo.com/" target="_blank"><img src="/images/logo_on_dark.svg" alt="Qumulo Logo" class="logo"/></a>
</div>
</div>
<div id="content">
<h1>Introduction to the Qumulo REST API</h1>
<p><a href="https://qumulo.com/">Qumulo</a> creates products that to let users manage their unstructured file data for high-performance workloads at exabyte scale.</p>
<p>You can use the Qumulo REST API or <code>qq</code> CLI to automate tasks (such as creating shares, quotas, or snapshots), streamline your workflows, and study your clusters' analytics to better understand how your Qumulo cluster's storage is used.</p>
<ul>
<li><strong>Qumulo REST API:</strong> To get started, see <a href="https://github.com/Qumulo/qumulo-api-introduction">Introduction to the Qumulo API</a> and the <a target="_blank" href="https://docs.qumulo.com/rest-api-guide/">Qumulo REST API Guide</a> on the Qumulo Documentation Portal.</li>
<li><strong><code>qq</code> CLI tool:</strong> This wrapper that provides a streamlined command-line interface for the API. For more information, see <a target="_blank" href="https://docs.qumulo.com/qq-cli-command-guide/">Qumulo qq CLI Command Guide</a> on the Qumulo Documentation Portal.</li>
<li><strong><code>python</code> bindings:</strong> This is the main method of interacting with the Qumulo API programmatically. For more information, see <a target="_blank" href="https://pypi.org/project/qumulo-api/">qumulo-api</a> in the Python Package Index.</li>
<li><strong><code>curl</code> commands:</strong> These examples explain the raw REST elements that back the API.</li>
</ul>
<p>The following Qumulo tools can help you perform routine tasks automatically:</p>
<ul>
<li><strong><a href="https://github.com/Qumulo/power-tools">Power Tools:</a></strong> Monitor workload data, such as paths, clients, IOPS, and throughput</li>
<li><strong><a href="https://github.com/Qumulo/qdu">Disk Usage (<code>du</code>):</a></strong> Use Qumulo's aggregates to see the usage of a full file tree in real time</li>
<li><strong><a href="https://github.com/Qumulo/qsplit">Parallel Copy (<code>qsplit</code>):</a></strong> Use capacity aggregates to divide a large data copy job to run with <code>rsync</code></li>
</ul>
</div><br><br><br><br>
<footer>
<div id="footer">
<img src="/images/grumpquats.png" alt="Three Grumpquats" class="grumpquats"/>
</div>
</footer>
</body>
</html>