-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a9012f
commit 1eed336
Showing
35 changed files
with
220 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
""" | ||
Elastic provides a set of general elastic services. | ||
""" | ||
|
||
from diagrams import Node | ||
|
||
|
||
class _Elastic(Node): | ||
_provider = "elastic" | ||
_icon_dir = "resources/elastic" | ||
|
||
fontcolor = "#ffffff" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _Elastic | ||
|
||
|
||
class _Elasticsearch(_Elastic): | ||
_type = "elasticsearch" | ||
_icon_dir = "resources/elastic/elasticsearch" | ||
|
||
|
||
class Alerting(_Elasticsearch): | ||
_icon = "alerting.png" | ||
|
||
|
||
class Elasticsearch(_Elasticsearch): | ||
_icon = "elasticsearch.png" | ||
|
||
|
||
class Kibana(_Elasticsearch): | ||
_icon = "kibana.png" | ||
|
||
|
||
class Logstash(_Elasticsearch): | ||
_icon = "logstash.png" | ||
|
||
|
||
class MachineLearning(_Elasticsearch): | ||
_icon = "machine-learning.png" | ||
|
||
|
||
class Maps(_Elasticsearch): | ||
_icon = "maps.png" | ||
|
||
|
||
class Monitoring(_Elasticsearch): | ||
_icon = "monitoring.png" | ||
|
||
|
||
class SecuritySettings(_Elasticsearch): | ||
_icon = "security-settings.png" | ||
|
||
|
||
class Sql(_Elasticsearch): | ||
_icon = "sql.png" | ||
|
||
|
||
# Aliases | ||
|
||
LogStash = Logstash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _Elastic | ||
|
||
|
||
class _Enterprisesearch(_Elastic): | ||
_type = "enterprisesearch" | ||
_icon_dir = "resources/elastic/enterprisesearch" | ||
|
||
|
||
class AppSearch(_Enterprisesearch): | ||
_icon = "app-search.png" | ||
|
||
|
||
class EnterpriseSearch(_Enterprisesearch): | ||
_icon = "enterprise-search.png" | ||
|
||
|
||
class SiteSearch(_Enterprisesearch): | ||
_icon = "site-search.png" | ||
|
||
|
||
class WorkplaceSearch(_Enterprisesearch): | ||
_icon = "workplace-search.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _Elastic | ||
|
||
|
||
class _Observability(_Elastic): | ||
_type = "observability" | ||
_icon_dir = "resources/elastic/observability" | ||
|
||
|
||
class APM(_Observability): | ||
_icon = "apm.png" | ||
|
||
|
||
class Logs(_Observability): | ||
_icon = "logs.png" | ||
|
||
|
||
class Metrics(_Observability): | ||
_icon = "metrics.png" | ||
|
||
|
||
class Observability(_Observability): | ||
_icon = "observability.png" | ||
|
||
|
||
class Uptime(_Observability): | ||
_icon = "uptime.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _Elastic | ||
|
||
|
||
class _Orchestration(_Elastic): | ||
_type = "orchestration" | ||
_icon_dir = "resources/elastic/orchestration" | ||
|
||
|
||
class ECE(_Orchestration): | ||
_icon = "ece.png" | ||
|
||
|
||
class ECK(_Orchestration): | ||
_icon = "eck.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This module is automatically generated by autogen.sh. DO NOT EDIT. | ||
|
||
from . import _Elastic | ||
|
||
|
||
class _Security(_Elastic): | ||
_type = "security" | ||
_icon_dir = "resources/elastic/security" | ||
|
||
|
||
class Endpoint(_Security): | ||
_icon = "endpoint.png" | ||
|
||
|
||
class Security(_Security): | ||
_icon = "security.png" | ||
|
||
|
||
class SIEM(_Security): | ||
_icon = "siem.png" | ||
|
||
|
||
# Aliases |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
id: elastic | ||
title: Elastic | ||
--- | ||
|
||
Node classes list of elastic provider. | ||
|
||
## elastic.elasticsearch | ||
|
||
- **diagrams.elastic.elasticsearch.Alerting** | ||
- **diagrams.elastic.elasticsearch.Elasticsearch** | ||
- **diagrams.elastic.elasticsearch.Kibana** | ||
- **diagrams.elastic.elasticsearch.Logstash**, **LogStash** (alias) | ||
- **diagrams.elastic.elasticsearch.MachineLearning** | ||
- **diagrams.elastic.elasticsearch.Maps** | ||
- **diagrams.elastic.elasticsearch.Monitoring** | ||
- **diagrams.elastic.elasticsearch.SecuritySettings** | ||
- **diagrams.elastic.elasticsearch.Sql** | ||
|
||
## elastic.enterprisesearch | ||
|
||
- **diagrams.elastic.enterprisesearch.AppSearch** | ||
- **diagrams.elastic.enterprisesearch.EnterpriseSearch** | ||
- **diagrams.elastic.enterprisesearch.SiteSearch** | ||
- **diagrams.elastic.enterprisesearch.WorkplaceSearch** | ||
|
||
## elastic.observability | ||
|
||
- **diagrams.elastic.observability.APM** | ||
- **diagrams.elastic.observability.Logs** | ||
- **diagrams.elastic.observability.Metrics** | ||
- **diagrams.elastic.observability.Observability** | ||
- **diagrams.elastic.observability.Uptime** | ||
|
||
## elastic.orchestration | ||
|
||
- **diagrams.elastic.orchestration.ECE** | ||
- **diagrams.elastic.orchestration.ECK** | ||
|
||
## elastic.security | ||
|
||
- **diagrams.elastic.security.Endpoint** | ||
- **diagrams.elastic.security.Security** | ||
- **diagrams.elastic.security.SIEM** |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters