Skip to content

Commit f0c7b09

Browse files
Nadia-JSchclaude
andcommitted
1251: fold NOTES into intro sentences and remove NOTES sections from recipe pages
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9ec7cd1 commit f0c7b09

22 files changed

Lines changed: 21 additions & 77 deletions

docs/reports/dbb-cookbook/app-dependency-mapping/workload-and-application-communication-business-app-communications.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,3 @@ ORDER BY
7373

7474
</details>
7575

76-
**NOTES**
77-
78-
Use this query if want to move a Business Application to the cloud and need to know what clients communicate with it. This query will also give you the date of the last communication.

docs/reports/dbb-cookbook/app-dependency-mapping/workload-and-application-communication-ip-service-communications.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Workload and Application Communication - IP Service Communications"
33
sidebar_position: 7
44
---
55

6-
IP Service Communications
6+
Use this query to identify what networks your servers communicate with — classifying client IPs as private or public per device.
77

88
<details>
99
<summary>Click to expand the code block</summary>
@@ -61,6 +61,3 @@ GROUP BY pp.client_device_fk
6161

6262
</details>
6363

64-
**NOTES**
65-
66-
Use this query to if you need to identify what networks your servers communicate with (Private or Public).

docs/reports/dbb-cookbook/compute/compute-devices.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Compute Devices"
33
sidebar_position: 9
44
---
55

6-
Detailed Inventory of Compute Devices
6+
Returns a detailed inventory of all compute devices, including hardware specs, OS, cloud metadata, location, storage, and cost data. Use this to audit your assets for missing or incomplete information.
77

88
<details>
99
<summary>Click to expand the code block</summary>
@@ -91,6 +91,3 @@ Detailed Inventory of Compute Devices
9191
```
9292
</details>
9393

94-
**NOTES**
95-
96-
Gives the ability to manage your assets to see if you have any missing data.

docs/reports/dbb-cookbook/compute/device-count-by-device-type.mdx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Device Count by Device Type"
33
sidebar_position: 10
44
---
55

6-
Count of Devices by device type.
6+
Returns a count of devices grouped by device type — useful for getting a quick summary of your device mix.
77

88
<details>
99
<summary>Click to expand the code block</summary>
@@ -16,5 +16,3 @@ Count of Devices by device type.
1616
order by "count" desc
1717
```
1818
</details>
19-
20-
**NOTES**

docs/reports/dbb-cookbook/compute/device-count-by-service-level.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Device Count by Service Level"
33
sidebar_position: 11
44
---
55

6-
Count of Devices by service level.
6+
Returns a count of devices grouped by service level, useful for understanding how your assets are distributed across production, non-production, and other environments.
77

88
<details>
99
<summary>Click to expand the code block</summary>

docs/reports/dbb-cookbook/compute/device-to-rack-inventory.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Device to Rack Inventory"
33
sidebar_position: 12
44
---
55

6-
Run this query to get an inventory of Devices arranged by Rack and see if you have any missing data.
6+
Returns a physical device inventory organized by location hierarchy — building, room, row, rack, and U position. Use this to verify rack assignments and spot gaps in your physical inventory data.
77

88
<details>
99
<summary>Click to expand the code block</summary>

docs/reports/dbb-cookbook/compute/devices-missing-device_type-or-service_level.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Devices Missing Device_Type or Service_Level"
33
sidebar_position: 13
44
---
55

6-
Inventory of incomplete device discovery.
6+
Returns devices where `service_level` or `device_type` is missing, unknown, or set to a placeholder value. Note that `service_level` is set manually and is not directly discovered.
77

88
<details>
99
<summary>Click to expand the code block</summary>
@@ -25,6 +25,3 @@ Inventory of incomplete device discovery.
2525
```
2626
</details>
2727

28-
**NOTES**
29-
30-
The `service_level` values are set by the customer and not directly discovered.

docs/reports/dbb-cookbook/compute/physical-device-inventory.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Physical Device Inventory"
33
sidebar_position: 14
44
---
55

6-
**Inventory of Physical Device Information**
6+
Returns hardware specifications for physical devices — manufacturer, model, serial number, CPU, RAM, size, and hardware EOL and EOS dates. Use this to manage your physical assets and identify missing data.
77

88
<details>
99
<summary>Click to expand the code block</summary>
@@ -26,6 +26,3 @@ sidebar_position: 14
2626
```
2727
</details>
2828

29-
**NOTES**
30-
31-
Gives ability to manage your assets to see if you have any missing data.

docs/reports/dbb-cookbook/compute/physical-devices-by-customer-department.mdx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Physical Devices by Customer Department"
33
sidebar_position: 15
44
---
55

6-
Inventory of Physical Devices grouped by Customer Department.
6+
Returns physical devices grouped by customer department, including location and discovery data. Note that asset number (asset tag) is set manually by your team and is not directly discovered. Use this to assist with physical inventory tracking by department or for chargeback reporting.
77

88
<details>
99
<summary>Click to expand the code block</summary>
@@ -27,6 +27,3 @@ Inventory of Physical Devices grouped by Customer Department.
2727
```
2828
</details>
2929

30-
**NOTES**
31-
32-
Asset number (asset tag) is set by customer and not directly discovered. Use this to assist with physical inventory by customer department.

docs/reports/dbb-cookbook/compute/physical-devices-without-hardware-model.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Physical Devices Without Hardware Model"
33
sidebar_position: 16
44
---
55

6-
Lists physical devices missing hardware information to see if you have any missing data.
6+
Lists physical devices missing a hardware model.
77

88
<details>
99
<summary>Click to expand the code block</summary>

0 commit comments

Comments
 (0)