Skip to content

Commit 352c096

Browse files
authored
feat: update InfluxCLI to InfluxDB CLI (#5189)
* feat: update InfluxCLI to InfluxDB CLI
1 parent b76fad6 commit 352c096

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

src/homepageExperience/components/steps/cli/ExecuteAggregateQuery.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const ExecuteAggregateQuery = (props: OwnProps) => {
5050
onCopy={logCopyCodeSnippet}
5151
language="properties"
5252
/>
53-
<p>In the InfluxCLI, run the following:</p>
53+
<p>In the InfluxDB CLI, run the following:</p>
5454
<CodeSnippet
5555
text={codeSnippet}
5656
onCopy={logCopyCodeSnippet}

src/homepageExperience/components/steps/cli/InitializeClient.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ export const InitializeClient: FC<OwnProps> = ({
159159
</Panel.Body>
160160
</Panel>
161161
<p className="large-margins">
162-
We can also create a bucket using the InfluxCLI. We'll link the bucket
163-
to the profile you created.
162+
We can also create a bucket using the InfluxDB CLI. We'll link the
163+
bucket to the profile you created.
164164
</p>
165165
<CodeSnippet
166166
text={bucketSnippet}

src/homepageExperience/components/steps/cli/InstallDependencies.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ sudo cp influxdb2-client-latest-linux-arm64/influx /usr/local/bin/
113113
documentation.
114114
</SafeBlankLink>{' '}
115115
</p>
116-
<h2 style={headingWithMargin}>Useful InfluxCLI commands</h2>
116+
<h2 style={headingWithMargin}>Useful InfluxDB CLI commands</h2>
117117
<p>
118118
To invoke a command, use the following format in the command line:
119119
</p>
@@ -174,10 +174,12 @@ sudo cp influxdb2-client-latest-linux-arm64/influx /usr/local/bin/
174174
language="properties"
175175
/>
176176
<h2 style={headingWithMargin}>Grant network access (optional)</h2>
177-
<p>To grant the InfluxCLI the required access, do the following:</p>
177+
<p>
178+
To grant the InfluxDB CLI the required access, do the following:
179+
</p>
178180
<p>1. Select Private networks, such as my home or work network </p>
179181
<p>2. Click Allow access</p>
180-
<h2 style={headingWithMargin}>Useful InfluxCLI commands</h2>
182+
<h2 style={headingWithMargin}>Useful InfluxDB CLI commands</h2>
181183
<p>
182184
To invoke a command, use the following format in the command line:
183185
</p>
@@ -255,7 +257,7 @@ sudo cp influxdb2-client-latest-linux-arm64/influx /usr/local/bin/
255257
onCopy={logCopyCodeSnippetLinux}
256258
language="properties"
257259
/>
258-
<h2 style={headingWithMargin}>Useful InfluxCLI commands</h2>
260+
<h2 style={headingWithMargin}>Useful InfluxDB CLI commands</h2>
259261
<p>
260262
To invoke a command, use the following format in the command line:
261263
</p>

src/homepageExperience/containers/CliWizard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export class CliWizard extends PureComponent<{}, State> {
163163
onStepClick={this.handleNavClick}
164164
navigationSteps={HOMEPAGE_NAVIGATION_STEPS_CLI}
165165
settingUpIcon={CLIIcon}
166-
settingUpText="InfluxCLI"
166+
settingUpText="InfluxDB CLI"
167167
setupTime="5 minutes"
168168
/>
169169
</div>

src/homepageExperience/containers/HomepageContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@ export const HomepageContainer: FC = () => {
194194
<div className="tile-icon-text-wrapper">
195195
<div className="icon">{CLIIcon}</div>
196196
<div>
197-
<h4>InfluxCLI</h4>
197+
<h4>InfluxDB CLI</h4>
198198
<h6>
199-
Write and query data using the Influx Command Line
199+
Write and query data using the InfluxDB Command Line
200200
Interface. Supports CSV and Line Protocol.
201201
</h6>
202202
</div>

0 commit comments

Comments
 (0)