Skip to content

Commit 17042e2

Browse files
authored
Merge branch 'main' into 1146-installation
2 parents 8d46d2e + c67b83c commit 17042e2

File tree

192 files changed

+1095
-697
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+1095
-697
lines changed

docs/apps/business-services/building-business-services-in-device42.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Applications Groups are enabled by default in Device42, but you can disable the
116116
/>
117117

118118

119-
### (Legacy) Pinning, Starring, and Hiding Services
119+
### For versions prior to 19.05: Pinning, Starring, and Hiding Services
120120

121121
Now that we have enabled Application Groups, we must identify which services we want to Pin, Star, and Hide to continue to build out our Application Groups. 
122122

@@ -172,7 +172,7 @@ Hovering over the timeline above the view will allow you to identify changes to
172172

173173
![](/assets/images/WEB-519_bus-apps-13-Affinity-Group-Chart-Timeline.png)
174174

175-
### (Legacy) Refactoring Application Groups
175+
### For versions prior to 19.05: Refactoring Application Groups
176176

177177
- There are times when choosing a different query to generate your Application Groups may be better suited for your environment. Navigate to **Tools > Integrations > Saved DOQL Queries**.
178178

docs/auto-discovery/cloud-auto-discovery/google-cloud-platform-autodiscovery.mdx

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ sidebar_position: 4
66
import ThemedImage from '@theme/ThemedImage'
77
import useBaseUrl from '@docusaurus/useBaseUrl'
88

9+
Use Device42's Google Cloud Platform (GCP) autodiscovery to automatically inventory your GCP infrastructure, including virtual machines, Kubernetes clusters, databases, networks, and load balancers.
10+
911
## Google Cloud Platform Discovery Items
1012

