This file contains hidden or 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
PUT _ingest/pipeline/laravel | |
{ | |
"description": "Parses Laravel log files.", | |
"processors": [ | |
{ | |
"rename": { | |
"field": "message", | |
"target_field": "event.original" | |
} | |
}, |
This file contains hidden or 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
FROM node:12-alpine as build | |
# create app Directory | |
RUN mkdir /app | |
WORKDIR /app | |
ENV NUXT_TELEMETRY_DISABLED 1 | |
ENV NODE_OPTIONS "--max_old_space_size=4096" | |
COPY . /app |
This file contains hidden or 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
#!/bin/sh | |
# install tools | |
apt update -y && apt install nano wget curl libguestfs-tools -y | |
# remove old image | |
rm -rfv current/noble-server-cloudimg-amd64.img | |
# remove old template container - WILL DESTROY COMPLETELY | |
qm destroy 9000 --destroy-unreferenced-disks 1 --purge 1 | |
# download new image | |
wget https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-amd64.img | |
# add agent to image |
OlderNewer