Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zeropsio/recipe-elastic-stack

Zerops x Elastic Stack
https://github.com/zeropsio/recipe-elastic-stack

apm elasticsearch elk kibana logstash

Last synced: about 1 month ago
JSON representation

Zerops x Elastic Stack

Awesome Lists containing this project

README

        

# Zerops x Elastic Stack

Elastic is a distributed search and analytics engine at the core of the Elastic Stack, designed for storing, searching, and analyzing large volumes of structured and unstructured data in near real-time.

![elastic](https://github.com/zeropsio/recipe-shared-assets/blob/main/covers/svg/cover-elastic.svg)


## Elastic ELK

[ELK (Elastic Stack)](https://www.elastic.co/elastic-stack/) is a powerful open-source suite for centralized logging, monitoring, and analytics, consisting of Elasticsearch for indexing and searching, Logstash for data processing, and Kibana for visualizing the data.

Paste the following yml to Zerops GUI:
```yaml
project:
name: recipe-elastic-elk
tags:
- zerops-recipe
services:
- hostname: elasticsearch
type: [email protected]
mode: NON_HA
priority: 10

- hostname: kibana
type: [email protected]
buildFromGit: https://github.com/zeropsio/recipe-elastic-stack
enableSubdomainAccess: true
verticalAutoscaling:
minRam: 1
minContainers: 1
maxContainers: 1

- hostname: logstash
type: [email protected]
buildFromGit: https://github.com/zeropsio/recipe-elastic-stack
verticalAutoscaling:
minRam: 1
minContainers: 1
maxContainers: 1
```

To collect all Zerops logs with Logstash, set the following custom log forwarding (through GUI):
```
destination d_logstash {
udp("logstash" port(1514));
};

log {
source(s_src); destination(d_logstash);
};
```


## Elastic APM

[Elastic APM](https://www.elastic.co/what-is/application-performance-monitoring) is a performance monitoring tool that hooks into your app to track latency, errors, and transactions across your stack, giving you real-time insights for debugging and optimizing code.

Paste the following yml to Zerops GUI:
```yaml
project:
name: recipe-elastic-apm
tags:
- zerops-recipe
services:
- hostname: elasticsearch
type: [email protected]
mode: NON_HA
priority: 10

- hostname: kibana
type: [email protected]
buildFromGit: https://github.com/zeropsio/recipe-elastic-stack
enableSubdomainAccess: true
verticalAutoscaling:
minRam: 1
minContainers: 1
maxContainers: 1

- hostname: apmserver
type: [email protected]
buildFromGit: https://github.com/zeropsio/recipe-elastic-stack
minContainers: 1
maxContainers: 1
```