1113
The following table outlines the Google Cloud Platform (GCP) items that Device42 automatically discovers, the types of information generated for each item, and where that information can be found in Device42.
@@ -18,6 +20,41 @@ The following table outlines the Google Cloud Platform (GCP) items that Device42
1820
| SQL DB | | [SQL Admin API](https://www.googleapis.com/discovery/v1/apis/sqladmin/v1beta4/rest) | Tables, instances, etc. |
1921
| VMs | Devices -> All Devices | [Compute API](https://www.googleapis.com/discovery/v1/apis/compute/v1/rest) | Type, Name, RAM, OS, CPU, cores, etc. |
2022

23+
Device42 also discovers the following GCP items:
24+
25+
**Storage:**
26+
- Cloud Device
27+
- Cloud Disk
28+
29+
**Networking:**
30+
- VPCs (VRF Groups)
31+
- VPC Firewall Rules
32+
- GCP Load Balancer
33+
34+
**Databases:**
35+
- Cloud SQL
36+
- GCP BigQuery Table
37+
38+
**Kubernetes:**
39+
- Kubernetes Cluster
40+
- Kubernetes Config Map
41+
- Kubernetes Container
42+
- Kubernetes Daemon Set
43+
- Kubernetes Deployment
44+
- Kubernetes Ingress
45+
- Kubernetes Ingress Rule
46+
- Kubernetes Namespace
47+
- Kubernetes Node
48+
- Kubernetes Persistent Volume
49+
- Kubernetes Pod
50+
- Kubernetes Quota
51+
- Kubernetes Replica Set
52+
- Kubernetes Replication Controller
53+
- Kubernetes Service
54+
- Kubernetes Service Port
55+
- Kubernetes Stateful Set
56+
- Kubernetes Volume
57+
2158
## GCP Permission Requirements
2259

2360
The following permissions are required to perform a GCP discovery job. You can create a custom IAM role with these permissions or ensure they are included in existing roles granted to your account or service account.

docs/auto-discovery/database-discovery/index.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl'
77

88
## About Database Discovery
99

10-
Database (DB) discovery currently supports Windows and \*nix-based discovery jobs detecting Microsoft SQL (aka MSSQL), Oracle, Postgres SQL, and DB2 databases.
10+
Database (DB) discovery currently supports Windows and \*nix-based discovery jobs detecting Microsoft SQL (aka MSSQL), Oracle, PostgreSQL, and DB2 databases.
1111

1212
:::note
1313
Database discovery requires an **Application Dependency Mapping** license. Go to **Tools > Settings > Licensing** to see if the license is enabled. Contact [[email protected]](mailto:[email protected]) for licensing assistance.
@@ -453,22 +453,22 @@ We've made the following changes to the UI:
453453

454454
We previously gathered all Oracle users and collected them as "Device42 Databases." Then, we only retrieved Oracle users that had at least one associated database object, and from there, we implemented changes to ignore user schemas. As a result, some Oracle database connections may no longer show under specific user schemas. These 'orphaned' database connections now map to the main database instance, instead of mapping to a specific **Database/Schema** resource. While they’re not linked to individual schemas anymore, key details like the user login and schema names are still preserved in the database instance details.
455455

456-
## Postgres SQL Database Discovery (on \*nix targets)
456+
## PostgreSQL Database Discovery (on \*nix targets)
457457

458-
Device42 offers Postgres SQL database discovery for \*nix discovery targets, although it requires a separate set of credentials to authenticate to the database instance itself. Ensure these additional credentials have the appropriate permissions for viewing the databases you are interested in discovering.
458+
Device42 offers PostgreSQL database discovery for \*nix discovery targets, although it requires a separate set of credentials to authenticate to the database instance itself. Ensure these additional credentials have the appropriate permissions for viewing the databases you are interested in discovering.
459459

460-
### Minimum Permissions Requirements for Postgres SQL Discovery
460+
### Minimum Permissions Requirements for PostgreSQL Discovery
461461

462462
For discovery to return detailed information about your database instance, you will need access to the following tables:
463463

464-
* `pg_database`
465-
* `pg_tablespace`
466-
* `pg_stat_activity`
467-
* `init_server_addr` (function)
464+
* `pg_database` (table)
465+
* `pg_tablespace` (table)
466+
* `pg_stat_activity` (table)
467+
* `⁠inet_server_addr()` (function)
468468

469-
### Set Up Your Postgres SQL Discovery Job
469+
### Set Up Your PostgreSQL Discovery Job
470470

471-
To begin discovering your Postgres SQL databases, create a new discovery job for \*nix targets, and be sure to enable database discovery by checking the **Collect database server information** checkbox.
471+
To begin discovering your PostgreSQL databases, create a new discovery job for \*nix targets, and be sure to enable database discovery by checking the **Collect database server information** checkbox.
472472

473473
Fill out both sets of credentials:
474474

@@ -503,7 +503,7 @@ sources={{
503503
}}
504504
/>
505505

506-
### View Postgres SQL Database Discovery Job Results
506+
### View PostgreSQL Database Discovery Job Results
507507

508508
When the job finishes, the most direct way to view the results of your database discovery is via the discovered Postgres application components themselves. On the Device42 main menu, select **Applications > Application Components**. If you don’t see your Postgres DB instances at the top of the list, you can search for "Postgres" to narrow down the list, or filter the list **By Category > Database**.
509509

docs/auto-discovery/linux-unix-server-auto-discovery.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,11 @@ Specify the timeout range between 10 to 600 seconds in the **Timeout** field to
179179
}}
180180
/>
181181

182-
When discovery switches between *nix users, the triggered banner text messages may disrupt database discovery and Application Component creation, resulting in discovery errors or incomplete data collection.
182+
If you experience unexplainable issues during discovery that you suspect are due to banner text interfering with parsing, enable the **Check for Banner** option for discovery to detect and remove banner messages. The **Check for Banner** option is also available via API.
183183

184-
To ensure full data collection when switching users, enable the **Check for Banner** option for discovery to detect and remove banner messages.
184+
When discovery switches between *nix users, the triggered banner text messages may disrupt database discovery and Application Component creation, resulting in discovery errors or incomplete data collection.
185185

