# The URL to the Graylog server API. # Default: "http://127.0.0.1:9000/api/" server_url: "http://172.16.8.87:9000/api" # The API token to use to authenticate against the Graylog server API. # Default: none server_api_token: "1irtiu2h0h0u75bchfd4dl85nrrs0ibuo2jdfj60spnakkpe3prj" # The node ID of the sidecar. This can be a path to a file or an ID string. # If set to a file and the file doesn't exist, the sidecar will generate an # unique ID and writes it to the configured path. # # Example file path: "file:C:\\Program Files\\Graylog\\sidecar\\node-id" # Example ID string: "6033137e-d56b-47fc-9762-cd699c11a5a9" # # ATTENTION: Every sidecar instance needs a unique ID! # # Default: "file:C:\\Program Files\\Graylog\\sidecar\\node-id" node_id: "file:C:\\Program Files\\Graylog\\sidecar\\node-id" # The node name of the sidecar. If this is empty, the sidecar will use the # hostname of the host it is running on. # Default: "" node_name: "VOPvoice" # The update interval in secods. This configures how often the sidecar will # contact the Graylog server for keep-alive and configuration update requests. # Default: 10 update_interval: 10 # This configures if the sidecar should skip the verification of TLS connections. # Default: false tls_skip_verify: false # This enables/disables the transmission of detailed sidecar information like # collector statues, metrics and log file lists. It can be disabled to reduce # load on the Graylog server if needed. (disables some features in the server UI) # Default: true send_status: true # A list of directories to scan for log files. The sidecar will scan each # directory for log files and submits them to the server on each update. # # Example: # list_log_files: # - "/var/log/nginx" # - "/opt/app/logs" # # Default: empty list #list_log_files: [] # Directory where the sidecar stores internal data. #cache_path: "C:\\Program Files\\Graylog\\sidecar\\cache" # Directory where the sidecar stores logs for collectors and the sidecar itself. #log_path: "C:\\Program Files\\Graylog\\sidecar\\logs" # The maximum size of the log file before it gets rotated. #log_rotate_max_file_size: "10MiB" # The maximum number of old log files to retain. #log_rotate_keep_files: 10 # Directory where the sidecar generates configurations for collectors. #collector_configuration_directory: "C:\\Program Files\\Graylog\\sidecar\\generated" # A list of binaries which are allowed to be executed by the Sidecar. An empty list disables the whitelist feature. # Wildcards can be used, for a full pattern description see https://golang.org/pkg/path/filepath/#Match # Example: # collector_binaries_whitelist: # "C:\\Program Files\\Graylog\\sidecar\\winlogbeat.exe" # "C:\\Program Files\\Filebeat\\filebeat.exe" # "C:\\Program Files\\nxlog\\nxlog.exe" # Example disable whitelisting: # collector_binaries_whitelist: "c:\\Program Files\\nxlog\\nxlog.exe" # #Default: Collector_binaries_whitelist: [ 'c:\\Program Files\\nxlog\\nxlog.exe' ] # - "C:\\Program Files\\Graylog\\sidecar\\filebeat.exe" # - "C:\\Program Files\\Graylog\\sidecar\\winlogbeat.exe" # - "C:\\Program Files\\Filebeat\\filebeat.exe" # - "C:\\Program Files\\Packetbeat\\packetbeat.exe" # - "C:\\Program Files\\Metricbeat\\metricbeat.exe" # - "C:\\Program Files\\Heartbeat\\heartbeat.exe" # - "C:\\Program Files\\Auditbeat\\auditbeat.exe" # - "C:\\Program Files\\nxlog\\nxlog.exe"