Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/zeropsio/recipe-elastic-stack
- Owner: zeropsio
- License: mit
- Created: 2024-12-02T14:08:00.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-03T16:40:09.000Z (about 1 month ago)
- Last Synced: 2024-12-03T17:47:11.262Z (about 1 month ago)
- Topics: apm, elasticsearch, elk, kibana, logstash
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```