186-
The **Check for Banner** option is also available via API.
186+
Note that banner text interference can't be directly determined from Device42. You require a power user with system access to the target machine to detect interference by switching users. Device42 support may advise you to select the banner option if they suspect banner text interference.
187187

188188
<ThemedImage
189189
alt="Check for Banner option"

docs/auto-discovery/saas-discovery.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The software data collected during SaaS discovery is available under the **Resou
4545

4646
### Discovered End Users
4747

48-
You can find the end user discovery data under **Resources > Organization > End Users**.
48+
You can find the end user discovery data under **Infrastructure > Organization > End Users**.
4949

5050
### New and Existing End Users
5151

docs/auto-discovery/warranty-autodiscovery.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To configure automatic warranty discovery, you need to request API keys from the
2525

2626
### Detailed Warranty Sync Instructions
2727

28-
Device42 supports warranty autodiscovery for the following vendors:**
28+
Device42 supports warranty autodiscovery for the following vendors:
2929

3030
- Dell
3131
- IBM

docs/getstarted/discovery-hub.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Discovery Hub: scoping and onboarding"
2+
title: "Discovery Hub: Scoping and Onboarding"
33
sidebar_position: 3.5
44
---
55

@@ -31,7 +31,7 @@ Log in to the Device42 UI and navigate to **Discovery > Discovery Hub**.
3131

3232
To set up a Discovery Hub scan, name the scan and select the [Remote Collector](getstarted/installation/remote-collector-rc-installation.mdx) to use. You need to know the IPs, IP ranges, or CIDR blocks for your target environment.
3333

34-
Enter the IP information in the box highlighted in the image below and click on the **+** button. You can enter as many targets as you like but the more targets included, the longer the scan will likely take.
34+
Enter the IP information in the box highlighted in the image below and click on the **up arrow** button. You can enter as many targets as you like, but the more targets you include, the longer the scan will likely take.
3535

3636
<ThemedImage
3737
alt="Discovery Hub menu"
@@ -42,7 +42,7 @@ Enter the IP information in the box highlighted in the image below and click on
4242
/>
4343
<br/><br/>
4444

45-
After you have entered the information, click the bright green **Start** button.
45+
After you have entered the IP address, named the scan, and selected at least one RC, click the green **Start** button.
4646

4747
The scan will start immediately. You'll see the green start notification, a percentage ticker showing your completion status, and information on the six categories of assets: **Windows**, **Nix**, **Network Devices**, **Hypervisors**, **Other/Unknown**, and **Unreachable**.
4848

@@ -104,8 +104,8 @@ The scans you have created will be displayed in the left-hand column. Once start
104104
<ThemedImage
105105
alt="Scan results with settings button"
106106
sources={{
107-
light: useBaseUrl('/assets/images/discovery-hub-onboarding/scan-outcome-light.png'),
108-
dark: useBaseUrl('/assets/images/discovery-hub-onboarding/scan-outcome-dark.png'),
107+
light: useBaseUrl('/assets/images/discovery-hub-onboarding/scan-settings-button-light.png'),
108+
dark: useBaseUrl('/assets/images/discovery-hub-onboarding/scan-settings-button-dark.png'),
109109
}}
110110
/>
111111
<br/><br/>
@@ -162,7 +162,9 @@ The **One-time discovery** and **Continuous discovery** options are recommended
162162
light: useBaseUrl('/assets/images/discovery-hub-onboarding/discovery-job-window-cidr-light.png'),
163163
dark: useBaseUrl('/assets/images/discovery-hub-onboarding/discovery-job-window-cidr-dark.png'),
164164
}}
165+
style={{ width: '70%' }}
165166
/>
167+
166168
<br/><br/>
167169

