Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more logging #222

Merged
merged 1 commit into from
Jul 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion config.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@
"logging": {
"Fluentbit": "FluentBit",
"Logstash": "LogStash",
"Rsyslog": "RSyslog",
},
"network": {
"Etcd": "ETCD",
Expand Down Expand Up @@ -385,7 +386,11 @@
"Typescript": "TypeScript"
},
},
"saas": {},
"saas": {
"logging": {
"Datadog": "DataDog",
}
},
"elastic": {
"elasticsearch": {
"Logstash": "LogStash",
Expand Down
13 changes: 13 additions & 0 deletions diagrams/onprem/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ class Fluentd(_Logging):
_icon = "fluentd.png"


class Graylog(_Logging):
_icon = "graylog.png"


class Logstash(_Logging):
_icon = "logstash.png"

Expand All @@ -24,7 +28,16 @@ class Loki(_Logging):
_icon = "loki.png"


class Rsyslog(_Logging):
_icon = "rsyslog.png"


class SyslogNg(_Logging):
_icon = "syslog-ng.png"


# Aliases

FluentBit = Fluentbit
LogStash = Logstash
RSyslog = Rsyslog
21 changes: 21 additions & 0 deletions diagrams/saas/logging.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This module is automatically generated by autogen.sh. DO NOT EDIT.

from . import _Saas


class _Logging(_Saas):
_type = "logging"
_icon_dir = "resources/saas/logging"


class Datadog(_Logging):
_icon = "datadog.png"


class Papertrail(_Logging):
_icon = "papertrail.png"


# Aliases

DataDog = Datadog
3 changes: 3 additions & 0 deletions docs/nodes/onprem.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,11 @@ Node classes list of onprem provider.

- **diagrams.onprem.logging.Fluentbit**, **FluentBit** (alias)
- **diagrams.onprem.logging.Fluentd**
- **diagrams.onprem.logging.Graylog**
- **diagrams.onprem.logging.Logstash**, **LogStash** (alias)
- **diagrams.onprem.logging.Loki**
- **diagrams.onprem.logging.Rsyslog**, **RSyslog** (alias)
- **diagrams.onprem.logging.SyslogNg**

## onprem.mlops

Expand Down
5 changes: 5 additions & 0 deletions docs/nodes/saas.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ Node classes list of saas provider.

- **diagrams.saas.identity.Auth0**

## saas.logging

- **diagrams.saas.logging.Datadog**, **DataDog** (alias)
- **diagrams.saas.logging.Papertrail**

## saas.media

- **diagrams.saas.media.Cloudinary**
Expand Down
Binary file added resources/onprem/logging/graylog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/onprem/logging/rsyslog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/onprem/logging/syslog-ng.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/saas/logging/datadog.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added resources/saas/logging/papertrail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.