This file contains 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
import pandas as pd | |
from datetime import timedelta | |
import os | |
LOGS_FOLDER = "/home/chitranshu/Downloads/blocky_v0.24_Linux_x86_64/logs" | |
HTML_WRITE_PATH = "/home/chitranshu/Downloads/blocky_v0.24_Linux_x86_64" | |
log_files = [f for f in os.listdir(LOGS_FOLDER) if f.endswith(".log")] | |
all_logs = [] | |
for log_file in log_files: |
This file contains 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
upstreams: | |
groups: | |
default: | |
- https://cloudflare-dns.com/dns-query | |
- https://dns.quad9.net/dns-query | |
init: | |
strategy: failOnError | |
ports: | |
dns: 53 |