168170
When the job is created successfully, you will see the screen below. You can close the window and go back to your scans or click the link to be taken to the job page to edit the job settings.
@@ -176,9 +178,7 @@ When the job is created successfully, you will see the screen below. You can clo
176178
/>
177179
<br/><br/>
178180

179-
From the **Settings** tab of completed Discovery Hub scans, you can see the linked jobs that were created based on those results.
180-
181-
Click on the **+ Add schedule button** to schedule the scan.
181+
From the **Settings** tab of completed Discovery Hub scans, you can see the linked jobs that were created based on those results. Click on the **+ Add schedule button** to schedule the scan.
182182

183183
<ThemedImage
184184
alt="Network scan settings"

docs/getstarted/faqs/index.mdx

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,7 @@ With a default configuration, visit `https://IP_or_fqdn_for_device42_vm` in your
1818

1919
## Which Browser Should I Use?
2020

21-
Device42 recommends using the web browsers (or more recent versions) listed below.
22-
23-
- Chrome — 88.0.4324.150
24-
- Edge — 88.0.705.63
25-
- Firefox — 72.0.1
26-
- Safari — 13.1.2 (13609.3.5.1.5)
21+
Device42 recommends using the latest version of Chrome, Firefox, Edge, or Safari.
2722

2823
## How Do I Get My Current Data Into Device42?
2924

@@ -37,7 +32,7 @@ You can use any of the following tools to import your data to Device42:
3732

3833
- [**Microsoft Excel / CSV (spreadsheet) import**](integration/imports/index.mdx): The **Tools > Imports/Exports (xls)** page outlines your options for importing MS Excel spreadsheets to Device42 and provides sample Excel sheets to help you format your existing spreadsheets so that uploading your existing data is as easy as possible.
3934
- [**Device42 generic import tool**](https://www.device42.com/blog/2018/06/19/new-features-added-to-the-generic-import-tool/): You can use the Device42 generic import tool to add and map fields for existing data from most spreadsheet formats. Learn more about formatting best practices in the Device42 walkthrough for manually [Importing Data From Existing Spreadsheets](getstarted/importing-data-from-existing-spreadsheets.mdx).
40-
- [**RESTful APIs**](https://api.device42.com): These enable you to programatically automate your network documentation and leverage your asset data for scripts and automation. Simply add RESTful APIs to your regular workflow to leverage Device42 as single source of truth for systems such as provisioning and monitoring.
35+
- [**RESTful APIs**](https://api.device42.com): These enable you to programatically automate your network documentation and leverage your asset data for scripts and automation. Simply add RESTful APIs to your regular workflow to leverage Device42 as a single source of truth for systems such as provisioning and monitoring.
4136
- **Device42 web UI**: You can use the Device42 web interface to import your data.
4237
- **Templates/bulk operations**: Certain object types are easier to add using templates or models. For example, it is easier to use [PDU models](infrastructure-management/power-units/defining-pdu-models.mdx) to create PDUs, [switch port templates](infrastructure-management/ipam/switch-templates.mdx) to create switches and ports, and [patch panel models](infrastructure-management/power-units/defining-pdu-models.mdx) to create patch panel ports and bulk backport connectivity for patch panels.
4338

@@ -65,7 +60,7 @@ Current releases of Device42 support **all** discovery jobs, including WMI and P
6560

6661
:::note
6762
RCs will only automatically update when an RC update coincides with an MA update.
68-
::
63+
:::
6964

7065
## How Do I Migrate Existing Power Appliance Jobs to a Remote Collector?
7166

@@ -109,7 +104,7 @@ Data can be exported in Excel or CSV format by downloading current data from the
109104

110105
## How Do I Back Up My Data?
111106

112-
Log in to the Device42 appliance manager at `https://your\_device42\_ip\_or\_FQDN:4242/` using the following default credentials:
107+
Log in to the Device42 appliance manager at `https://your_device42_ip_or_FQDN:4242/` using the following default credentials:
113108

114109
- Username:`d42admin`
115110
- Password: `default`

0 commit comments

Comments
 (0)