Skip to content

Commit db2cb93

Browse files
committed
Update notice about non solution based connectors
1 parent 4594488 commit db2cb93

File tree

4 files changed

+18
-0
lines changed

4 files changed

+18
-0
lines changed

Tools/Solutions Analyzer/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ Scans the Solutions directory to:
3838

3939
**Note:** Solutions without data connectors are included in the CSV output with empty `connector_id`, `connector_title`, `connector_description`, `connector_publisher`, `connector_files`, and `Table` fields. This ensures complete solution coverage in the documentation while clearly indicating which solutions do not include data ingestion components.
4040

41+
**Important:** This analysis covers connectors managed through Solutions in the Azure-Sentinel GitHub repository. A small number of connectors (such as Microsoft Dataverse, Microsoft Power Automate, Microsoft Power Platform Admin, and SAP connectors) are not managed via Solutions and are therefore not included in this output.
42+
4143
## Prerequisites
4244

4345
- Python 3.7 or higher

Tools/Solutions Analyzer/connector-docs/connectors-index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
Browse all data connectors available in Microsoft Sentinel Solutions.
44

5+
> **Note:** This index covers connectors managed through Solutions in the Azure-Sentinel GitHub repository. A small number of connectors (such as Microsoft Dataverse, Microsoft Power Automate, Microsoft Power Platform Admin, and SAP connectors) are not managed via Solutions and are therefore not included here.
6+
57
**Browse by:**
68

79
- [Solutions](connector-reference-index.md)

Tools/Solutions Analyzer/connector-docs/solutions-index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
This reference documentation provides detailed information about data connectors available in Microsoft Sentinel Solutions.
44

5+
> **Note:** This index covers connectors managed through Solutions in the Azure-Sentinel GitHub repository. A small number of connectors (such as Microsoft Dataverse, Microsoft Power Automate, Microsoft Power Platform Admin, and SAP connectors) are not managed via Solutions and are therefore not included here.
6+
57
**Browse by:**
68

79
- [Solutions](solutions-index.md) (this page)

Tools/Solutions Analyzer/generate_connector_docs.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,12 @@ def generate_index_page(solutions: Dict[str, List[Dict[str, str]]], output_dir:
646646
f.write("This reference documentation provides detailed information about data connectors ")
647647
f.write("available in Microsoft Sentinel Solutions.\n\n")
648648

649+
# Add coverage note
650+
f.write("> **Note:** This index covers connectors managed through Solutions in the Azure-Sentinel ")
651+
f.write("GitHub repository. A small number of connectors (such as Microsoft Dataverse, ")
652+
f.write("Microsoft Power Automate, Microsoft Power Platform Admin, and SAP connectors) ")
653+
f.write("are not managed via Solutions and are therefore not included here.\n\n")
654+
649655
# Add navigation to other indexes
650656
f.write("**Browse by:**\n\n")
651657
f.write("- [Solutions](solutions-index.md) (this page)\n")
@@ -787,6 +793,12 @@ def generate_connectors_index(solutions: Dict[str, List[Dict[str, str]]], output
787793
f.write("# Microsoft Sentinel Connectors Index\n\n")
788794
f.write("Browse all data connectors available in Microsoft Sentinel Solutions.\n\n")
789795

796+
# Add coverage note
797+
f.write("> **Note:** This index covers connectors managed through Solutions in the Azure-Sentinel ")
798+
f.write("GitHub repository. A small number of connectors (such as Microsoft Dataverse, ")
799+
f.write("Microsoft Power Automate, Microsoft Power Platform Admin, and SAP connectors) ")
800+
f.write("are not managed via Solutions and are therefore not included here.\n\n")
801+
790802
# Add navigation
791803
f.write("**Browse by:**\n\n")
792804
f.write("- [Solutions](connector-reference-index.md)\n")

0 commit comments

Comments
 (0)