You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/apps/business-services/building-business-services-in-device42.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ Applications Groups are enabled by default in Device42, but you can disable the
116
116
/>
117
117
118
118
119
-
### (Legacy) Pinning, Starring, and Hiding Services
119
+
### For versions prior to 19.05: Pinning, Starring, and Hiding Services
120
120
121
121
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.
122
122
@@ -172,7 +172,7 @@ Hovering over the timeline above the view will allow you to identify changes to
### For versions prior to 19.05: Refactoring Application Groups
176
176
177
177
- 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**.
Copy file name to clipboardExpand all lines: docs/auto-discovery/cloud-auto-discovery/google-cloud-platform-autodiscovery.mdx
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,8 @@ sidebar_position: 4
6
6
importThemedImagefrom'@theme/ThemedImage'
7
7
importuseBaseUrlfrom'@docusaurus/useBaseUrl'
8
8
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
+
9
11
## Google Cloud Platform Discovery Items
10
12
11
13
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
18
20
| SQL DB ||[SQL Admin API](https://www.googleapis.com/discovery/v1/apis/sqladmin/v1beta4/rest)| Tables, instances, etc. |
19
21
| VMs | Devices -> All Devices |[Compute API](https://www.googleapis.com/discovery/v1/apis/compute/v1/rest)| Type, Name, RAM, OS, CPU, cores, etc. |
20
22
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
+
21
58
## GCP Permission Requirements
22
59
23
60
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.
Copy file name to clipboardExpand all lines: docs/auto-discovery/database-discovery/index.mdx
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ import useBaseUrl from '@docusaurus/useBaseUrl'
7
7
8
8
## About Database Discovery
9
9
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.
11
11
12
12
:::note
13
13
Database discovery requires an **Application Dependency Mapping** license. Go to **Tools > Settings > Licensing** to see if the license is enabled. Contact [support@device42.com](mailto:support@device42.com) for licensing assistance.
@@ -453,22 +453,22 @@ We've made the following changes to the UI:
453
453
454
454
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.
455
455
456
-
## Postgres SQL Database Discovery (on \*nix targets)
456
+
## PostgreSQL Database Discovery (on \*nix targets)
457
457
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.
459
459
460
-
### Minimum Permissions Requirements for Postgres SQL Discovery
460
+
### Minimum Permissions Requirements for PostgreSQL Discovery
461
461
462
462
For discovery to return detailed information about your database instance, you will need access to the following tables:
463
463
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)
468
468
469
-
### Set Up Your Postgres SQL Discovery Job
469
+
### Set Up Your PostgreSQL Discovery Job
470
470
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.
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**.
Copy file name to clipboardExpand all lines: docs/auto-discovery/linux-unix-server-auto-discovery.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -179,11 +179,11 @@ Specify the timeout range between 10 to 600 seconds in the **Timeout** field to
179
179
}}
180
180
/>
181
181
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.
183
183
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.
185
185
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.
Copy file name to clipboardExpand all lines: docs/getstarted/discovery-hub.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
---
2
-
title: "Discovery Hub: scoping and onboarding"
2
+
title: "Discovery Hub: Scoping and Onboarding"
3
3
sidebar_position: 3.5
4
4
---
5
5
@@ -31,7 +31,7 @@ Log in to the Device42 UI and navigate to **Discovery > Discovery Hub**.
31
31
32
32
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.
33
33
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.
35
35
36
36
<ThemedImage
37
37
alt="Discovery Hub menu"
@@ -42,7 +42,7 @@ Enter the IP information in the box highlighted in the image below and click on
42
42
/>
43
43
<br/><br/>
44
44
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.
46
46
47
47
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**.
48
48
@@ -104,8 +104,8 @@ The scans you have created will be displayed in the left-hand column. Once start
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
176
178
/>
177
179
<br/><br/>
178
180
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.
Copy file name to clipboardExpand all lines: docs/getstarted/faqs/index.mdx
+4-9Lines changed: 4 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,12 +18,7 @@ With a default configuration, visit `https://IP_or_fqdn_for_device42_vm` in your
18
18
19
19
## Which Browser Should I Use?
20
20
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.
27
22
28
23
## How Do I Get My Current Data Into Device42?
29
24
@@ -37,7 +32,7 @@ You can use any of the following tools to import your data to Device42:
37
32
38
33
-[**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.
39
34
-[**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.
41
36
-**Device42 web UI**: You can use the Device42 web interface to import your data.
42
37
-**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.
43
38
@@ -65,7 +60,7 @@ Current releases of Device42 support **all** discovery jobs, including WMI and P
65
60
66
61
:::note
67
62
RCs will only automatically update when an RC update coincides with an MA update.
68
-
::
63
+
:::
69
64
70
65
## How Do I Migrate Existing Power Appliance Jobs to a Remote Collector?
71
66
@@ -109,7 +104,7 @@ Data can be exported in Excel or CSV format by downloading current data from the
109
104
110
105
## How Do I Back Up My Data?
111
106
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:
0 commit comments