Skip to content

Commit

Permalink
feat: add elastic search nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
tsypuk committed Jan 15, 2024
1 parent 675d703 commit e5d9740
Show file tree
Hide file tree
Showing 5 changed files with 147 additions and 1 deletion.
92 changes: 92 additions & 0 deletions docs/docs/aws-components/elasticsearch_service.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
layout: default
title: Elastic Search Service
parent: AWS Components
nav_order: 3
date: 2024-01-15
---

# Elastic Search Service
{: .d-inline-block .no_toc }

New (v0.3.22)
{: .label .label-green }

## Table of contents
{: .no_toc .text-delta }

1. TOC
{:toc}

---


## Node Type: ``elasticsearch_service``

## Rendering:

![lambda](output/jpg/elasticsearch_service.jpg)

## Code Snippet:

```python
{% root_include_snippet ../tests/aws/test_elasticsearch_service.py %}
```

## drawio elasticsearch_service vertex:

```xml
<mxCell id="vertex:elasticsearch_service:arn:aws:elastic-search:eu-west-1:123456789012:document/test-table" parent="1" vertex="1">
<mxGeometry width="67.5" height="81" as="geometry"/>
</mxCell>
```
---

## Advanced for Geeks:

### Style:
```html
style="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=left;html=1;shape=mxgraph.aws3.elasticsearch_service;fillColor=#F58534;gradientColor=none;"
```

| attribute | value |
|:----------|:------|
|align| left |
|dashed| 0 |
|fillColor| #F58534 |
|gradientColor| none |
|html| 1 |
|outlineConnect| 0 |
|shape| mxgraph.aws3.elasticsearch_service |
|verticalAlign| top |
|verticalLabelPosition| bottom |

### Vertex size:

| attribute | value |
|:---------|:-----------|
| width | 67.5 |
| height |81|

### Full XML dump:
```xml
<mxfile host="multicloud-diagrams" agent="PIP package multicloud-diagrams. Generate resources in draw.io compatible format for Cloud infrastructure. Copyrights @ Roman Tsypuk 2023. MIT license." type="MultiCloud">
<diagram id="diagram_1" name="AWS components">
<mxGraphModel dx="1015" dy="661" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="1">
<root>
<mxCell id="0"/>
<mxCell id="1" parent="0"/>
<mxCell id="vertex:elasticsearch_service:arn:aws:elastic-search:eu-west-1:123456789012:document/test-table" value="&lt;b&gt;Name&lt;/b&gt;: Index for Photos&lt;BR&gt;&lt;b&gt;ARN&lt;/b&gt;: arn:aws:elastic-search:eu-west-1:123456789012:document/test-table&lt;BR&gt;-----------&lt;BR&gt;&lt;b&gt;indexes&lt;/b&gt;: 12&lt;BR&gt;&lt;b&gt;Volume&lt;/b&gt;: 45GB" style="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=left;html=1;shape=mxgraph.aws3.elasticsearch_service;fillColor=#F58534;gradientColor=none;" parent="1" vertex="1">
<mxGeometry width="67.5" height="81" as="geometry"/>
</mxCell>
</root>
</mxGraphModel>
</diagram>
</mxfile>
```

### drawio file:

Download generated ``elasticsearch_service.drawio``:

[Download](output/drawio/elasticsearch_service.drawio){: .btn .btn-purple }
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<mxfile host="multicloud-diagrams" agent="PIP package multicloud-diagrams. Generate resources in draw.io compatible format for Cloud infrastructure. Copyrights @ Roman Tsypuk 2023. MIT license." type="MultiCloud">
<diagram id="diagram_1" name="AWS components">
<mxGraphModel dx="1015" dy="661" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="1">
<root>
<mxCell id="0"/>
<mxCell id="1" parent="0"/>
<mxCell id="vertex:elasticsearch_service:arn:aws:elastic-search:eu-west-1:123456789012:document/test-table" value="&lt;b&gt;Name&lt;/b&gt;: Index for Photos&lt;BR&gt;&lt;b&gt;ARN&lt;/b&gt;: arn:aws:elastic-search:eu-west-1:123456789012:document/test-table&lt;BR&gt;-----------&lt;BR&gt;&lt;b&gt;indexes&lt;/b&gt;: 12&lt;BR&gt;&lt;b&gt;Volume&lt;/b&gt;: 45GB" style="outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=left;html=1;shape=mxgraph.aws3.elasticsearch_service;fillColor=#F58534;gradientColor=none;" parent="1" vertex="1">
<mxGeometry width="67.5" height="81" as="geometry"/>
</mxCell>
</root>
</mxGraphModel>
</diagram>
</mxfile>
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 8 additions & 1 deletion multicloud_diagrams/providers/aws.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,12 @@
"height": "72",
"version": "0.3.22",
"desc": "Elastic Container Registry"
}
},
"elasticsearch_service": {
"style": "outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=left;html=1;shape=mxgraph.aws3.elasticsearch_service;fillColor=#F58534;gradientColor=none;",
"width": "67.5",
"height": "81",
"version": "0.3.22",
"desc": "Elastic Search Service"
}
}
34 changes: 34 additions & 0 deletions tests/aws/test_elasticsearch_service.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
from multicloud_diagrams import MultiCloudDiagrams
from utils.templating import TestRendering


class TestAWSVertexInIsolation(TestRendering):

def test_elastic_search(self):
# docs
self.node_type = 'elasticsearch_service'

# given
mcd = MultiCloudDiagrams()

# when
elastic_arn = 'arn:aws:elastic-search:eu-west-1:123456789012:document/test-table'
elastic_name = 'Index for Photos'
metadata = {
"indexes": 12,
"Volume": "45GB",
}
mcd.add_vertex(node_id=elastic_arn, node_name=elastic_name, node_type='elasticsearch_service', metadata=metadata)

# then
expected = {'id': 'vertex:elasticsearch_service:arn:aws:elastic-search:eu-west-1:123456789012:document/test-table',
'parent': '1',
'style': 'outlineConnect=0;dashed=0;verticalLabelPosition=bottom;verticalAlign=top;align=left;html=1;shape=mxgraph.aws3.elasticsearch_service;fillColor=#F58534;gradientColor=none;',
'value': '<b>Name</b>: Index for Photos<BR><b>ARN</b>: '
'arn:aws:elastic-search:eu-west-1:123456789012:document/test-table<BR>-----------<BR><b>indexes</b>: '
'12<BR><b>Volume</b>: 45GB',
'vertex': '1'}
self.verify_resource(expected, mcd.mx_file, 'elasticsearch_service', self.node_type)

# docs
self.mcd = mcd

0 comments on commit e5d9740

Please sign in to comment.